mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-10 10:17:23 +00:00
60 lines
1.9 KiB
Svelte
60 lines
1.9 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 { createEventDispatcher } from 'svelte'
|
|
import type { Ref, Space } from '@anticrm/core'
|
|
import { DatePicker, EditBox, Dialog, Tabs, Section, Grid, Row, TextArea, IconFile } from '@anticrm/ui'
|
|
import { UserBox } from '@anticrm/presentation'
|
|
import { ReferenceInput } from '@anticrm/text-editor'
|
|
import type { Person } from '@anticrm/contact'
|
|
|
|
import { getClient } from '@anticrm/presentation'
|
|
|
|
import contact from '@anticrm/contact'
|
|
import task from '../plugin'
|
|
|
|
export let space: Ref<Space>
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let title: string
|
|
let assignee: Ref<Person>
|
|
|
|
const client = getClient()
|
|
|
|
function createCandidate() {
|
|
client.createDoc(task.class.Task, space, {
|
|
title,
|
|
assignee,
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<Dialog label={'Create Task'}
|
|
okLabel={'Create Task'}
|
|
okAction={createCandidate}
|
|
on:close={() => { dispatch('close') }}>
|
|
<Tabs/>
|
|
<Section icon={IconFile} label={'General Information'}>
|
|
<Grid>
|
|
<Row><EditBox label={'Title *'} placeholder={'The Secret Project'} bind:value={title} focus /></Row>
|
|
<UserBox _class={contact.class.Person} title='Assignee' caption='Employees' bind:value={assignee} />
|
|
<DatePicker title={'Pick due date'} />
|
|
<Row><ReferenceInput /></Row>
|
|
</Grid>
|
|
</Section>
|
|
</Dialog>
|