mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-11 18:01:59 +00:00
157 lines
4.9 KiB
Svelte
157 lines
4.9 KiB
Svelte
<script lang="ts">
|
|
import { Data, Ref } from '@anticrm/core'
|
|
import { getClient, LiveQuery, MessageViewer } from '@anticrm/presentation'
|
|
import { MessageTemplate } from '@anticrm/templates'
|
|
import { StyledTextEditor } from '@anticrm/text-editor'
|
|
import { Button, CircleButton, EditBox, Icon, IconAdd, Label, ScrollBox } from '@anticrm/ui'
|
|
import templatesPlugin from '../plugin'
|
|
import TemplateElement from './TemplateElement.svelte'
|
|
|
|
const client = getClient()
|
|
const query = new LiveQuery()
|
|
let templates: MessageTemplate[] = []
|
|
let selected: Ref<MessageTemplate> | undefined
|
|
let newTemplate: Data<MessageTemplate> | undefined = undefined
|
|
|
|
query.query(templatesPlugin.class.MessageTemplate, {}, (t) => {
|
|
templates = t
|
|
if (templates.findIndex(t => t._id === selected) === -1) {
|
|
selected = undefined
|
|
newTemplate = undefined
|
|
}
|
|
})
|
|
|
|
|
|
const Mode = {
|
|
View: 1,
|
|
Edit: 2,
|
|
Create: 3
|
|
}
|
|
let mode = Mode.View
|
|
|
|
async function addTemplate (): Promise<void> {
|
|
newTemplate = {
|
|
title: '',
|
|
message: ''
|
|
}
|
|
mode = Mode.Create
|
|
}
|
|
async function saveNewTemplate (): Promise<void> {
|
|
if (newTemplate === undefined) {
|
|
return
|
|
}
|
|
if (mode === Mode.Create) {
|
|
if (newTemplate.title.trim().length > 0) {
|
|
const ref = await client.createDoc(templatesPlugin.class.MessageTemplate, templatesPlugin.space.Templates, newTemplate)
|
|
selected = ref
|
|
}
|
|
} else if (selected !== undefined) {
|
|
await client.updateDoc(templatesPlugin.class.MessageTemplate, templatesPlugin.space.Templates, selected, newTemplate)
|
|
}
|
|
mode = Mode.View
|
|
}
|
|
|
|
let textEditor: StyledTextEditor
|
|
|
|
export function submit (): void {
|
|
textEditor.submit()
|
|
}
|
|
</script>
|
|
|
|
<div class="antiComponent">
|
|
<div class="ac-header short divide">
|
|
<div class="ac-header__icon"><Icon icon={templatesPlugin.icon.Templates} size={'medium'} /></div>
|
|
<div class="ac-header__title"><Label label={templatesPlugin.string.Templates} /></div>
|
|
</div>
|
|
|
|
<div class="ac-body columns">
|
|
<div class="ac-column">
|
|
<div class="flex-between trans-title mb-3">
|
|
<Label label={templatesPlugin.string.TemplatesHeader} />
|
|
<CircleButton icon={IconAdd} on:click={addTemplate} />
|
|
</div>
|
|
|
|
<div class="flex-col overflow-y-auto">
|
|
{#each templates as t}
|
|
<TemplateElement
|
|
label={t.title}
|
|
active={newTemplate === undefined && t._id === selected}
|
|
on:click={() => {
|
|
selected = t._id
|
|
newTemplate = { title: t.title, message: t.message }
|
|
mode = Mode.View
|
|
}}
|
|
object={t}
|
|
/>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ac-column max background-bg-accent template-container">
|
|
{#if newTemplate}
|
|
<span class="trans-title mb-3">
|
|
{#if mode === Mode.Create}
|
|
<Label label={templatesPlugin.string.CreateTemplate} />
|
|
{:else if mode === Mode.Edit}
|
|
<Label label={templatesPlugin.string.EditTemplate} />
|
|
{:else}
|
|
<Label label={templatesPlugin.string.ViewTemplate} />
|
|
{/if}
|
|
</span>
|
|
<div class="text-lg caption-color">
|
|
{#if mode !== Mode.View}
|
|
<EditBox bind:value={newTemplate.title} maxWidth={'12rem'} placeholder={templatesPlugin.string.TemplatePlaceholder} />
|
|
{:else}
|
|
{newTemplate.title}
|
|
{/if}
|
|
</div>
|
|
<div class="separator" />
|
|
{#if mode !== Mode.View}
|
|
<StyledTextEditor
|
|
bind:content={newTemplate.message}
|
|
bind:this={textEditor}
|
|
on:value={(evt) => {
|
|
newTemplate = { title: newTemplate?.title ?? '', message: evt.detail }
|
|
}}>
|
|
<div class="flex flex-reverse flex-grow">
|
|
<div class="ml-2">
|
|
<Button disabled={newTemplate.title.trim().length === 0 } primary label={templatesPlugin.string.SaveTemplate} on:click={saveNewTemplate} />
|
|
</div>
|
|
<Button
|
|
label={templatesPlugin.string.Cancel}
|
|
on:click={() => {
|
|
if (mode === Mode.Create) {
|
|
newTemplate = undefined
|
|
}
|
|
mode = Mode.View
|
|
}}
|
|
/>
|
|
</div>
|
|
</StyledTextEditor>
|
|
{:else}
|
|
<div class="text">
|
|
<MessageViewer message={newTemplate.message}/>
|
|
</div>
|
|
<div class="flex flex-reverse">
|
|
<Button primary label={templatesPlugin.string.EditTemplate} on:click={() => { mode = Mode.Edit }} />
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.template-container { padding: 2.25rem 2.5rem 1.75rem; }
|
|
.separator {
|
|
flex-shrink: 0;
|
|
margin: 1.5rem 0;
|
|
height: 1px;
|
|
background-color: var(--theme-menu-divider);
|
|
}
|
|
.text {
|
|
flex-grow: 1;
|
|
line-height: 150%;
|
|
}
|
|
</style>
|