platform/plugins/chunter/src/index.ts
Andrey Sobolev 5b6ef778f3
Migrate to hcengineering and publish to github packages (#2273)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2022-09-21 14:08:25 +06:00

167 lines
4.1 KiB
TypeScript

//
// 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 { Account, AttachedDoc, Class, Doc, Ref, RelatedDocument, Space, Timestamp } from '@hcengineering/core'
import type { Employee } from '@hcengineering/contact'
import type { Asset, Plugin, Resource } from '@hcengineering/platform'
import { IntlString, plugin } from '@hcengineering/platform'
import type { Preference } from '@hcengineering/preference'
import { AnyComponent } from '@hcengineering/ui'
/**
* @public
*/
export interface ChunterSpace extends Space {
lastMessage?: Timestamp
pinned?: Ref<ChunterMessage>[]
}
/**
* @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<Account>
createOn: Timestamp
editedOn?: Timestamp
reactions?: number
}
/**
* @public
*/
export interface ThreadMessage extends ChunterMessage {
attachedTo: Ref<Message>
attachedToClass: Ref<Class<Message>>
}
/**
* @public
*/
export interface Message extends ChunterMessage {
attachedTo: Ref<Space>
attachedToClass: Ref<Class<Space>>
replies?: Ref<Employee>[]
lastReply?: Timestamp
}
/**
* @public
*/
export interface Reaction extends AttachedDoc {
emoji: string
createBy: Ref<Account>
attachedTo: Ref<ChunterMessage>
attachedToClass: Ref<Class<ChunterMessage>>
}
/**
* @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<Doc>
// Source document class
backlinkClass: Ref<Class<Doc>>
// Reference to comment documentId
attachedDocId?: Ref<Doc>
}
/**
* @public
*/
export interface SavedMessages extends Preference {
attachedTo: Ref<ChunterMessage>
}
/**
* @public
*/
export const chunterId = 'chunter' as Plugin
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,
CommentsPresenter: '' as AnyComponent
},
class: {
Message: '' as Ref<Class<Message>>,
ChunterMessage: '' as Ref<Class<ChunterMessage>>,
ThreadMessage: '' as Ref<Class<ThreadMessage>>,
Backlink: '' as Ref<Class<Backlink>>,
Comment: '' as Ref<Class<Comment>>,
ChunterSpace: '' as Ref<Class<ChunterSpace>>,
Channel: '' as Ref<Class<Channel>>,
SavedMessages: '' as Ref<Class<SavedMessages>>,
DirectMessage: '' as Ref<Class<DirectMessage>>,
Reaction: '' as Ref<Class<Reaction>>
},
space: {
Backlinks: '' as Ref<Space>
},
string: {
EditUpdate: '' as IntlString,
EditCancel: '' as IntlString,
Comments: '' as IntlString,
Settings: '' as IntlString,
ArchiveChannel: '' as IntlString,
UnarchiveChannel: '' as IntlString,
ArchiveConfirm: '' as IntlString,
UnarchiveConfirm: '' as IntlString,
ConvertToPrivate: '' as IntlString
},
app: {
Chunter: '' as Ref<Doc>
},
backreference: {
// Update list of back references
Update: '' as Resource<(source: Doc, key: string, target: RelatedDocument[], label: IntlString) => void>
}
})