platform/plugins/tracker-resources/src/components/issues/PriorityEditor.svelte

130 lines
3.7 KiB
Svelte
Raw Normal View History

<!--
// 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 { AttachedData } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Issue, IssueDraft, IssuePriority, IssueTemplateData } from '@hcengineering/tracker'
import {
Button,
ButtonKind,
ButtonSize,
eventToHTMLElement,
Icon,
Label,
SelectPopup,
showPopup
} from '@hcengineering/ui'
import { createEventDispatcher } from 'svelte'
import tracker from '../../plugin'
import { defaultPriorities, issuePriorities } from '../../utils'
export let value: Issue | AttachedData<Issue> | IssueTemplateData | IssueDraft
export let isEditable: boolean = true
export let shouldShowLabel: boolean = false
export let kind: ButtonKind = 'link'
export let size: ButtonSize = 'large'
export let justify: 'left' | 'center' = 'left'
export let width: string | undefined = undefined
const client = getClient()
const dispatch = createEventDispatcher()
const prioritiesInfo = defaultPriorities.map((p) => ({ id: p, ...issuePriorities[p] }))
const handlePriorityEditorOpened = (event: MouseEvent) => {
event.stopPropagation()
if (!isEditable) {
return
}
showPopup(
SelectPopup,
{ value: prioritiesInfo, placeholder: tracker.string.SetPriority, searchable: true },
eventToHTMLElement(event),
changePriority
)
}
const changePriority = async (newPriority: IssuePriority | undefined) => {
if (!isEditable || newPriority === undefined || value.priority === newPriority) {
return
}
dispatch('change', newPriority)
if ('_class' in value) {
await client.update(value, { priority: newPriority })
}
}
</script>
{#if value}
{#if kind === 'list' || kind === 'list-header'}
<!-- svelte-ignore a11y-click-events-have-key-events -->
2022-06-20 14:11:14 +00:00
<div class="priority-container" on:click={handlePriorityEditorOpened}>
<div class="icon">
{#if issuePriorities[value.priority]?.icon}<Icon icon={issuePriorities[value.priority]?.icon} {size} />{/if}
2022-06-20 14:11:14 +00:00
</div>
{#if shouldShowLabel}
<span
class="{kind === 'list'
? 'ml-2 text-md'
: 'ml-3 text-base'} overflow-label disabled fs-bold content-accent-color"
>
<Label label={issuePriorities[value.priority]?.label} />
2022-06-20 14:11:14 +00:00
</span>
{/if}
</div>
{:else}
<Button
showTooltip={isEditable ? { label: tracker.string.SetPriority } : undefined}
label={shouldShowLabel ? issuePriorities[value.priority]?.label : undefined}
icon={issuePriorities[value.priority]?.icon}
2022-06-20 14:11:14 +00:00
{justify}
{width}
{size}
{kind}
disabled={!isEditable}
on:click={handlePriorityEditorOpened}
/>
{/if}
{/if}
2022-06-20 14:11:14 +00:00
<style lang="scss">
.priority-container {
display: flex;
align-items: center;
flex-shrink: 0;
min-width: 0;
cursor: pointer;
.icon {
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
width: 1rem;
height: 1rem;
color: var(--theme-caption-color);
2022-06-20 14:11:14 +00:00
}
&:hover {
.icon {
color: var(--theme-caption-color) !important;
2022-06-20 14:11:14 +00:00
}
}
}
</style>