// // Copyright © 2020, 2021 Anticrm Platform Contributors. // Copyright © 2021 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 { Employee } from '@anticrm/contact' import type { Class, Doc, Markup, Ref, Type } from '@anticrm/core' import type { Asset, IntlString, Plugin } from '@anticrm/platform' import { plugin } from '@anticrm/platform' import type { Preference } from '@anticrm/preference' import type { DoneState, KanbanTemplateSpace, SpaceWithStates, Task } from '@anticrm/task' import type { AnyComponent } from '@anticrm/ui' import { Action, ActionCategory } from '@anticrm/view' import { TagCategory } from '@anticrm/tags' /** * @public */ export interface Board extends SpaceWithStates { color?: number background?: string } /** * @public */ export interface BoardView extends SpaceWithStates { title: string type: 'table' | 'calendar' boards: Ref[] } /** * @public */ export interface CardCover { color: number size: 'large' | 'small' } /** * @public */ export interface Card extends Task { title: string description: Markup isArchived?: boolean members?: Ref[] location?: string cover?: CardCover | null comments?: number attachments?: number } /** * @public */ export interface MenuPage extends Doc { component: AnyComponent pageId: string label: IntlString } /** * @public */ export interface CommonBoardPreference extends Preference { cardLabelsCompactMode: boolean } /** * @public */ export const boardId = 'board' as Plugin /** * @public */ const boards = plugin(boardId, { app: { Board: '' as Ref }, class: { Board: '' as Ref>, Card: '' as Ref>, MenuPage: '' as Ref>, CommonBoardPreference: '' as Ref>, CardCover: '' as Ref>> }, category: { Card: '' as Ref, Other: '' as Ref }, state: { Completed: '' as Ref }, action: { Open: '' as Ref, Cover: '' as Ref, Dates: '' as Ref, Labels: '' as Ref, Move: '' as Ref, Copy: '' as Ref, Archive: '' as Ref, SendToBoard: '' as Ref, Delete: '' as Ref }, icon: { Board: '' as Asset, Card: '' as Asset }, space: { BoardTemplates: '' as Ref }, menuPageId: { Main: 'main', Archive: 'archive' } }) /** * @public */ export default boards