|
@@ -578,82 +578,6 @@
|
|
|
? 'opacity-20'
|
|
|
: ''}"
|
|
|
>
|
|
|
- {#if !search && $pinnedChats.length > 0}
|
|
|
- <div class="flex flex-col space-y-1 rounded-xl">
|
|
|
- <Folder
|
|
|
- className="px-2"
|
|
|
- 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(localStorage.token, item.chat, item?.meta ?? {});
|
|
|
- }
|
|
|
-
|
|
|
- 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);
|
|
|
- }
|
|
|
-
|
|
|
- initChatList();
|
|
|
- }
|
|
|
- }
|
|
|
- }}
|
|
|
- name={$i18n.t('Pinned')}
|
|
|
- >
|
|
|
- <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}
|
|
|
- <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 $config?.features?.enable_channels && ($user.role === 'admin' || $channels.length > 0) && !search}
|
|
|
<Folder
|
|
|
className="px-2 mt-0.5"
|
|
@@ -677,22 +601,6 @@
|
|
|
</Folder>
|
|
|
{/if}
|
|
|
|
|
|
- {#if !search && folders}
|
|
|
- <Folders
|
|
|
- {folders}
|
|
|
- on:import={(e) => {
|
|
|
- const { folderId, items } = e.detail;
|
|
|
- importChatHandler(items, false, folderId);
|
|
|
- }}
|
|
|
- on:update={async (e) => {
|
|
|
- initChatList();
|
|
|
- }}
|
|
|
- on:change={async () => {
|
|
|
- initChatList();
|
|
|
- }}
|
|
|
- />
|
|
|
- {/if}
|
|
|
-
|
|
|
<Folder
|
|
|
collapsible={!search}
|
|
|
className="px-2 mt-0.5"
|
|
@@ -750,6 +658,98 @@
|
|
|
<div class="absolute z-40 w-full h-full flex justify-center"></div>
|
|
|
{/if}
|
|
|
|
|
|
+ {#if !search && $pinnedChats.length > 0}
|
|
|
+ <div class="flex flex-col space-y-1 rounded-xl">
|
|
|
+ <Folder
|
|
|
+ className="px-2"
|
|
|
+ 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(localStorage.token, item.chat, item?.meta ?? {});
|
|
|
+ }
|
|
|
+
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ initChatList();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }}
|
|
|
+ name={$i18n.t('Pinned')}
|
|
|
+ >
|
|
|
+ <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}
|
|
|
+ <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 !search && folders}
|
|
|
+ <Folders
|
|
|
+ {folders}
|
|
|
+ on:import={(e) => {
|
|
|
+ const { folderId, items } = e.detail;
|
|
|
+ importChatHandler(items, false, folderId);
|
|
|
+ }}
|
|
|
+ on:update={async (e) => {
|
|
|
+ initChatList();
|
|
|
+ }}
|
|
|
+ on:change={async () => {
|
|
|
+ initChatList();
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ {/if}
|
|
|
+
|
|
|
<div class=" flex-1 flex flex-col overflow-y-auto scrollbar-hidden">
|
|
|
<div class="pt-1.5">
|
|
|
{#if $chats}
|