2025-05-26 19:22:37 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { DropdownMenu } from 'bits-ui';
|
|
|
|
|
import { flyAndScale } from '$lib/utils/transitions';
|
|
|
|
|
import { getContext } from 'svelte';
|
|
|
|
|
|
|
|
|
|
import Dropdown from '$lib/components/common/Dropdown.svelte';
|
|
|
|
|
import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
|
|
|
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
|
|
|
|
import Share from '$lib/components/icons/Share.svelte';
|
|
|
|
|
import DocumentDuplicate from '$lib/components/icons/DocumentDuplicate.svelte';
|
2025-09-15 19:28:16 +00:00
|
|
|
import Download from '$lib/components/icons/Download.svelte';
|
2025-05-26 19:22:37 +00:00
|
|
|
import Switch from '$lib/components/common/Switch.svelte';
|
|
|
|
|
import GlobeAlt from '$lib/components/icons/GlobeAlt.svelte';
|
|
|
|
|
import Github from '$lib/components/icons/Github.svelte';
|
|
|
|
|
import Plus from '$lib/components/icons/Plus.svelte';
|
|
|
|
|
import Pencil from '$lib/components/icons/Pencil.svelte';
|
|
|
|
|
import PencilSolid from '$lib/components/icons/PencilSolid.svelte';
|
2025-05-26 19:52:22 +00:00
|
|
|
import Link from '$lib/components/icons/Link.svelte';
|
2025-05-26 19:22:37 +00:00
|
|
|
|
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
|
|
|
|
export let createHandler: Function;
|
2025-05-26 19:52:22 +00:00
|
|
|
export let importFromLinkHandler: Function;
|
2025-05-26 19:22:37 +00:00
|
|
|
|
|
|
|
|
export let onClose: Function = () => {};
|
|
|
|
|
|
|
|
|
|
let show = false;
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Dropdown
|
|
|
|
|
bind:show
|
|
|
|
|
on:change={(e) => {
|
|
|
|
|
if (e.detail === false) {
|
|
|
|
|
onClose();
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Tooltip content={$i18n.t('Create')}>
|
|
|
|
|
<slot />
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
<div slot="content">
|
|
|
|
|
<DropdownMenu.Content
|
|
|
|
|
class="w-full max-w-[190px] text-sm rounded-xl px-1 py-1.5 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-lg font-primary"
|
|
|
|
|
sideOffset={-2}
|
|
|
|
|
side="bottom"
|
|
|
|
|
align="start"
|
|
|
|
|
transition={flyAndScale}
|
|
|
|
|
>
|
|
|
|
|
<button
|
|
|
|
|
class="flex rounded-md py-1.5 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition"
|
|
|
|
|
on:click={async () => {
|
|
|
|
|
createHandler();
|
|
|
|
|
show = false;
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div class=" self-center mr-2">
|
|
|
|
|
<PencilSolid />
|
|
|
|
|
</div>
|
|
|
|
|
<div class=" self-center truncate">{$i18n.t('New Function')}</div>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
class="flex rounded-md py-1.5 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition"
|
|
|
|
|
on:click={async () => {
|
2025-05-26 19:52:22 +00:00
|
|
|
importFromLinkHandler();
|
2025-05-26 19:22:37 +00:00
|
|
|
show = false;
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div class=" self-center mr-2">
|
2025-05-26 19:52:22 +00:00
|
|
|
<Link />
|
2025-05-26 19:22:37 +00:00
|
|
|
</div>
|
2025-05-26 19:52:22 +00:00
|
|
|
<div class=" self-center truncate">{$i18n.t('Import From Link')}</div>
|
2025-05-26 19:22:37 +00:00
|
|
|
</button>
|
|
|
|
|
</DropdownMenu.Content>
|
|
|
|
|
</div>
|
|
|
|
|
</Dropdown>
|