2024-12-23 05:33:13 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { getContext } from 'svelte';
|
|
|
|
|
import { toast } from 'svelte-sonner';
|
|
|
|
|
|
2025-08-07 23:53:09 +00:00
|
|
|
import { mobile, showArchivedChats, showSidebar, user } from '$lib/stores';
|
2024-12-23 05:33:13 +00:00
|
|
|
|
|
|
|
|
import { slide } from 'svelte/transition';
|
|
|
|
|
import { page } from '$app/stores';
|
|
|
|
|
|
|
|
|
|
import UserMenu from '$lib/components/layout/Sidebar/UserMenu.svelte';
|
|
|
|
|
import PencilSquare from '../icons/PencilSquare.svelte';
|
2025-08-06 23:35:12 +00:00
|
|
|
import Tooltip from '../common/Tooltip.svelte';
|
|
|
|
|
import Sidebar from '../icons/Sidebar.svelte';
|
2024-12-23 05:33:13 +00:00
|
|
|
|
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
|
|
|
|
export let channel;
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-01-14 02:19:46 +00:00
|
|
|
<nav class="sticky top-0 z-30 w-full px-1.5 py-1.5 -mb-8 flex items-center drag-region">
|
2024-12-23 05:33:13 +00:00
|
|
|
<div
|
2025-11-02 15:22:22 +00:00
|
|
|
id="navbar-bg-gradient-to-b"
|
2025-02-16 04:35:10 +00:00
|
|
|
class=" bg-linear-to-b via-50% from-white via-white to-transparent dark:from-gray-900 dark:via-gray-900 dark:to-transparent pointer-events-none absolute inset-0 -bottom-7 z-[-1]"
|
2024-12-23 05:33:13 +00:00
|
|
|
></div>
|
|
|
|
|
|
|
|
|
|
<div class=" flex max-w-full w-full mx-auto px-1 pt-0.5 bg-transparent">
|
|
|
|
|
<div class="flex items-center w-full max-w-full">
|
2025-08-07 23:53:09 +00:00
|
|
|
{#if $mobile}
|
|
|
|
|
<div
|
|
|
|
|
class="{$showSidebar
|
|
|
|
|
? 'md:hidden'
|
|
|
|
|
: ''} mr-1.5 mt-0.5 self-start flex flex-none items-center text-gray-600 dark:text-gray-400"
|
|
|
|
|
>
|
2025-08-08 10:04:44 +00:00
|
|
|
<Tooltip
|
|
|
|
|
content={$showSidebar ? $i18n.t('Close Sidebar') : $i18n.t('Open Sidebar')}
|
|
|
|
|
interactive={true}
|
|
|
|
|
>
|
2025-08-07 23:53:09 +00:00
|
|
|
<button
|
|
|
|
|
id="sidebar-toggle-button"
|
|
|
|
|
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition cursor-"
|
|
|
|
|
on:click={() => {
|
|
|
|
|
showSidebar.set(!$showSidebar);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div class=" self-center p-1.5">
|
|
|
|
|
<Sidebar />
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
2024-12-23 05:33:13 +00:00
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
class="flex-1 overflow-hidden max-w-full py-0.5
|
|
|
|
|
{$showSidebar ? 'ml-1' : ''}
|
|
|
|
|
"
|
|
|
|
|
>
|
2024-12-23 08:35:03 +00:00
|
|
|
{#if channel}
|
|
|
|
|
<div class="line-clamp-1 capitalize font-medium font-primary text-lg">
|
|
|
|
|
{channel.name}
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
2024-12-23 05:33:13 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="self-start flex flex-none items-center text-gray-600 dark:text-gray-400">
|
|
|
|
|
{#if $user !== undefined}
|
|
|
|
|
<UserMenu
|
2025-05-23 12:49:11 +00:00
|
|
|
className="max-w-[240px]"
|
2025-04-01 03:32:12 +00:00
|
|
|
role={$user?.role}
|
2025-05-23 12:49:11 +00:00
|
|
|
help={true}
|
2024-12-23 05:33:13 +00:00
|
|
|
on:show={(e) => {
|
|
|
|
|
if (e.detail === 'archived-chat') {
|
|
|
|
|
showArchivedChats.set(true);
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<button
|
|
|
|
|
class="select-none flex rounded-xl p-1.5 w-full hover:bg-gray-50 dark:hover:bg-gray-850 transition"
|
|
|
|
|
aria-label="User Menu"
|
|
|
|
|
>
|
|
|
|
|
<div class=" self-center">
|
|
|
|
|
<img
|
2025-04-01 03:32:12 +00:00
|
|
|
src={$user?.profile_image_url}
|
2024-12-23 05:33:13 +00:00
|
|
|
class="size-6 object-cover rounded-full"
|
|
|
|
|
alt="User profile"
|
|
|
|
|
draggable="false"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
</UserMenu>
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-01-14 02:19:46 +00:00
|
|
|
</nav>
|