55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import {Block} from './block';
|
|
|
|
type PropertyType = 'text' | 'number' | 'select' | 'multiSelect' | 'date' | 'person' | 'file' | 'checkbox' | 'url' | 'email' | 'phone' | 'createdTime' | 'createdBy' | 'updatedTime' | 'updatedBy'
|
|
|
|
interface IPropertyOption {
|
|
value: string,
|
|
color: string
|
|
}
|
|
|
|
// A template for card properties attached to a board
|
|
interface IPropertyTemplate {
|
|
id: string
|
|
name: string
|
|
type: PropertyType
|
|
options: IPropertyOption[]
|
|
}
|
|
|
|
class Board extends Block {
|
|
get icon(): string {
|
|
return this.fields.icon as string
|
|
}
|
|
set icon(value: string) {
|
|
this.fields.icon = value
|
|
}
|
|
|
|
get cardProperties(): IPropertyTemplate[] {
|
|
return this.fields.cardProperties as IPropertyTemplate[]
|
|
}
|
|
set cardProperties(value: IPropertyTemplate[]) {
|
|
this.fields.cardProperties = value
|
|
}
|
|
|
|
constructor(block: any = {}) {
|
|
super(block)
|
|
this.type = 'board';
|
|
|
|
if (block.fields?.cardProperties) {
|
|
// Deep clone of card properties and their options
|
|
this.cardProperties = block.fields.cardProperties.map((o: IPropertyTemplate) => {
|
|
return {
|
|
id: o.id,
|
|
name: o.name,
|
|
type: o.type,
|
|
options: o.options ? o.options.map((option) => ({...option})) : [],
|
|
}
|
|
});
|
|
} else {
|
|
this.cardProperties = []
|
|
}
|
|
}
|
|
}
|
|
|
|
export {Board, PropertyType, IPropertyOption, IPropertyTemplate}
|