mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-12 10:25:51 +00:00
198 lines
5.7 KiB
Svelte
198 lines
5.7 KiB
Svelte
<!--
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
|
//
|
|
// 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 { generateId, Ref } from '@hcengineering/core'
|
|
import presentation, { createQuery, getClient, KeyedAttribute } from '@hcengineering/presentation'
|
|
import tags, { TagElement, TagReference } from '@hcengineering/tags'
|
|
import { StyledTextArea } from '@hcengineering/text-editor'
|
|
import { IssuePriority, IssueTemplateChild, Component as ComponentType, Milestone } from '@hcengineering/tracker'
|
|
import { Button, Component, EditBox } from '@hcengineering/ui'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import tracker from '../../plugin'
|
|
import AssigneeEditor from '../issues/AssigneeEditor.svelte'
|
|
import PriorityEditor from '../issues/PriorityEditor.svelte'
|
|
import EstimationEditor from './EstimationEditor.svelte'
|
|
|
|
export let milestone: Ref<Milestone> | null = null
|
|
export let component: Ref<ComponentType> | null = null
|
|
export let childIssue: IssueTemplateChild | undefined = undefined
|
|
export let showBorder = false
|
|
export let isScrollable: boolean = false
|
|
export let maxHeight: 'max' | 'card' | 'limited' | string | undefined = undefined
|
|
|
|
const dispatch = createEventDispatcher()
|
|
const client = getClient()
|
|
|
|
let newIssue: IssueTemplateChild = childIssue !== undefined ? { ...childIssue } : getIssueDefaults()
|
|
let thisRef: HTMLDivElement
|
|
let focusIssueTitle: () => void
|
|
let labels: TagElement[] = []
|
|
|
|
const labelsQuery = createQuery()
|
|
|
|
$: labelsQuery.query(tags.class.TagElement, { _id: { $in: childIssue?.labels ?? [] } }, (res) => {
|
|
labels = res
|
|
})
|
|
|
|
const key: KeyedAttribute = {
|
|
key: 'labels',
|
|
attr: client.getHierarchy().getAttribute(tracker.class.IssueTemplate, 'labels')
|
|
}
|
|
|
|
function getIssueDefaults (): IssueTemplateChild {
|
|
return {
|
|
id: generateId(),
|
|
title: '',
|
|
description: '',
|
|
assignee: null,
|
|
component: null,
|
|
priority: IssuePriority.NoPriority,
|
|
milestone,
|
|
estimation: 0
|
|
}
|
|
}
|
|
|
|
function resetToDefaults () {
|
|
newIssue = getIssueDefaults()
|
|
focusIssueTitle?.()
|
|
}
|
|
|
|
function getTitle (value: string) {
|
|
return value.trim()
|
|
}
|
|
|
|
function close () {
|
|
dispatch('close')
|
|
}
|
|
|
|
async function createIssue () {
|
|
if (!canSave) {
|
|
return
|
|
}
|
|
|
|
const value: IssueTemplateChild = {
|
|
...newIssue,
|
|
title: getTitle(newIssue.title),
|
|
component: component ?? null,
|
|
labels: labels.map((it) => it._id)
|
|
}
|
|
if (childIssue === undefined) {
|
|
dispatch('create', value)
|
|
} else {
|
|
dispatch('close', value)
|
|
}
|
|
|
|
resetToDefaults()
|
|
}
|
|
|
|
function addTagRef (tag: TagElement): void {
|
|
labels = [...labels, tag]
|
|
}
|
|
|
|
$: thisRef && thisRef.scrollIntoView({ behavior: 'smooth' })
|
|
$: canSave = getTitle(newIssue.title ?? '').length > 0
|
|
|
|
$: labelRefs = labels.map((it) => ({ ...(it as unknown as TagReference), _id: generateId(), tag: it._id }))
|
|
</script>
|
|
|
|
<div bind:this={thisRef} class="flex-col antiEmphasized clear-mins" class:antiPopup={showBorder}>
|
|
<div class="flex-col w-full clear-mins">
|
|
<EditBox
|
|
bind:value={newIssue.title}
|
|
bind:focusInput={focusIssueTitle}
|
|
kind={'large-style'}
|
|
placeholder={tracker.string.SubIssueTitlePlaceholder}
|
|
autoFocus
|
|
/>
|
|
<div class="mt-4 clear-mins">
|
|
{#key newIssue.description}
|
|
<StyledTextArea
|
|
bind:content={newIssue.description}
|
|
placeholder={tracker.string.SubIssueDescriptionPlaceholder}
|
|
showButtons={false}
|
|
{isScrollable}
|
|
{maxHeight}
|
|
on:changeContent
|
|
/>
|
|
{/key}
|
|
</div>
|
|
</div>
|
|
<div class="mt-4 flex-between items-end">
|
|
<div class="inline-flex flex-wrap xsmall-gap">
|
|
<PriorityEditor
|
|
value={newIssue}
|
|
shouldShowLabel
|
|
isEditable
|
|
kind="no-border"
|
|
size="small"
|
|
justify="center"
|
|
on:change={({ detail }) => (newIssue.priority = detail)}
|
|
/>
|
|
{#key newIssue.assignee}
|
|
<AssigneeEditor
|
|
value={newIssue}
|
|
size="small"
|
|
kind="no-border"
|
|
width="auto"
|
|
on:change={({ detail }) => (newIssue.assignee = detail)}
|
|
/>
|
|
{/key}
|
|
<EstimationEditor
|
|
kind={'no-border'}
|
|
size={'small'}
|
|
bind:value={newIssue}
|
|
on:change={(evt) => {
|
|
newIssue.estimation = evt.detail
|
|
}}
|
|
/>
|
|
<Component
|
|
is={tags.component.TagsDropdownEditor}
|
|
props={{
|
|
items: labelRefs,
|
|
key,
|
|
targetClass: tracker.class.Issue,
|
|
countLabel: tracker.string.NumberLabels
|
|
}}
|
|
on:open={(evt) => {
|
|
addTagRef(evt.detail)
|
|
}}
|
|
on:delete={(evt) => {
|
|
labels = labels.filter((it) => it._id !== evt.detail)
|
|
}}
|
|
/>
|
|
</div>
|
|
<div class="ml-2 buttons-group small-gap">
|
|
<Button label={presentation.string.Cancel} size="small" kind="transparent" on:click={close} />
|
|
<Button
|
|
disabled={!canSave}
|
|
label={presentation.string.Save}
|
|
size="small"
|
|
kind="no-border"
|
|
on:click={createIssue}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.xsmall-gap {
|
|
gap: 0.375rem;
|
|
}
|
|
|
|
.items-end {
|
|
align-items: flex-end;
|
|
}
|
|
</style>
|