Files
huly-platform/plugins/task-resources/src/components/state/StatusesPopup.svelte
T
2023-11-27 13:54:39 +07:00

62 lines
1.8 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 task from '../../plugin'
import { IconDelete, IconEdit, Label } from '@hcengineering/ui'
import view from '@hcengineering/view'
import { createEventDispatcher } from 'svelte'
export let onDelete: () => void
export let showDelete = true
export let onUpdate: () => void
const dispatch = createEventDispatcher()
</script>
<div class="antiPopup">
<div class="ap-space x2" />
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
class="ap-menuItem hoverable flex-row-center"
on:click={() => {
dispatch('close')
onUpdate()
}}
>
<div class="mr-2">
<IconEdit size={'small'} />
</div>
<Label label={view.string.Rename} />
</div>
{#if showDelete}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
class="ap-menuItem hoverable flex-row-center redlight"
on:click={() => {
dispatch('close')
onDelete()
}}
>
<div class="mr-2">
<IconDelete size={'small'} />
</div>
<Label label={task.string.Delete} />
</div>
{/if}
<div class="ap-space x2" />
</div>