2022-05-18 04:04:54 +00:00
|
|
|
<!--
|
|
|
|
// 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 { Class, Data, Ref, SortingOrder, WithLookup } from '@anticrm/core'
|
|
|
|
import { AttachmentDocList } from '@anticrm/attachment-resources'
|
|
|
|
import { Panel } from '@anticrm/panel'
|
|
|
|
import presentation, { createQuery, getClient, MessageViewer } from '@anticrm/presentation'
|
|
|
|
import type { Issue, IssueStatus, Team } from '@anticrm/tracker'
|
2022-05-18 15:58:06 +00:00
|
|
|
import {
|
|
|
|
ActionIcon,
|
|
|
|
Button,
|
|
|
|
EditBox,
|
|
|
|
IconDownOutline,
|
|
|
|
IconEdit,
|
|
|
|
IconMoreH,
|
|
|
|
IconUpOutline,
|
|
|
|
Scroller,
|
|
|
|
showPopup
|
|
|
|
} from '@anticrm/ui'
|
|
|
|
import { ContextMenu } from '@anticrm/view-resources'
|
2022-05-18 04:04:54 +00:00
|
|
|
import { StyledTextArea } from '@anticrm/text-editor'
|
|
|
|
import { createEventDispatcher, onMount } from 'svelte'
|
|
|
|
import tracker from '../../../plugin'
|
|
|
|
import ControlPanel from './ControlPanel.svelte'
|
|
|
|
import CopyToClipboard from './CopyToClipboard.svelte'
|
|
|
|
|
|
|
|
export let _id: Ref<Issue>
|
|
|
|
export let _class: Ref<Class<Issue>>
|
|
|
|
|
|
|
|
const query = createQuery()
|
|
|
|
const statusesQuery = createQuery()
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
const client = getClient()
|
|
|
|
|
|
|
|
let issue: Issue | undefined
|
|
|
|
let currentTeam: Team | undefined
|
|
|
|
let issueStatuses: WithLookup<IssueStatus>[] | undefined
|
|
|
|
let title = ''
|
|
|
|
let description = ''
|
|
|
|
let innerWidth: number
|
|
|
|
let isEditing = false
|
|
|
|
|
|
|
|
$: _id &&
|
|
|
|
_class &&
|
|
|
|
query.query(_class, { _id }, async (result) => {
|
|
|
|
;[issue] = result
|
|
|
|
title = issue.title
|
|
|
|
description = issue.description
|
|
|
|
})
|
|
|
|
|
|
|
|
$: if (issue) {
|
|
|
|
client.findOne(tracker.class.Team, { _id: issue.space }).then((r) => (currentTeam = r))
|
|
|
|
}
|
|
|
|
|
|
|
|
$: currentTeam &&
|
|
|
|
statusesQuery.query(
|
|
|
|
tracker.class.IssueStatus,
|
|
|
|
{ attachedTo: currentTeam._id },
|
|
|
|
(statuses) => (issueStatuses = statuses),
|
|
|
|
{
|
|
|
|
lookup: { category: tracker.class.IssueStatusCategory },
|
|
|
|
sort: { rank: SortingOrder.Ascending }
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
$: issueId = currentTeam && issue && `${currentTeam.identifier}-${issue.number}`
|
|
|
|
$: canSave = title.trim().length > 0
|
|
|
|
|
|
|
|
function edit (ev: MouseEvent) {
|
|
|
|
ev.preventDefault()
|
|
|
|
|
|
|
|
isEditing = true
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancelEditing (ev: MouseEvent) {
|
|
|
|
ev.preventDefault()
|
|
|
|
|
|
|
|
isEditing = false
|
|
|
|
|
|
|
|
if (issue) {
|
|
|
|
title = issue.title
|
|
|
|
description = issue.description
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function save (ev: MouseEvent) {
|
|
|
|
ev.preventDefault()
|
|
|
|
|
|
|
|
if (!issue || !canSave) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const updates: Partial<Data<Issue>> = {}
|
|
|
|
const trimmedTitle = title.trim()
|
|
|
|
|
|
|
|
if (trimmedTitle.length > 0 && trimmedTitle !== issue.title) {
|
|
|
|
updates.title = trimmedTitle
|
|
|
|
}
|
|
|
|
|
|
|
|
if (description !== issue.description) {
|
|
|
|
updates.description = description
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Object.keys(updates).length > 0) {
|
|
|
|
await client.update(issue, updates)
|
|
|
|
}
|
|
|
|
|
|
|
|
isEditing = false
|
|
|
|
}
|
|
|
|
|
2022-05-18 15:58:06 +00:00
|
|
|
function showMenu (ev?: Event): void {
|
|
|
|
if (issue) {
|
|
|
|
showPopup(ContextMenu, { object: issue }, (ev as MouseEvent).target as HTMLElement)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-18 04:04:54 +00:00
|
|
|
onMount(() => {
|
|
|
|
dispatch('open', { ignoreKeys: ['comments', 'name', 'description', 'number'] })
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{#if issue !== undefined}
|
|
|
|
<Panel
|
|
|
|
object={issue}
|
|
|
|
isHeader
|
|
|
|
isAside={true}
|
|
|
|
isSub={false}
|
|
|
|
withoutActivity={isEditing}
|
|
|
|
bind:innerWidth
|
2022-05-19 06:42:38 +00:00
|
|
|
isFullSize
|
|
|
|
on:fullsize
|
2022-05-18 04:04:54 +00:00
|
|
|
on:close={() => dispatch('close')}
|
|
|
|
>
|
|
|
|
<svelte:fragment slot="subtitle">
|
|
|
|
<div class="flex-between flex-grow">
|
|
|
|
<div class="buttons-group xsmall-gap">
|
|
|
|
<Button icon={IconEdit} kind={'transparent'} size="medium" on:click={edit} />
|
|
|
|
{#if innerWidth < 900}
|
|
|
|
<Button icon={IconMoreH} kind={'transparent'} size="medium" />
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="navigator">
|
|
|
|
<Button icon={IconDownOutline} kind="secondary" size="medium" />
|
|
|
|
<Button icon={IconUpOutline} kind="secondary" size="medium" />
|
|
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="header">
|
|
|
|
<span class="fs-title">
|
|
|
|
{#if issueId}{issueId}{/if}
|
|
|
|
</span>
|
|
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="tools">
|
|
|
|
{#if isEditing}
|
|
|
|
<Button kind="transparent" label={presentation.string.Cancel} on:click={cancelEditing} />
|
|
|
|
<Button disabled={!canSave} label={presentation.string.Save} on:click={save} />
|
|
|
|
{:else}
|
|
|
|
<Button icon={IconEdit} kind="transparent" size="medium" on:click={edit} />
|
2022-05-18 15:58:06 +00:00
|
|
|
<ActionIcon icon={IconMoreH} size={'medium'} action={showMenu} />
|
2022-05-18 04:04:54 +00:00
|
|
|
{/if}
|
|
|
|
</svelte:fragment>
|
|
|
|
|
|
|
|
{#if isEditing}
|
|
|
|
<Scroller>
|
|
|
|
<div class="popupPanel-body__main-content py-10 clear-mins content">
|
|
|
|
<EditBox bind:value={title} placeholder={tracker.string.IssueTitlePlaceholder} kind="large-style" />
|
|
|
|
<div class="mt-6">
|
|
|
|
<StyledTextArea bind:content={description} placeholder={tracker.string.IssueDescriptionPlaceholder} focus />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Scroller>
|
|
|
|
{:else}
|
|
|
|
<span class="title">{title}</span>
|
|
|
|
<div class="mt-6">
|
|
|
|
<MessageViewer message={issue.description} />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
<AttachmentDocList value={issue} />
|
|
|
|
|
|
|
|
<span slot="actions-label">
|
|
|
|
{#if issueId}{issueId}{/if}
|
|
|
|
</span>
|
|
|
|
<svelte:fragment slot="actions">
|
|
|
|
<CopyToClipboard issueUrl={window.location.href} {issueId} />
|
|
|
|
</svelte:fragment>
|
|
|
|
|
|
|
|
<svelte:fragment slot="custom-attributes">
|
|
|
|
{#if issue && currentTeam && issueStatuses}
|
|
|
|
<ControlPanel {issue} {issueStatuses} />
|
|
|
|
{/if}
|
|
|
|
</svelte:fragment>
|
|
|
|
</Panel>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 1.125rem;
|
|
|
|
color: var(--theme-caption-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
</style>
|