// // 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 { Class, Doc, Markup, Ref, Space } from '@hcengineering/core' import type { IntlString, Plugin, Resource } from '@hcengineering/platform' import { Asset, plugin } from '@hcengineering/platform' import { AnyComponent } from '@hcengineering/ui' /** * @public */ export interface TemplateCategory extends Space {} /** * @public */ export interface MessageTemplate extends Doc { space: Ref title: string message: Markup } /** * @public */ export interface TemplateData { owner: string data: any } /** * @public */ export interface TemplateDataProvider { set: (key: Ref>, value: any) => void get: (key: Ref>) => any | undefined fillTemplate: (message: string) => Promise destroy: () => void } /** * @public */ export interface TemplateFieldCategory extends Doc { label: IntlString } /** * @public */ export declare type TemplateFieldFunc = (provider: TemplateDataProvider) => Promise /** * @public */ export interface TemplateField extends Doc { category: Ref label: IntlString func: Resource } export const templateFieldRegexp = /\$\{(\S+?)}/gi /** * @public */ export const templatesId = 'templates' as Plugin export default plugin(templatesId, { class: { MessageTemplate: '' as Ref>, TemplateCategory: '' as Ref>, TemplateField: '' as Ref>, TemplateFieldCategory: '' as Ref> }, component: { TemplatePopup: '' as AnyComponent }, string: { Template: '' as IntlString }, space: { Templates: '' as Ref }, icon: { Templates: '' as Asset, Template: '' as Asset, Copy: '' as Asset }, function: { GetTemplateDataProvider: '' as Resource<() => TemplateDataProvider> } })