mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-27 10:49:44 +00:00
78 lines
2.7 KiB
TypeScript
78 lines
2.7 KiB
TypeScript
//
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021, 2022 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 { Builder, Mixin } from '@hcengineering/model'
|
|
|
|
import core, { Account, Doc, Ref, Tx } from '@hcengineering/core'
|
|
import { TClass } from '@hcengineering/model-core'
|
|
import { TNotificationType } from '@hcengineering/model-notification'
|
|
import notification, { NotificationType } from '@hcengineering/notification'
|
|
import { Resource } from '@hcengineering/platform'
|
|
import serverCore, { TriggerControl } from '@hcengineering/server-core'
|
|
import serverNotification, {
|
|
HTMLPresenter,
|
|
Presenter,
|
|
TextPresenter,
|
|
TypeMatch
|
|
} from '@hcengineering/server-notification'
|
|
|
|
export { serverNotificationId } from '@hcengineering/server-notification'
|
|
|
|
@Mixin(serverNotification.mixin.HTMLPresenter, core.class.Class)
|
|
export class THTMLPresenter extends TClass implements HTMLPresenter {
|
|
presenter!: Resource<Presenter>
|
|
}
|
|
|
|
@Mixin(serverNotification.mixin.TextPresenter, core.class.Class)
|
|
export class TTextPresenter extends TClass implements TextPresenter {
|
|
presenter!: Resource<Presenter>
|
|
}
|
|
|
|
@Mixin(serverNotification.mixin.TypeMatch, notification.class.NotificationType)
|
|
export class TTypeMatch extends TNotificationType implements TypeMatch {
|
|
func!: Resource<
|
|
(tx: Tx, doc: Doc, user: Ref<Account>, type: NotificationType, control: TriggerControl) => Promise<boolean>
|
|
>
|
|
}
|
|
|
|
export function createModel (builder: Builder): void {
|
|
builder.createModel(THTMLPresenter, TTextPresenter, TTypeMatch)
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverNotification.trigger.OnBacklinkCreate
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverNotification.trigger.CollaboratorDocHandler
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverNotification.trigger.OnAttributeCreate,
|
|
txMatch: {
|
|
objectClass: core.class.Attribute,
|
|
_class: core.class.TxCreateDoc
|
|
}
|
|
})
|
|
|
|
builder.createDoc(serverCore.class.Trigger, core.space.Model, {
|
|
trigger: serverNotification.trigger.OnAttributeUpdate,
|
|
txMatch: {
|
|
objectClass: core.class.Attribute,
|
|
_class: core.class.TxUpdateDoc
|
|
}
|
|
})
|
|
}
|