// // Copyright © 2020, 2021 Anticrm Platform Contributors. // // 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 { Person } from '@hcengineering/contact' import type { Account, AttachedDoc, Class, Doc, Mixin, Ref, RelatedDocument, Space, Timestamp } from '@hcengineering/core' import { NotificationType } from '@hcengineering/notification' import type { Asset, Plugin, Resource } from '@hcengineering/platform' import { IntlString, plugin } from '@hcengineering/platform' import type { Preference } from '@hcengineering/preference' import { AnyComponent, ResolvedLocation } from '@hcengineering/ui' /** * @public */ export interface ChunterSpace extends Space { lastMessage?: Timestamp pinned?: Ref[] } /** * @public */ export interface Channel extends ChunterSpace { topic?: string } /** * @public */ export interface DirectMessage extends ChunterSpace {} /** * @public */ export interface ChunterMessage extends AttachedDoc { content: string attachments?: number createBy: Ref editedOn?: Timestamp reactions?: number } /** * @public */ export interface ChunterMessageExtension extends ChunterMessage {} /** * @public */ export interface ThreadMessage extends ChunterMessage { attachedTo: Ref attachedToClass: Ref> } /** * @public */ export interface Message extends ChunterMessage { attachedTo: Ref attachedToClass: Ref> replies?: Ref[] repliesCount?: number lastReply?: Timestamp } /** * @public */ export interface Reaction extends AttachedDoc { emoji: string createBy: Ref attachedTo: Ref attachedToClass: Ref> } /** * @public */ export interface Comment extends AttachedDoc { message: string attachments?: number } /** * @public */ export interface Backlink extends Comment { // A target document // attachedTo <- target document we point to // A target document class // attachedToClass // Source document we have reference from, it should be parent document for Comment/Message. backlinkId: Ref // Source document class backlinkClass: Ref> // Reference to comment documentId attachedDocId?: Ref } /** * @public */ export interface SavedMessages extends Preference { attachedTo: Ref } /** * @public */ export interface DirectMessageInput extends Class { component: AnyComponent } /** * @public */ export const chunterId = 'chunter' as Plugin export * from './utils' export default plugin(chunterId, { icon: { Chunter: '' as Asset, Hashtag: '' as Asset, Thread: '' as Asset, Lock: '' as Asset, Bookmark: '' as Asset, ChannelBrowser: '' as Asset }, component: { CommentInput: '' as AnyComponent, DmHeader: '' as AnyComponent, ChannelView: '' as AnyComponent, ThreadView: '' as AnyComponent, Thread: '' as AnyComponent, CommentsPresenter: '' as AnyComponent }, class: { Message: '' as Ref>, ChunterMessage: '' as Ref>, ThreadMessage: '' as Ref>, Backlink: '' as Ref>, Comment: '' as Ref>, ChunterSpace: '' as Ref>, Channel: '' as Ref>, SavedMessages: '' as Ref>, DirectMessage: '' as Ref>, Reaction: '' as Ref> }, mixin: { DirectMessageInput: '' as Ref>, ChunterMessageExtension: '' as Ref> }, space: { Backlinks: '' as Ref }, string: { EditUpdate: '' as IntlString, EditCancel: '' as IntlString, Comments: '' as IntlString, Settings: '' as IntlString, ArchiveChannel: '' as IntlString, UnarchiveChannel: '' as IntlString, ArchiveConfirm: '' as IntlString, Message: '' as IntlString, MessageOn: '' as IntlString, UnarchiveConfirm: '' as IntlString, ConvertToPrivate: '' as IntlString, DirectNotificationTitle: '' as IntlString, DirectNotificationBody: '' as IntlString, AddCommentPlaceholder: '' as IntlString }, resolver: { Location: '' as Resource<(loc: Location) => Promise> }, ids: { DMNotification: '' as Ref, MentionNotification: '' as Ref, ThreadNotification: '' as Ref, ChannelNotification: '' as Ref }, app: { Chunter: '' as Ref }, backreference: { // Update list of back references Update: '' as Resource<(source: Doc, key: string, target: RelatedDocument[], label: IntlString) => Promise> } })