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

125 lines
3.6 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 { createEventDispatcher } from 'svelte'
import { AttachedData } from '@anticrm/core'
import { Issue, IssuePriority } from '@anticrm/tracker'
import { getClient } from '@anticrm/presentation'
import { Button, eventToHTMLElement } from '@anticrm/ui'
2022-06-20 14:11:14 +00:00
import { ButtonKind, ButtonSize, showPopup, SelectPopup, Icon, Label } from '@anticrm/ui'
import tracker from '../../plugin'
import { defaultPriorities, issuePriorities } from '../../utils'
export let value: Issue | AttachedData<Issue>
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 ('_id' in value) {
await client.update(value, { priority: newPriority })
}
}
</script>
{#if value}
{#if kind === 'list' || kind === 'list-header'}
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(--content-color);
}
.label {
font-weight: 500;
color: var(--accent-color);
}
&:hover {
.icon {
color: var(--caption-color) !important;
}
}
}
</style>