mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
64 lines
1.8 KiB
Svelte
64 lines
1.8 KiB
Svelte
|
|
<script lang="ts">
|
||
|
|
import { toast } from 'svelte-sonner';
|
||
|
|
import { onMount, getContext, createEventDispatcher, tick, onDestroy } from 'svelte';
|
||
|
|
const i18n = getContext('i18n');
|
||
|
|
|
||
|
|
const dispatch = createEventDispatcher();
|
||
|
|
|
||
|
|
import { mobile, showSidebar } from '$lib/stores';
|
||
|
|
import EllipsisHorizontal from '$lib/components/icons/EllipsisHorizontal.svelte';
|
||
|
|
|
||
|
|
export let className = '';
|
||
|
|
|
||
|
|
export let id;
|
||
|
|
export let name;
|
||
|
|
|
||
|
|
let itemElement;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div
|
||
|
|
bind:this={itemElement}
|
||
|
|
class=" w-full {className} rounded-lg flex relative group hover:bg-gray-100 dark:hover:bg-gray-900 px-2.5 py-1"
|
||
|
|
>
|
||
|
|
<a
|
||
|
|
class=" w-full flex justify-between"
|
||
|
|
href="/channels/{id}"
|
||
|
|
on:click={() => {
|
||
|
|
if ($mobile) {
|
||
|
|
showSidebar.set(false);
|
||
|
|
}
|
||
|
|
}}
|
||
|
|
draggable="false"
|
||
|
|
>
|
||
|
|
<div class="flex items-center gap-1">
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
viewBox="0 0 16 16"
|
||
|
|
fill="currentColor"
|
||
|
|
class="size-5"
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
fill-rule="evenodd"
|
||
|
|
d="M7.487 2.89a.75.75 0 1 0-1.474-.28l-.455 2.388H3.61a.75.75 0 0 0 0 1.5h1.663l-.571 2.998H2.75a.75.75 0 0 0 0 1.5h1.666l-.403 2.114a.75.75 0 0 0 1.474.28l.456-2.394h2.973l-.403 2.114a.75.75 0 0 0 1.474.28l.456-2.394h1.947a.75.75 0 0 0 0-1.5h-1.661l.57-2.998h1.95a.75.75 0 0 0 0-1.5h-1.664l.402-2.108a.75.75 0 0 0-1.474-.28l-.455 2.388H7.085l.402-2.108ZM6.8 6.498l-.571 2.998h2.973l.57-2.998H6.8Z"
|
||
|
|
clip-rule="evenodd"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
|
||
|
|
<div class=" text-left self-center overflow-hidden w-full line-clamp-1">
|
||
|
|
{name}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<button
|
||
|
|
class="absolute z-10 right-2.5 invisible group-hover:visible self-center flex items-center dark:text-gray-300"
|
||
|
|
on:pointerup={(e) => {
|
||
|
|
e.stopPropagation();
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<button class="p-0.5 dark:hover:bg-gray-850 rounded-lg touch-auto" on:click={(e) => {}}>
|
||
|
|
<EllipsisHorizontal className="size-4" strokeWidth="2.5" />
|
||
|
|
</button>
|
||
|
|
</button>
|
||
|
|
</div>
|