platform/plugins/task-resources/src/components/todos/EditTodo.svelte
Andrey Sobolev 56380c4958
Todos Support (#681)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2021-12-20 11:18:29 +01:00

92 lines
2.4 KiB
Svelte

<!--
// Copyright © 2020 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.
-->
<script lang="ts">
import type { DocumentUpdate, Ref, Timestamp } from '@anticrm/core'
import { IntlString } from '@anticrm/platform'
import { Card, getClient } from '@anticrm/presentation'
import type { TodoItem } from '@anticrm/task'
import { DatePicker, EditBox, Grid } from '@anticrm/ui'
import { createEventDispatcher } from 'svelte'
import task from '../../plugin'
export let item: TodoItem
let name: string = ''
let dueTo: Date | undefined
let _itemId: Ref<TodoItem>
$: if (_itemId !== item._id) {
_itemId = item._id
name = item.name
dueTo = new Date(item.dueTo ?? 0)
console.log('AHTUNG', item, dueTo)
}
const dispatch = createEventDispatcher()
const client = getClient()
export function canClose (): boolean {
return true
}
async function editTodo () {
const ops: DocumentUpdate<TodoItem> = {}
if (item.name !== name) {
ops.name = name
}
if (item.dueTo !== dueTo) {
ops.dueTo = (dueTo?.getTime() ?? null) as unknown as Timestamp
}
console.log('AHTUNG', ops)
if (Object.keys(ops).length === 0) {
return
}
await client.updateCollection(
item._class,
item.space,
item._id,
item.attachedTo,
item.attachedToClass,
item.collection,
ops
)
}
</script>
<Card
label={task.string.TodoEdit}
okAction={editTodo}
canSave={name.length > 0}
space={item.space}
on:close={() => {
dispatch('close')
}}
okLabel={task.string.TodoSave}>
<Grid column={1} rowGap={1.75}>
<EditBox
label={task.string.TodoDescription}
bind:value={name}
icon={task.icon.Task}
placeholder="todo..."
maxWidth="39rem"
focus
/>
<DatePicker title={task.string.TodoDueDate} bind:selected={dueTo} />
</Grid>
</Card>