mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 06:15:23 +00:00
71 lines
2 KiB
Svelte
71 lines
2 KiB
Svelte
|
|
<script lang="ts">
|
||
|
|
import { DropdownMenu } from 'bits-ui';
|
||
|
|
import { createEventDispatcher, getContext, onMount } from 'svelte';
|
||
|
|
|
||
|
|
import { showSettings, activeUserIds, USAGE_POOL, mobile, showSidebar, user } from '$lib/stores';
|
||
|
|
import { fade, slide } from 'svelte/transition';
|
||
|
|
import { userSignOut } from '$lib/apis/auths';
|
||
|
|
|
||
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
||
|
|
import ArchiveBox from '$lib/components/icons/ArchiveBox.svelte';
|
||
|
|
import Mic from '../icons/Mic.svelte';
|
||
|
|
import CursorArrowRays from '../icons/CursorArrowRays.svelte';
|
||
|
|
|
||
|
|
const i18n = getContext('i18n');
|
||
|
|
|
||
|
|
export let show = false;
|
||
|
|
export let className = 'max-w-[160px]';
|
||
|
|
|
||
|
|
export let onRecord = () => {};
|
||
|
|
export let onCaptureAudio = () => {};
|
||
|
|
|
||
|
|
const dispatch = createEventDispatcher();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<DropdownMenu.Root
|
||
|
|
bind:open={show}
|
||
|
|
onOpenChange={(state) => {
|
||
|
|
dispatch('change', state);
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<DropdownMenu.Trigger>
|
||
|
|
<slot />
|
||
|
|
</DropdownMenu.Trigger>
|
||
|
|
|
||
|
|
<slot name="content">
|
||
|
|
<DropdownMenu.Content
|
||
|
|
class="w-full {className} 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={8}
|
||
|
|
side="bottom"
|
||
|
|
align="start"
|
||
|
|
transition={(e) => fade(e, { duration: 100 })}
|
||
|
|
>
|
||
|
|
<button
|
||
|
|
class="flex rounded-md py-2 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition"
|
||
|
|
on:click={async () => {
|
||
|
|
onRecord();
|
||
|
|
show = false;
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<div class=" self-center mr-2">
|
||
|
|
<Mic className="size-5" strokeWidth="1.5" />
|
||
|
|
</div>
|
||
|
|
<div class=" self-center truncate">{$i18n.t('Record')}</div>
|
||
|
|
</button>
|
||
|
|
|
||
|
|
<button
|
||
|
|
class="flex rounded-md py-2 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition"
|
||
|
|
on:click={() => {
|
||
|
|
onCaptureAudio();
|
||
|
|
show = false;
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<div class=" self-center mr-2">
|
||
|
|
<CursorArrowRays className="size-5" strokeWidth="1.5" />
|
||
|
|
</div>
|
||
|
|
<div class=" self-center truncate">{$i18n.t('Capture Audio')}</div>
|
||
|
|
</button>
|
||
|
|
</DropdownMenu.Content>
|
||
|
|
</slot>
|
||
|
|
</DropdownMenu.Root>
|