// // 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 '@hcengineering/contact' import type { Attribute, Class, Doc, Markup, Ref, Status, Timestamp, Type } from '@hcengineering/core' import type { Asset, IntlString, Plugin } from '@hcengineering/platform' import { plugin } from '@hcengineering/platform' import type { Preference } from '@hcengineering/preference' import { TagCategory } from '@hcengineering/tags' import type { Project, ProjectTypeCategory, Task } from '@hcengineering/task' import type { AnyComponent } from '@hcengineering/ui' import { Action, ActionCategory } from '@hcengineering/view' /** * @public */ export interface Board extends Project { color?: number background?: string } /** * @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 startDate: Timestamp | null } /** * @public */ export interface MenuPage extends Doc { component: AnyComponent pageId: string label: IntlString } /** * @public */ export interface CommonBoardPreference extends Preference {} /** * @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, BoardType: '' as Ref }, attribute: { State: '' 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 }, string: { ConfigLabel: '' as IntlString }, icon: { Board: '' as Asset, Card: '' as Asset }, menuPageId: { Main: 'main', Archive: 'archive' } }) /** * @public */ export default boards