123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <script lang="ts">
- import { DropdownMenu } from 'bits-ui';
- import { flyAndScale } from '$lib/utils/transitions';
- import { getContext, createEventDispatcher } from 'svelte';
- const i18n = getContext('i18n');
- const dispatch = createEventDispatcher();
- import Dropdown from '$lib/components/common/Dropdown.svelte';
- import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
- import Pencil from '$lib/components/icons/Pencil.svelte';
- import Tooltip from '$lib/components/common/Tooltip.svelte';
- import Download from '$lib/components/icons/Download.svelte';
- export let align: 'start' | 'end' = 'start';
- export let onEdit = () => {};
- export let onExport = () => {};
- export let onDelete = () => {};
- let show = false;
- </script>
- <Dropdown
- bind:show
- on:change={(e) => {
- if (e.detail === false) {
- dispatch('close');
- }
- }}
- >
- <Tooltip content={$i18n.t('More')}>
- <slot />
- </Tooltip>
- <div slot="content">
- <DropdownMenu.Content
- class="w-full max-w-[170px] rounded-lg px-1 py-1.5 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-lg"
- sideOffset={-2}
- side="bottom"
- {align}
- transition={flyAndScale}
- >
- <DropdownMenu.Item
- class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
- on:click={() => {
- onEdit();
- }}
- >
- <Pencil strokeWidth="2" />
- <div class="flex items-center">{$i18n.t('Edit')}</div>
- </DropdownMenu.Item>
- <DropdownMenu.Item
- class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
- on:click={() => {
- onExport();
- }}
- >
- <Download strokeWidth="2" />
- <div class="flex items-center">{$i18n.t('Export')}</div>
- </DropdownMenu.Item>
- <DropdownMenu.Item
- class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
- on:click={() => {
- onDelete();
- }}
- >
- <GarbageBin strokeWidth="2" />
- <div class="flex items-center">{$i18n.t('Delete')}</div>
- </DropdownMenu.Item>
- </DropdownMenu.Content>
- </div>
- </Dropdown>
|