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

1151 lines
31 KiB
Svelte
Raw Normal View History

2023-11-20 01:47:07 +00:00
<script lang="ts">
2024-06-15 10:41:48 +00:00
import { toast } from 'svelte-sonner';
2024-10-18 01:42:36 +00:00
import { v4 as uuidv4 } from 'uuid';
2024-04-30 23:34:29 +00:00
import { goto } from '$app/navigation';
2024-05-15 00:50:24 +00:00
import {
user,
chats,
settings,
showSettings,
chatId,
tags,
showSidebar,
2025-05-18 21:39:33 +00:00
showSearch,
2024-05-15 08:22:15 +00:00
mobile,
2024-07-02 06:08:01 +00:00
showArchivedChats,
2024-08-01 19:19:14 +00:00
pinnedChats,
2024-08-04 14:58:08 +00:00
scrollPaginationEnabled,
currentChatPage,
2024-12-22 11:10:10 +00:00
temporaryChatEnabled,
2024-12-23 02:40:01 +00:00
channels,
2024-12-23 04:02:14 +00:00
socket,
2025-01-14 03:18:32 +00:00
config,
2025-06-08 20:33:41 +00:00
isApp,
models,
2025-08-06 22:50:05 +00:00
selectedFolder,
WEBUI_NAME
2024-05-15 00:50:24 +00:00
} from '$lib/stores';
2024-10-09 07:13:54 +00:00
import { onMount, getContext, tick, onDestroy } from 'svelte';
2024-03-01 04:40:36 +00:00
const i18n = getContext('i18n');
2024-01-18 10:55:25 +00:00
import {
getChatList,
2024-10-15 05:57:11 +00:00
getAllTags,
2024-10-15 09:12:39 +00:00
getPinnedChatList,
toggleChatPinnedStatusById,
getChatById,
2024-10-18 03:13:28 +00:00
updateChatFolderIdById,
importChat
2024-01-18 10:55:25 +00:00
} from '$lib/apis/chats';
2024-11-05 03:52:12 +00:00
import { createNewFolder, getFolders, updateFolderParentIdById } from '$lib/apis/folders';
2024-02-24 01:12:19 +00:00
import { WEBUI_BASE_URL } from '$lib/constants';
2024-06-15 10:41:48 +00:00
2025-05-24 20:48:30 +00:00
import ArchivedChatsModal from './ArchivedChatsModal.svelte';
2024-05-09 07:34:57 +00:00
import UserMenu from './Sidebar/UserMenu.svelte';
2024-06-14 18:06:19 +00:00
import ChatItem from './Sidebar/ChatItem.svelte';
import Spinner from '../common/Spinner.svelte';
2024-08-04 14:36:44 +00:00
import Loader from '../common/Loader.svelte';
2024-10-15 07:35:14 +00:00
import Folder from '../common/Folder.svelte';
2024-10-16 09:53:16 +00:00
import Tooltip from '../common/Tooltip.svelte';
2024-10-17 04:05:03 +00:00
import Folders from './Sidebar/Folders.svelte';
2024-12-22 11:10:10 +00:00
import { getChannels, createNewChannel } from '$lib/apis/channels';
2024-12-23 06:09:51 +00:00
import ChannelModal from './Sidebar/ChannelModal.svelte';
2024-12-22 11:10:10 +00:00
import ChannelItem from './Sidebar/ChannelItem.svelte';
2024-12-23 00:16:14 +00:00
import PencilSquare from '../icons/PencilSquare.svelte';
2025-06-25 17:42:18 +00:00
import Search from '../icons/Search.svelte';
2025-05-18 21:39:33 +00:00
import SearchModal from './SearchModal.svelte';
2025-07-19 15:46:35 +00:00
import FolderModal from './Sidebar/Folders/FolderModal.svelte';
2025-08-06 23:35:12 +00:00
import Sidebar from '../icons/Sidebar.svelte';
2025-08-06 23:42:02 +00:00
import PinnedModelList from './Sidebar/PinnedModelList.svelte';
2025-08-08 00:32:17 +00:00
import Note from '../icons/Note.svelte';
2025-08-08 07:53:06 +00:00
import { slide } from 'svelte/transition';
2023-11-20 01:47:07 +00:00
2024-05-15 06:48:46 +00:00
const BREAKPOINT = 768;
2024-04-30 23:34:29 +00:00
2023-11-20 01:47:07 +00:00
let navElement;
2024-06-14 20:02:07 +00:00
let shiftKey = false;
2024-03-16 08:57:26 +00:00
let selectedChatId = null;
2024-10-15 02:33:32 +00:00
let showPinnedChat = true;
2024-12-22 11:10:10 +00:00
let showCreateChannel = false;
2024-08-04 14:36:44 +00:00
// Pagination variables
2024-08-04 15:31:41 +00:00
let chatListLoading = false;
2024-08-04 14:36:44 +00:00
let allChatsLoaded = false;
2025-07-19 15:46:35 +00:00
let showCreateFolderModal = false;
2024-10-17 04:05:03 +00:00
let folders = {};
let newFolderId = null;
2024-10-17 04:05:03 +00:00
const initFolders = async () => {
const folderList = await getFolders(localStorage.token).catch((error) => {
2025-01-21 06:41:32 +00:00
toast.error(`${error}`);
2024-10-17 04:05:03 +00:00
return [];
});
2024-10-17 04:49:22 +00:00
folders = {};
// First pass: Initialize all folder entries
2024-10-17 04:05:03 +00:00
for (const folder of folderList) {
// Ensure folder is added to folders with its data
folders[folder.id] = { ...(folders[folder.id] || {}), ...folder };
if (newFolderId && folder.id === newFolderId) {
2025-03-21 00:42:50 +00:00
folders[folder.id].new = true;
newFolderId = null;
}
}
2024-10-17 04:05:03 +00:00
// Second pass: Tie child folders to their parents
for (const folder of folderList) {
if (folder.parent_id) {
// Ensure the parent folder is initialized if it doesn't exist
if (!folders[folder.parent_id]) {
folders[folder.parent_id] = {}; // Create a placeholder if not already present
}
// Initialize childrenIds array if it doesn't exist and add the current folder id
folders[folder.parent_id].childrenIds = folders[folder.parent_id].childrenIds
? [...folders[folder.parent_id].childrenIds, folder.id]
2024-10-17 04:05:03 +00:00
: [folder.id];
// Sort the children by updated_at field
folders[folder.parent_id].childrenIds.sort((a, b) => {
2024-10-17 04:05:03 +00:00
return folders[b].updated_at - folders[a].updated_at;
});
}
}
};
2025-07-19 15:46:35 +00:00
const createFolder = async ({ name, data }) => {
2024-10-17 04:05:03 +00:00
if (name === '') {
toast.error($i18n.t('Folder name cannot be empty.'));
return;
}
const rootFolders = Object.values(folders).filter((folder) => folder.parent_id === null);
if (rootFolders.find((folder) => folder.name.toLowerCase() === name.toLowerCase())) {
2024-10-17 04:05:03 +00:00
// If a folder with the same name already exists, append a number to the name
let i = 1;
2024-10-17 04:55:25 +00:00
while (
rootFolders.find((folder) => folder.name.toLowerCase() === `${name} ${i}`.toLowerCase())
2024-10-17 04:55:25 +00:00
) {
2024-10-17 04:05:03 +00:00
i++;
}
2024-10-17 04:55:25 +00:00
name = `${name} ${i}`;
2024-10-17 04:05:03 +00:00
}
2024-10-18 01:42:36 +00:00
// Add a dummy folder to the list to show the user that the folder is being created
const tempId = uuidv4();
folders = {
...folders,
tempId: {
id: tempId,
name: name,
created_at: Date.now(),
updated_at: Date.now()
}
};
2025-07-19 15:46:35 +00:00
const res = await createNewFolder(localStorage.token, {
name,
data
}).catch((error) => {
2025-01-21 06:41:32 +00:00
toast.error(`${error}`);
2024-10-17 04:05:03 +00:00
return null;
});
if (res) {
2025-07-19 15:46:35 +00:00
// newFolderId = res.id;
2024-10-17 04:05:03 +00:00
await initFolders();
}
};
2024-12-22 11:10:10 +00:00
const initChannels = async () => {
2024-12-23 02:40:01 +00:00
await channels.set(await getChannels(localStorage.token));
2024-12-22 11:10:10 +00:00
};
2024-10-09 06:37:37 +00:00
const initChatList = async () => {
2024-08-04 15:31:41 +00:00
// Reset pagination variables
2024-10-15 05:57:11 +00:00
tags.set(await getAllTags(localStorage.token));
2024-10-18 02:09:01 +00:00
pinnedChats.set(await getPinnedChatList(localStorage.token));
initFolders();
2024-10-15 05:57:11 +00:00
2024-08-04 15:31:41 +00:00
currentChatPage.set(1);
allChatsLoaded = false;
2024-10-20 03:47:30 +00:00
2025-05-18 21:52:40 +00:00
await chats.set(await getChatList(localStorage.token, $currentChatPage));
2024-08-04 15:31:41 +00:00
// Enable pagination
scrollPaginationEnabled.set(true);
};
2024-08-04 14:36:44 +00:00
const loadMoreChats = async () => {
chatListLoading = true;
2024-08-04 14:58:08 +00:00
currentChatPage.set($currentChatPage + 1);
2024-10-09 06:37:37 +00:00
let newChatList = [];
2025-05-18 21:52:40 +00:00
newChatList = await getChatList(localStorage.token, $currentChatPage);
2024-08-04 14:36:44 +00:00
// once the bottom of the list has been reached (no results) there is no need to continue querying
allChatsLoaded = newChatList.length === 0;
2024-10-15 00:31:52 +00:00
await chats.set([...($chats ? $chats : []), ...newChatList]);
2024-08-04 14:36:44 +00:00
chatListLoading = false;
};
2024-10-18 03:13:28 +00:00
const importChatHandler = async (items, pinned = false, folderId = null) => {
console.log('importChatHandler', items, pinned, folderId);
for (const item of items) {
2024-10-21 01:02:41 +00:00
console.log(item);
2024-10-18 03:13:28 +00:00
if (item.chat) {
await importChat(
localStorage.token,
item.chat,
item?.meta ?? {},
pinned,
folderId,
item?.created_at ?? null,
item?.updated_at ?? null
);
2024-10-18 03:13:28 +00:00
}
}
initChatList();
};
2024-10-09 07:13:54 +00:00
const inputFilesHandler = async (files) => {
console.log(files);
for (const file of files) {
const reader = new FileReader();
reader.onload = async (e) => {
const content = e.target.result;
try {
2024-10-18 03:13:28 +00:00
const chatItems = JSON.parse(content);
importChatHandler(chatItems);
2024-10-09 07:13:54 +00:00
} catch {
toast.error($i18n.t(`Invalid file format.`));
}
};
reader.readAsText(file);
}
};
2024-10-11 06:43:08 +00:00
const tagEventHandler = async (type, tagName, chatId) => {
console.log(type, tagName, chatId);
if (type === 'delete') {
2024-10-19 04:30:55 +00:00
initChatList();
2024-10-15 04:21:45 +00:00
} else if (type === 'add') {
2024-10-19 04:30:55 +00:00
initChatList();
2024-10-11 06:43:08 +00:00
}
};
2024-10-18 02:45:18 +00:00
let draggedOver = false;
2024-10-09 07:13:54 +00:00
const onDragOver = (e) => {
e.preventDefault();
2024-10-18 02:45:18 +00:00
// Check if a file is being draggedOver.
if (e.dataTransfer?.types?.includes('Files')) {
2024-10-18 02:45:18 +00:00
draggedOver = true;
} else {
2024-10-18 02:45:18 +00:00
draggedOver = false;
}
2024-10-09 07:13:54 +00:00
};
const onDragLeave = () => {
2024-10-18 02:45:18 +00:00
draggedOver = false;
2024-10-09 07:13:54 +00:00
};
const onDrop = async (e) => {
e.preventDefault();
console.log(e); // Log the drop event
2024-10-09 07:13:54 +00:00
// Perform file drop check and handle it accordingly
2024-10-09 07:13:54 +00:00
if (e.dataTransfer?.files) {
const inputFiles = Array.from(e.dataTransfer?.files);
2024-10-09 07:13:54 +00:00
if (inputFiles && inputFiles.length > 0) {
console.log(inputFiles); // Log the dropped files
inputFilesHandler(inputFiles); // Handle the dropped files
2024-10-09 07:13:54 +00:00
}
}
2024-10-18 02:45:18 +00:00
draggedOver = false; // Reset draggedOver status after drop
2024-10-09 07:13:54 +00:00
};
let touchstart;
let touchend;
function checkDirection() {
const screenWidth = window.innerWidth;
const swipeDistance = Math.abs(touchend.screenX - touchstart.screenX);
if (touchstart.clientX < 40 && swipeDistance >= screenWidth / 8) {
if (touchend.screenX < touchstart.screenX) {
showSidebar.set(false);
}
if (touchend.screenX > touchstart.screenX) {
showSidebar.set(true);
}
}
}
const onTouchStart = (e) => {
touchstart = e.changedTouches[0];
console.log(touchstart.clientX);
};
const onTouchEnd = (e) => {
touchend = e.changedTouches[0];
checkDirection();
};
const onKeyDown = (e) => {
if (e.key === 'Shift') {
shiftKey = true;
}
};
const onKeyUp = (e) => {
if (e.key === 'Shift') {
shiftKey = false;
}
};
const onFocus = () => {};
const onBlur = () => {
shiftKey = false;
selectedChatId = null;
};
2023-11-20 01:47:07 +00:00
onMount(async () => {
2024-10-15 02:33:32 +00:00
showPinnedChat = localStorage?.showPinnedChat ? localStorage.showPinnedChat === 'true' : true;
2025-01-14 05:20:31 +00:00
mobile.subscribe((value) => {
if ($showSidebar && value) {
2024-05-15 18:13:14 +00:00
showSidebar.set(false);
}
2025-01-14 05:20:31 +00:00
if ($showSidebar && !value) {
const navElement = document.getElementsByTagName('nav')[0];
if (navElement) {
navElement.style['-webkit-app-region'] = 'drag';
}
}
if (!$showSidebar && !value) {
2024-05-15 18:13:14 +00:00
showSidebar.set(true);
}
});
2024-10-06 00:00:56 +00:00
showSidebar.set(!$mobile ? localStorage.sidebar === 'true' : false);
2025-08-09 18:59:19 +00:00
showSidebar.subscribe(async (value) => {
2024-10-06 00:00:56 +00:00
localStorage.sidebar = value;
2025-01-14 05:13:16 +00:00
// nav element is not available on the first render
2025-01-14 05:15:59 +00:00
const navElement = document.getElementsByTagName('nav')[0];
2025-01-14 05:13:16 +00:00
2025-01-14 05:20:31 +00:00
if (navElement) {
if ($mobile) {
if (!value) {
navElement.style['-webkit-app-region'] = 'drag';
} else {
navElement.style['-webkit-app-region'] = 'no-drag';
}
2025-01-14 05:15:22 +00:00
} else {
2025-01-14 05:20:31 +00:00
navElement.style['-webkit-app-region'] = 'drag';
2025-01-14 05:15:22 +00:00
}
2025-01-14 05:13:16 +00:00
}
2024-10-06 00:00:56 +00:00
});
2025-07-12 23:43:30 +00:00
chats.subscribe((value) => {
2025-07-19 10:29:08 +00:00
initFolders();
2025-07-12 23:43:30 +00:00
});
2024-12-22 11:10:10 +00:00
await initChannels();
2024-10-09 06:37:37 +00:00
await initChatList();
2024-04-16 20:57:14 +00:00
2024-06-16 17:36:15 +00:00
window.addEventListener('keydown', onKeyDown);
window.addEventListener('keyup', onKeyUp);
2024-06-14 20:02:07 +00:00
window.addEventListener('touchstart', onTouchStart);
window.addEventListener('touchend', onTouchEnd);
2024-04-16 22:03:12 +00:00
2024-06-16 17:36:15 +00:00
window.addEventListener('focus', onFocus);
2025-05-20 18:03:21 +00:00
window.addEventListener('blur', onBlur);
2024-06-16 17:36:15 +00:00
2024-10-09 07:13:54 +00:00
const dropZone = document.getElementById('sidebar');
2024-06-16 17:36:15 +00:00
2024-10-09 07:13:54 +00:00
dropZone?.addEventListener('dragover', onDragOver);
dropZone?.addEventListener('drop', onDrop);
dropZone?.addEventListener('dragleave', onDragLeave);
2024-02-08 01:06:07 +00:00
});
2024-10-09 07:13:54 +00:00
onDestroy(() => {
window.removeEventListener('keydown', onKeyDown);
window.removeEventListener('keyup', onKeyUp);
2024-06-15 10:41:48 +00:00
2024-10-09 07:13:54 +00:00
window.removeEventListener('touchstart', onTouchStart);
window.removeEventListener('touchend', onTouchEnd);
2024-08-04 14:58:08 +00:00
2024-10-09 07:13:54 +00:00
window.removeEventListener('focus', onFocus);
2025-05-20 18:03:21 +00:00
window.removeEventListener('blur', onBlur);
2024-08-04 14:58:08 +00:00
2024-10-09 07:13:54 +00:00
const dropZone = document.getElementById('sidebar');
dropZone?.removeEventListener('dragover', onDragOver);
dropZone?.removeEventListener('drop', onDrop);
dropZone?.removeEventListener('dragleave', onDragLeave);
});
2025-08-06 22:50:05 +00:00
const newChatHandler = async () => {
selectedChatId = null;
selectedFolder.set(null);
if ($user?.role !== 'admin' && $user?.permissions?.chat?.temporary_enforced) {
await temporaryChatEnabled.set(true);
} else {
await temporaryChatEnabled.set(false);
}
setTimeout(() => {
if ($mobile) {
showSidebar.set(false);
}
}, 0);
};
2025-08-07 23:53:09 +00:00
const itemClickHandler = async () => {
selectedChatId = null;
chatId.set('');
if ($mobile) {
showSidebar.set(false);
}
await tick();
};
2023-11-20 01:47:07 +00:00
</script>
2024-04-20 23:47:20 +00:00
<ArchivedChatsModal
2024-05-15 08:22:15 +00:00
bind:show={$showArchivedChats}
2025-05-24 20:48:30 +00:00
onUpdate={async () => {
2024-10-15 05:57:11 +00:00
await initChatList();
2024-04-20 23:47:20 +00:00
}}
/>
2024-04-20 19:40:06 +00:00
2024-12-23 06:09:51 +00:00
<ChannelModal
2024-12-22 11:10:10 +00:00
bind:show={showCreateChannel}
2024-12-23 06:09:51 +00:00
onSubmit={async ({ name, access_control }) => {
const res = await createNewChannel(localStorage.token, {
name: name,
access_control: access_control
}).catch((error) => {
2025-01-21 06:41:32 +00:00
toast.error(`${error}`);
2024-12-23 06:09:51 +00:00
return null;
});
if (res) {
2025-04-01 03:32:12 +00:00
$socket.emit('join-channels', { auth: { token: $user?.token } });
2024-12-23 06:09:51 +00:00
await initChannels();
showCreateChannel = false;
}
2024-12-22 11:10:10 +00:00
}}
/>
2025-07-19 15:46:35 +00:00
<FolderModal
bind:show={showCreateFolderModal}
onSubmit={async (folder) => {
await createFolder(folder);
showCreateFolderModal = false;
}}
/>
2024-05-14 22:09:30 +00:00
<!-- svelte-ignore a11y-no-static-element-interactions -->
{#if $showSidebar}
<div
2025-01-14 03:18:32 +00:00
class=" {$isApp
? ' ml-[4.5rem] md:ml-0'
: ''} fixed md:hidden z-40 top-0 right-0 left-0 bottom-0 bg-black/60 w-full min-h-screen h-screen flex justify-center overflow-hidden overscroll-contain"
2024-05-14 22:09:30 +00:00
on:mousedown={() => {
showSidebar.set(!$showSidebar);
}}
/>
{/if}
2025-05-18 21:54:26 +00:00
<SearchModal
bind:show={$showSearch}
onClose={() => {
if ($mobile) {
showSidebar.set(false);
}
}}
/>
2025-05-18 21:39:33 +00:00
2025-08-08 08:50:21 +00:00
<button
id="sidebar-new-chat-button"
class="hidden"
on:click={() => {
goto('/');
newChatHandler();
}}
/>
2025-08-08 08:34:27 +00:00
{#if !$mobile && !$showSidebar}
2025-08-07 23:53:09 +00:00
<div
2025-08-08 08:34:27 +00:00
class=" py-2 px-1.5 flex flex-col justify-between text-black dark:text-white h-full border-e border-gray-50 dark:border-gray-850 z-10"
2025-08-08 09:05:50 +00:00
id="sidebar"
2025-08-07 23:53:09 +00:00
>
<button
2025-08-08 00:10:58 +00:00
class="flex flex-col flex-1 cursor-[e-resize]"
2025-08-09 18:59:19 +00:00
on:click={async () => {
await initChannels();
await initChatList();
2025-08-07 23:53:09 +00:00
showSidebar.set(!$showSidebar);
}}
>
<div class="pb-1.5">
2025-08-08 07:57:51 +00:00
<Tooltip
content={$showSidebar ? $i18n.t('Close Sidebar') : $i18n.t('Open Sidebar')}
placement="right"
>
2025-08-07 23:53:09 +00:00
<button
2025-08-08 00:10:58 +00:00
class=" flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group cursor-[e-resize]"
2025-08-07 23:53:09 +00:00
>
<div class=" self-center flex items-center justify-center size-9">
<img
crossorigin="anonymous"
src="{WEBUI_BASE_URL}/static/favicon.png"
class="sidebar-new-chat-icon size-6 rounded-full group-hover:hidden"
alt=""
/>
<Sidebar className="size-5 hidden group-hover:flex" />
</div>
</button>
</Tooltip>
</div>
<div>
<div class="">
2025-08-08 07:57:51 +00:00
<Tooltip content={$i18n.t('New Chat')} placement="right">
2025-08-07 23:53:09 +00:00
<a
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group"
href="/"
draggable="false"
on:click={async (e) => {
e.stopImmediatePropagation();
e.preventDefault();
goto('/');
newChatHandler();
}}
>
<div class=" self-center flex items-center justify-center size-9">
<PencilSquare className="size-4.5" />
</div>
</a>
</Tooltip>
</div>
<div class="">
2025-08-08 07:57:51 +00:00
<Tooltip content={$i18n.t('Search')} placement="right">
2025-08-07 23:53:09 +00:00
<button
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group"
on:click={(e) => {
e.stopImmediatePropagation();
e.preventDefault();
showSearch.set(true);
}}
draggable="false"
>
<div class=" self-center flex items-center justify-center size-9">
<Search className="size-4.5" />
</div>
</button>
</Tooltip>
</div>
{#if ($config?.features?.enable_notes ?? false) && ($user?.role === 'admin' || ($user?.permissions?.features?.notes ?? true))}
<div class="">
2025-08-08 07:57:51 +00:00
<Tooltip content={$i18n.t('Notes')} placement="right">
2025-08-07 23:53:09 +00:00
<a
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group"
href="/notes"
on:click={async (e) => {
e.stopImmediatePropagation();
e.preventDefault();
goto('/notes');
itemClickHandler();
}}
draggable="false"
>
<div class=" self-center flex items-center justify-center size-9">
2025-08-08 00:32:17 +00:00
<Note className="size-4.5" />
2025-08-07 23:53:09 +00:00
</div>
</a>
</Tooltip>
</div>
{/if}
{#if $user?.role === 'admin' || $user?.permissions?.workspace?.models || $user?.permissions?.workspace?.knowledge || $user?.permissions?.workspace?.prompts || $user?.permissions?.workspace?.tools}
<div class="">
2025-08-08 07:57:51 +00:00
<Tooltip content={$i18n.t('Workspace')} placement="right">
2025-08-07 23:53:09 +00:00
<a
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group"
href="/workspace"
on:click={async (e) => {
e.stopImmediatePropagation();
e.preventDefault();
goto('/workspace');
itemClickHandler();
}}
draggable="false"
>
<div class=" self-center flex items-center justify-center size-9">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-4.5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5Zm0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25Zm9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25Z"
/>
</svg>
</div>
</a>
</Tooltip>
</div>
{/if}
</div>
</button>
<div>
<div>
2025-08-09 18:55:19 +00:00
<div class=" py-0.5">
2025-08-07 23:53:09 +00:00
{#if $user !== undefined && $user !== null}
<UserMenu
role={$user?.role}
on:show={(e) => {
if (e.detail === 'archived-chat') {
showArchivedChats.set(true);
}
}}
>
<div
class=" cursor-pointer flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition group"
>
<div class=" self-center flex items-center justify-center size-9">
<img
src={$user?.profile_image_url}
class=" size-6 object-cover rounded-full"
alt={$i18n.t('Open User Profile Menu')}
aria-label={$i18n.t('Open User Profile Menu')}
/>
</div>
</div>
</UserMenu>
{/if}
</div>
</div>
</div>
</div>
{/if}
2025-08-08 07:53:06 +00:00
{#if $showSidebar}
2024-02-16 04:10:48 +00:00
<div
2025-08-08 07:53:06 +00:00
bind:this={navElement}
id="sidebar"
class="h-screen max-h-[100dvh] min-h-screen select-none {$showSidebar
? 'bg-gray-50 dark:bg-gray-950 z-50'
: ' bg-transparent z-0 '} {$isApp
? `ml-[4.5rem] md:ml-0 `
2025-08-08 07:57:07 +00:00
: ' transition-all duration-300 '} shrink-0 text-gray-900 dark:text-gray-200 text-sm fixed top-0 left-0 overflow-x-hidden
2025-08-08 07:53:06 +00:00
"
transition:slide={{ duration: 200, axis: 'x' }}
data-state={$showSidebar}
2024-02-16 04:10:48 +00:00
>
2025-08-06 22:50:05 +00:00
<div
2025-08-08 07:53:06 +00:00
class=" my-auto flex flex-col justify-between h-screen max-h-[100dvh] w-[260px] overflow-x-hidden scrollbar-hidden z-50 {$showSidebar
? ''
: 'invisible'}"
2025-08-06 22:50:05 +00:00
>
2025-08-08 07:53:06 +00:00
<div
2025-08-08 09:05:50 +00:00
class="sidebar px-1.5 pt-2 pb-1.5 flex justify-between space-x-1 text-gray-600 dark:text-gray-400 sticky top-0 z-10 bg-gray-50 dark:bg-gray-950"
2025-08-06 22:50:05 +00:00
>
2024-11-17 05:26:10 +00:00
<a
2025-08-08 07:53:06 +00:00
class="flex items-center rounded-lg p-1.5 h-full justify-center hover:bg-gray-100 dark:hover:bg-gray-850 transition no-drag-region"
2025-08-06 22:50:05 +00:00
href="/"
2024-11-17 05:26:10 +00:00
draggable="false"
2025-08-06 22:50:05 +00:00
on:click={newChatHandler}
2024-11-17 05:26:10 +00:00
>
2025-08-08 07:53:06 +00:00
<img
crossorigin="anonymous"
src="{WEBUI_BASE_URL}/static/favicon.png"
class="sidebar-new-chat-icon size-6 rounded-full"
alt=""
/>
2024-11-17 05:26:10 +00:00
</a>
2023-11-23 22:33:08 +00:00
2025-08-08 07:53:06 +00:00
<a href="/" class="flex flex-1 px-1.5" on:click={newChatHandler}>
<div class=" self-center font-medium text-gray-850 dark:text-white font-primary">
{$WEBUI_NAME}
2025-05-01 12:39:36 +00:00
</div>
2025-08-08 07:53:06 +00:00
</a>
2025-08-08 10:04:44 +00:00
<Tooltip
content={$showSidebar ? $i18n.t('Close Sidebar') : $i18n.t('Open Sidebar')}
2025-08-08 10:07:23 +00:00
placement="bottom"
2025-08-08 10:04:44 +00:00
>
2025-08-08 07:53:06 +00:00
<button
class=" flex rounded-lg hover:bg-gray-100 dark:hover:bg-gray-850 transition cursor-[w-resize]"
on:click={() => {
showSidebar.set(!$showSidebar);
}}
>
<div class=" self-center p-1.5">
<Sidebar />
</div>
</button>
</Tooltip>
2025-05-01 12:39:36 +00:00
</div>
2025-08-08 07:53:06 +00:00
<div class="pb-1.5">
2025-08-08 00:37:08 +00:00
<div class="px-[7px] flex justify-center text-gray-800 dark:text-gray-200">
2025-08-06 22:50:05 +00:00
<a
2025-08-08 07:53:06 +00:00
id="sidebar-new-chat-button"
class="grow flex items-center space-x-3 rounded-lg px-2 py-2 hover:bg-gray-100 dark:hover:bg-gray-900 transition outline-none"
href="/"
2025-08-06 22:50:05 +00:00
draggable="false"
2025-08-08 07:53:06 +00:00
on:click={newChatHandler}
2025-08-06 22:50:05 +00:00
>
<div class="self-center">
2025-08-08 07:53:06 +00:00
<PencilSquare className=" size-4.5" strokeWidth="2" />
2025-08-06 22:50:05 +00:00
</div>
<div class="flex self-center translate-y-[0.5px]">
2025-08-08 07:53:06 +00:00
<div class=" self-center text-sm font-primary">{$i18n.t('New Chat')}</div>
2025-08-06 22:50:05 +00:00
</div>
</a>
</div>
2025-08-08 00:37:08 +00:00
<div class="px-[7px] flex justify-center text-gray-800 dark:text-gray-200">
2025-08-08 07:53:06 +00:00
<button
class="grow flex items-center space-x-3 rounded-lg px-2 py-2 hover:bg-gray-100 dark:hover:bg-gray-900 transition outline-none"
on:click={() => {
showSearch.set(true);
}}
2025-08-06 22:50:05 +00:00
draggable="false"
>
<div class="self-center">
2025-08-08 07:53:06 +00:00
<Search strokeWidth="2" className="size-4.5" />
2025-08-06 22:50:05 +00:00
</div>
<div class="flex self-center translate-y-[0.5px]">
2025-08-08 07:53:06 +00:00
<div class=" self-center text-sm font-primary">{$i18n.t('Search')}</div>
2025-08-06 22:50:05 +00:00
</div>
2025-08-08 07:53:06 +00:00
</button>
2025-08-06 22:50:05 +00:00
</div>
2025-08-08 07:53:06 +00:00
{#if ($config?.features?.enable_notes ?? false) && ($user?.role === 'admin' || ($user?.permissions?.features?.notes ?? true))}
<div class="px-[7px] flex justify-center text-gray-800 dark:text-gray-200">
<a
class="grow flex items-center space-x-3 rounded-lg px-2 py-2 hover:bg-gray-100 dark:hover:bg-gray-900 transition"
href="/notes"
on:click={itemClickHandler}
draggable="false"
>
<div class="self-center">
<Note className="size-4.5" strokeWidth="2" />
</div>
<div class="flex self-center translate-y-[0.5px]">
<div class=" self-center text-sm font-primary">{$i18n.t('Notes')}</div>
</div>
</a>
</div>
{/if}
{#if $user?.role === 'admin' || $user?.permissions?.workspace?.models || $user?.permissions?.workspace?.knowledge || $user?.permissions?.workspace?.prompts || $user?.permissions?.workspace?.tools}
<div class="px-[7px] flex justify-center text-gray-800 dark:text-gray-200">
<a
class="grow flex items-center space-x-3 rounded-lg px-2 py-2 hover:bg-gray-100 dark:hover:bg-gray-900 transition"
href="/workspace"
on:click={itemClickHandler}
draggable="false"
>
<div class="self-center">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="2"
stroke="currentColor"
class="size-4.5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M13.5 16.875h3.375m0 0h3.375m-3.375 0V13.5m0 3.375v3.375M6 10.5h2.25a2.25 2.25 0 0 0 2.25-2.25V6a2.25 2.25 0 0 0-2.25-2.25H6A2.25 2.25 0 0 0 3.75 6v2.25A2.25 2.25 0 0 0 6 10.5Zm0 9.75h2.25A2.25 2.25 0 0 0 10.5 18v-2.25a2.25 2.25 0 0 0-2.25-2.25H6a2.25 2.25 0 0 0-2.25 2.25V18A2.25 2.25 0 0 0 6 20.25Zm9.75-9.75H18a2.25 2.25 0 0 0 2.25-2.25V6A2.25 2.25 0 0 0 18 3.75h-2.25A2.25 2.25 0 0 0 13.5 6v2.25a2.25 2.25 0 0 0 2.25 2.25Z"
/>
</svg>
</div>
<div class="flex self-center translate-y-[0.5px]">
<div class=" self-center text-sm font-primary">{$i18n.t('Workspace')}</div>
</div>
</a>
</div>
{/if}
</div>
<div class="relative flex flex-col flex-1">
{#if ($models ?? []).length > 0 && ($settings?.pinnedModels ?? []).length > 0}
2025-08-09 18:50:27 +00:00
<PinnedModelList bind:selectedChatId {shiftKey} />
2025-08-08 07:53:06 +00:00
{/if}
{#if $config?.features?.enable_channels && ($user?.role === 'admin' || $channels.length > 0)}
<Folder
className="px-2 mt-0.5"
name={$i18n.t('Channels')}
dragAndDrop={false}
onAdd={async () => {
if ($user?.role === 'admin') {
await tick();
setTimeout(() => {
showCreateChannel = true;
}, 0);
}
}}
onAddLabel={$i18n.t('Create Channel')}
>
{#each $channels as channel}
<ChannelItem
{channel}
onUpdate={async () => {
await initChannels();
}}
/>
{/each}
</Folder>
{/if}
2025-06-10 10:33:49 +00:00
2024-12-22 11:49:24 +00:00
<Folder
className="px-2 mt-0.5"
2025-08-08 07:53:06 +00:00
name={$i18n.t('Chats')}
onAdd={() => {
showCreateFolderModal = true;
2025-01-16 05:51:11 +00:00
}}
2025-08-08 07:53:06 +00:00
onAddLabel={$i18n.t('New Folder')}
on:change={async (e) => {
selectedFolder.set(null);
await goto('/');
}}
on:import={(e) => {
importChatHandler(e.detail);
}}
on:drop={async (e) => {
const { type, id, item } = e.detail;
2024-10-15 09:12:39 +00:00
2025-08-08 07:53:06 +00:00
if (type === 'chat') {
let chat = await getChatById(localStorage.token, id).catch((error) => {
return null;
});
if (!chat && item) {
chat = await importChat(
localStorage.token,
item.chat,
item?.meta ?? {},
false,
null,
item?.created_at ?? null,
item?.updated_at ?? null
2024-12-22 01:12:44 +00:00
);
}
2024-10-27 04:25:48 +00:00
2025-08-08 07:53:06 +00:00
if (chat) {
console.log(chat);
if (chat.folder_id) {
const res = await updateChatFolderIdById(localStorage.token, chat.id, null).catch(
(error) => {
toast.error(`${error}`);
return null;
}
);
}
2024-07-02 06:08:01 +00:00
2025-08-08 07:53:06 +00:00
if (chat.pinned) {
const res = await toggleChatPinnedStatusById(localStorage.token, chat.id);
}
2024-10-15 09:12:39 +00:00
2025-08-08 07:53:06 +00:00
initChatList();
}
} else if (type === 'folder') {
if (folders[id].parent_id === null) {
return;
2024-10-27 04:25:48 +00:00
}
2025-08-08 07:53:06 +00:00
const res = await updateFolderParentIdById(localStorage.token, id, null).catch(
(error) => {
toast.error(`${error}`);
return null;
}
);
2025-01-03 04:53:30 +00:00
2025-08-08 07:53:06 +00:00
if (res) {
await initFolders();
}
}
}}
>
{#if $pinnedChats.length > 0}
<div class="flex flex-col space-y-1 rounded-xl">
<Folder
className=""
bind:open={showPinnedChat}
on:change={(e) => {
localStorage.setItem('showPinnedChat', e.detail);
console.log(e.detail);
}}
on:import={(e) => {
importChatHandler(e.detail, true);
}}
on:drop={async (e) => {
const { type, id, item } = e.detail;
if (type === 'chat') {
let chat = await getChatById(localStorage.token, id).catch((error) => {
return null;
});
if (!chat && item) {
chat = await importChat(
2025-01-03 04:53:30 +00:00
localStorage.token,
2025-08-08 07:53:06 +00:00
item.chat,
item?.meta ?? {},
false,
null,
item?.created_at ?? null,
item?.updated_at ?? null
);
2025-01-03 04:53:30 +00:00
}
2025-08-08 07:53:06 +00:00
if (chat) {
console.log(chat);
if (chat.folder_id) {
const res = await updateChatFolderIdById(
localStorage.token,
chat.id,
null
).catch((error) => {
toast.error(`${error}`);
return null;
});
}
if (!chat.pinned) {
const res = await toggleChatPinnedStatusById(localStorage.token, chat.id);
}
2025-01-03 04:53:30 +00:00
2025-08-08 07:53:06 +00:00
initChatList();
}
2025-01-03 04:53:30 +00:00
}
2025-08-08 07:53:06 +00:00
}}
name={$i18n.t('Pinned')}
2025-01-03 04:53:30 +00:00
>
2025-08-08 07:53:06 +00:00
<div
class="ml-3 pl-1 mt-[1px] flex flex-col overflow-y-auto scrollbar-hidden border-s border-gray-100 dark:border-gray-900"
>
{#each $pinnedChats as chat, idx (`pinned-chat-${chat?.id ?? idx}`)}
<ChatItem
className=""
id={chat.id}
title={chat.title}
{shiftKey}
selected={selectedChatId === chat.id}
on:select={() => {
selectedChatId = chat.id;
}}
on:unselect={() => {
selectedChatId = null;
}}
on:change={async () => {
initChatList();
}}
on:tag={(e) => {
const { type, name } = e.detail;
tagEventHandler(type, name, chat.id);
}}
/>
{/each}
</div>
</Folder>
</div>
{/if}
{#if folders}
<Folders
{folders}
{shiftKey}
onDelete={(folderId) => {
selectedFolder.set(null);
initChatList();
}}
on:update={() => {
initChatList();
}}
on:import={(e) => {
const { folderId, items } = e.detail;
importChatHandler(items, false, folderId);
}}
on:change={async () => {
initChatList();
}}
/>
{/if}
<div class=" flex-1 flex flex-col overflow-y-auto scrollbar-hidden">
<div class="pt-1.5">
{#if $chats}
{#each $chats as chat, idx (`chat-${chat?.id ?? idx}`)}
{#if idx === 0 || (idx > 0 && chat.time_range !== $chats[idx - 1].time_range)}
<div
class="w-full pl-2.5 text-xs text-gray-500 dark:text-gray-500 font-medium {idx ===
0
? ''
: 'pt-5'} pb-1.5"
>
{$i18n.t(chat.time_range)}
<!-- localisation keys for time_range to be recognized from the i18next parser (so they don't get automatically removed):
{$i18n.t('Today')}
{$i18n.t('Yesterday')}
{$i18n.t('Previous 7 days')}
{$i18n.t('Previous 30 days')}
{$i18n.t('January')}
{$i18n.t('February')}
{$i18n.t('March')}
{$i18n.t('April')}
{$i18n.t('May')}
{$i18n.t('June')}
{$i18n.t('July')}
{$i18n.t('August')}
{$i18n.t('September')}
{$i18n.t('October')}
{$i18n.t('November')}
{$i18n.t('December')}
-->
</div>
{/if}
2025-01-03 04:53:30 +00:00
<ChatItem
className=""
id={chat.id}
title={chat.title}
{shiftKey}
selected={selectedChatId === chat.id}
on:select={() => {
selectedChatId = chat.id;
}}
on:unselect={() => {
selectedChatId = null;
}}
on:change={async () => {
initChatList();
}}
on:tag={(e) => {
const { type, name } = e.detail;
tagEventHandler(type, name, chat.id);
}}
/>
{/each}
2025-08-08 07:53:06 +00:00
{#if $scrollPaginationEnabled && !allChatsLoaded}
<Loader
on:visible={(e) => {
if (!chatListLoading) {
loadMoreChats();
}
}}
2024-10-15 09:12:39 +00:00
>
2025-08-08 07:53:06 +00:00
<div
class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2"
>
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
</div>
</Loader>
2024-10-15 09:12:39 +00:00
{/if}
2025-08-08 07:53:06 +00:00
{:else}
<div
class="w-full flex justify-center py-1 text-xs animate-pulse items-center gap-2"
2024-10-15 09:12:39 +00:00
>
2025-08-08 07:53:06 +00:00
<Spinner className=" size-4" />
<div class=" ">Loading...</div>
</div>
2024-10-15 09:12:39 +00:00
{/if}
2025-08-08 07:53:06 +00:00
</div>
2024-10-09 06:37:37 +00:00
</div>
2025-08-08 07:53:06 +00:00
</Folder>
</div>
2023-11-20 01:47:07 +00:00
2025-08-09 18:55:19 +00:00
<div class="px-1.5 pt-1.5 pb-2 sticky bottom-0 z-10 bg-gray-50 dark:bg-gray-950 sidebar">
2025-08-08 07:53:06 +00:00
<div class="flex flex-col font-primary">
{#if $user !== undefined && $user !== null}
<UserMenu
role={$user?.role}
on:show={(e) => {
if (e.detail === 'archived-chat') {
showArchivedChats.set(true);
}
}}
2023-11-20 01:47:07 +00:00
>
2025-08-08 07:53:06 +00:00
<div
2025-08-09 18:55:19 +00:00
class=" flex items-center rounded-xl py-2 px-1.5 w-full hover:bg-gray-100 dark:hover:bg-gray-900 transition"
2025-08-08 07:53:06 +00:00
>
<div class=" self-center mr-3">
<img
src={$user?.profile_image_url}
class=" size-6 object-cover rounded-full"
alt={$i18n.t('Open User Profile Menu')}
aria-label={$i18n.t('Open User Profile Menu')}
/>
</div>
<div class=" self-center font-medium">{$user?.name}</div>
2024-05-15 18:27:52 +00:00
</div>
2025-08-08 07:53:06 +00:00
</UserMenu>
{/if}
</div>
2023-11-20 01:47:07 +00:00
</div>
2024-05-15 18:27:52 +00:00
</div>
2023-11-20 01:47:07 +00:00
</div>
2025-08-08 07:53:06 +00:00
{/if}
2024-04-30 23:55:32 +00:00
<style>
2024-05-15 06:16:22 +00:00
.scrollbar-hidden:active::-webkit-scrollbar-thumb,
.scrollbar-hidden:focus::-webkit-scrollbar-thumb,
.scrollbar-hidden:hover::-webkit-scrollbar-thumb {
2024-05-02 02:37:12 +00:00
visibility: visible;
2024-04-30 23:55:32 +00:00
}
2024-05-15 06:16:22 +00:00
.scrollbar-hidden::-webkit-scrollbar-thumb {
2024-05-02 02:37:12 +00:00
visibility: hidden;
2024-04-30 23:55:32 +00:00
}
</style>