mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-08 17:18:48 +00:00
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
//
|
|
// Copyright © 2022, 2023 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import { type Builder } from '@hcengineering/model'
|
|
|
|
import core, { type Class, type Doc } from '@hcengineering/core'
|
|
import chunter from '@hcengineering/chunter'
|
|
import serverNotification from '@hcengineering/server-notification'
|
|
import serverCore, { type ObjectDDParticipant } from '@hcengineering/server-core'
|
|
import serverChunter from '@hcengineering/server-chunter'
|
|
import notification from '@hcengineering/notification'
|
|
export { serverChunterId } from '@hcengineering/server-chunter'
|
|
|
|
export function createModel (builder: Builder): void {
|
|
builder.mixin(chunter.class.Channel, core.class.Class, serverNotification.mixin.HTMLPresenter, {
|
|
presenter: serverChunter.function.ChannelHTMLPresenter
|
|
})
|
|
|
|
builder.mixin(chunter.class.Channel, core.class.Class, serverNotification.mixin.TextPresenter, {
|
|
presenter: serverChunter.function.ChannelTextPresenter
|
|
})
|
|
|
|
builder.mixin<Class<Doc>, ObjectDDParticipant>(
|
|
chunter.class.Comment,
|
|
core.class.Class,
|
|
serverCore.mixin.ObjectDDParticipant,
|
|
{
|
|
collectDocs: serverChunter.function.CommentRemove
|
|
}
|
|
)
|
|
|
|
builder.mixin(chunter.class.DirectMessage, core.class.Class, serverNotification.mixin.NotificationPresenter, {
|
|
presenter: serverChunter.function.ChunterNotificationContentProvider
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverChunter.trigger.BacklinkTrigger
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverChunter.trigger.ChunterTrigger
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverChunter.trigger.OnMessageSent,
|
|
txMatch: {
|
|
objectClass: chunter.class.DirectMessage,
|
|
_class: core.class.TxCollectionCUD,
|
|
collection: 'messages'
|
|
}
|
|
})
|
|
|
|
builder.mixin(
|
|
chunter.ids.MentionNotification,
|
|
notification.class.NotificationType,
|
|
serverNotification.mixin.TypeMatch,
|
|
{
|
|
func: serverChunter.function.IsMeMentioned
|
|
}
|
|
)
|
|
|
|
builder.mixin(chunter.ids.DMNotification, notification.class.NotificationType, serverNotification.mixin.TypeMatch, {
|
|
func: serverChunter.function.IsDirectMessage
|
|
})
|
|
|
|
builder.mixin(
|
|
chunter.ids.ThreadNotification,
|
|
notification.class.NotificationType,
|
|
serverNotification.mixin.TypeMatch,
|
|
{
|
|
func: serverChunter.function.IsThreadMessage
|
|
}
|
|
)
|
|
|
|
builder.mixin(
|
|
chunter.ids.ChannelNotification,
|
|
notification.class.NotificationType,
|
|
serverNotification.mixin.TypeMatch,
|
|
{
|
|
func: serverChunter.function.IsChannelMessage
|
|
}
|
|
)
|
|
}
|