open-webui/src/lib/components/layout/Sidebar/ChannelItem.svelte

94 lines
2.3 KiB
Svelte
Raw Normal View History

2024-12-22 11:10:10 +00:00
<script lang="ts">
import { toast } from 'svelte-sonner';
2024-12-23 06:09:51 +00:00
import { onMount, getContext, tick, onDestroy } from 'svelte';
2024-12-22 11:10:10 +00:00
const i18n = getContext('i18n');
2024-12-23 03:28:15 +00:00
import { page } from '$app/stores';
2024-12-22 11:49:24 +00:00
import { mobile, showSidebar, user } from '$lib/stores';
2024-12-23 06:09:51 +00:00
import { updateChannelById } from '$lib/apis/channels';
import Cog6 from '$lib/components/icons/Cog6.svelte';
import ChannelModal from './ChannelModal.svelte';
2025-09-17 02:41:47 +00:00
import Lock from '$lib/components/icons/Lock.svelte';
import Hashtag from '$lib/components/icons/Hashtag.svelte';
2024-12-23 06:09:51 +00:00
export let onUpdate: Function = () => {};
2024-12-22 11:10:10 +00:00
export let className = '';
2024-12-23 06:09:51 +00:00
export let channel;
2024-12-22 11:10:10 +00:00
2024-12-23 06:09:51 +00:00
let showEditChannelModal = false;
2024-12-22 11:10:10 +00:00
let itemElement;
</script>
2024-12-23 06:09:51 +00:00
<ChannelModal
bind:show={showEditChannelModal}
{channel}
edit={true}
2024-12-23 06:15:29 +00:00
{onUpdate}
2024-12-23 06:09:51 +00:00
onSubmit={async ({ name, access_control }) => {
const res = await updateChannelById(localStorage.token, channel.id, {
name,
access_control
}).catch((error) => {
toast.error(error.message);
});
if (res) {
2025-08-14 00:15:16 +00:00
toast.success($i18n.t('Channel updated successfully'));
2024-12-23 06:09:51 +00:00
}
onUpdate();
}}
/>
2024-12-22 11:10:10 +00:00
<div
2025-09-25 16:23:58 +00:00
id="sidebar-channel-item"
2024-12-22 11:10:10 +00:00
bind:this={itemElement}
2025-09-20 06:15:27 +00:00
class=" w-full {className} rounded-xl flex relative group hover:bg-gray-100 dark:hover:bg-gray-900 {$page
2024-12-23 06:09:51 +00:00
.url.pathname === `/channels/${channel.id}`
2025-09-25 16:23:58 +00:00
? 'bg-gray-100 dark:bg-gray-900 selected'
2024-12-23 03:28:15 +00:00
: ''} px-2.5 py-1"
2024-12-22 11:10:10 +00:00
>
<a
class=" w-full flex justify-between"
2024-12-23 06:09:51 +00:00
href="/channels/{channel.id}"
2024-12-22 11:10:10 +00:00
on:click={() => {
2025-09-17 02:41:47 +00:00
console.log(channel);
2024-12-22 11:10:10 +00:00
if ($mobile) {
showSidebar.set(false);
}
}}
draggable="false"
>
2025-09-17 02:41:47 +00:00
<div class="flex items-center gap-1 shrink-0">
<div class=" size-4 justify-center flex items-center">
{#if channel?.access_control === null}
<Hashtag className="size-3" strokeWidth="2.5" />
{:else}
<Lock className="size-[15px]" strokeWidth="2" />
{/if}
</div>
2024-12-22 11:10:10 +00:00
2025-09-17 02:41:47 +00:00
<div class=" text-left self-center overflow-hidden w-full line-clamp-1 flex-1">
2024-12-23 06:09:51 +00:00
{channel.name}
2024-12-22 11:10:10 +00:00
</div>
</div>
</a>
2024-12-22 11:49:24 +00:00
{#if $user?.role === 'admin'}
<button
class="absolute z-10 right-2 invisible group-hover:visible self-center flex items-center dark:text-gray-300"
2025-01-01 03:54:11 +00:00
on:click={(e) => {
2024-12-22 11:49:24 +00:00
e.stopPropagation();
2024-12-23 06:09:51 +00:00
showEditChannelModal = true;
2024-12-22 11:49:24 +00:00
}}
>
<button class="p-0.5 dark:hover:bg-gray-850 rounded-lg touch-auto" on:click={(e) => {}}>
2024-12-23 06:09:51 +00:00
<Cog6 className="size-3.5" />
2024-12-22 11:49:24 +00:00
</button>
2024-12-22 11:10:10 +00:00
</button>
2024-12-22 11:49:24 +00:00
{/if}
2024-12-22 11:10:10 +00:00
</div>