mirror of
https://github.com/open-webui/open-webui
synced 2025-01-11 13:28:22 +00:00
44 lines
1.1 KiB
Svelte
44 lines
1.1 KiB
Svelte
|
<script lang="ts">
|
||
|
import { DropdownMenu } from 'bits-ui';
|
||
|
|
||
|
import Dropdown from '$lib/components/common/Dropdown.svelte';
|
||
|
import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
|
||
|
import Pencil from '$lib/components/icons/Pencil.svelte';
|
||
|
|
||
|
export let renameHandler: Function;
|
||
|
export let deleteHandler: Function;
|
||
|
</script>
|
||
|
|
||
|
<Dropdown>
|
||
|
<slot />
|
||
|
|
||
|
<div slot="content">
|
||
|
<DropdownMenu.Content
|
||
|
class="w-full max-w-[130px] rounded-lg px-1 py-1.5 border border-gray-700 z-50 bg-gray-850 text-white"
|
||
|
sideOffset={8}
|
||
|
side="bottom"
|
||
|
align="start"
|
||
|
>
|
||
|
<DropdownMenu.Item
|
||
|
class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
|
||
|
on:click={() => {
|
||
|
renameHandler();
|
||
|
}}
|
||
|
>
|
||
|
<Pencil strokeWidth="2" />
|
||
|
<div class="flex items-center">Rename</div>
|
||
|
</DropdownMenu.Item>
|
||
|
|
||
|
<DropdownMenu.Item
|
||
|
class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
|
||
|
on:click={() => {
|
||
|
deleteHandler();
|
||
|
}}
|
||
|
>
|
||
|
<GarbageBin strokeWidth="2" />
|
||
|
<div class="flex items-center">Delete</div>
|
||
|
</DropdownMenu.Item>
|
||
|
</DropdownMenu.Content>
|
||
|
</div>
|
||
|
</Dropdown>
|