platform/plugins/notification/src/index.ts
Denis Bykhov 5696f216ca
HR requests notifications (#2710)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-03-06 00:36:12 +07:00

192 lines
4.4 KiB
TypeScript

//
// Copyright © 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 type { Account, AttachedDoc, Class, Doc, Mixin, Ref, Space, Timestamp, TxCUD } from '@hcengineering/core'
import type { Asset, IntlString, Plugin, Resource } from '@hcengineering/platform'
import { plugin } from '@hcengineering/platform'
import { AnyComponent } from '@hcengineering/ui'
import { Writable } from './types'
import { IntegrationType } from '@hcengineering/setting'
export * from './types'
/**
* @public
*/
export interface LastView extends AttachedDoc {
lastView: Timestamp
user: Ref<Account>
}
/**
* @public
*/
export interface NotificationAction {
component: AnyComponent
objectId: Ref<Doc>
objectClass: Ref<Class<Doc>>
}
/**
* @public
*/
export interface Notification extends AttachedDoc {
tx: Ref<TxCUD<Doc>>
status: NotificationStatus
text: string
type: Ref<NotificationType>
// Defined to open particular item if required.
action?: NotificationAction
}
/**
* @public
*/
export interface EmailNotification extends Doc {
sender: string
receivers: string[]
subject: string
text: string
html?: string
status: 'new' | 'sent'
}
/**
* @public
*/
export enum NotificationStatus {
New,
Notified,
Read
}
/**
* @public
*/
export interface NotificationType extends Doc {
hidden: boolean
label: IntlString
textTemplate: string
htmlTemplate: string
subjectTemplate: string
}
/**
* @public
*/
export interface NotificationProvider extends Doc {
label: IntlString
default: boolean
}
/**
* @public
*/
export interface NotificationSetting extends Doc {
type: Ref<NotificationType>
provider: Ref<NotificationProvider>
enabled: boolean
}
/**
* @public
*/
export interface SpaceLastEdit extends Class<Doc> {
lastEditField: string
}
/**
* @public
*/
export interface LastViewAttached extends Class<AttachedDoc> {}
/**
* @public
*/
export interface AnotherUserNotifications extends Class<Doc> {
fields: string[]
}
/**
* @public
*/
export const notificationId = 'notification' as Plugin
/**
* @public
*/
export interface NotificationClient {
getLastViews: () => Writable<Map<Ref<Doc>, Timestamp>>
updateLastView: (_id: Ref<Doc>, _class: Ref<Class<Doc>>, time?: Timestamp, force?: boolean) => Promise<void>
unsubscribe: (_id: Ref<Doc>) => Promise<void>
}
/**
* @public
*/
export type NotificationClientFactoy = () => NotificationClient
/**
* @public
*/
const notification = plugin(notificationId, {
mixin: {
SpaceLastEdit: '' as Ref<Mixin<SpaceLastEdit>>,
AnotherUserNotifications: '' as Ref<Mixin<AnotherUserNotifications>>,
LastViewAttached: '' as Ref<Mixin<LastViewAttached>>
},
class: {
LastView: '' as Ref<Class<LastView>>,
Notification: '' as Ref<Class<Notification>>,
EmailNotification: '' as Ref<Class<EmailNotification>>,
NotificationType: '' as Ref<Class<NotificationType>>,
NotificationProvider: '' as Ref<Class<NotificationProvider>>,
NotificationSetting: '' as Ref<Class<NotificationSetting>>
},
ids: {
MentionNotification: '' as Ref<NotificationType>,
DMNotification: '' as Ref<NotificationType>,
PlatformNotification: '' as Ref<NotificationProvider>,
BrowserNotification: '' as Ref<NotificationProvider>,
EmailNotification: '' as Ref<NotificationProvider>,
NotificationSettings: '' as Ref<Doc>
},
integrationType: {
MobileApp: '' as Ref<IntegrationType>
},
component: {
NotificationsPopup: '' as AnyComponent,
NotificationPresenter: '' as AnyComponent,
LastViewEditor: '' as AnyComponent
},
icon: {
Notifications: '' as Asset,
Track: '' as Asset,
DontTrack: '' as Asset
},
space: {
Notifications: '' as Ref<Space>
},
string: {
Notification: '' as IntlString,
Notifications: '' as IntlString
},
function: {
GetNotificationClient: '' as Resource<NotificationClientFactoy>
}
})
export default notification