2023-10-09 00:38:42 +02:00
|
|
|
<script lang="ts">
|
2024-01-01 08:13:17 +01:00
|
|
|
import toast from 'svelte-french-toast';
|
|
|
|
import fileSaver from 'file-saver';
|
|
|
|
const { saveAs } = fileSaver;
|
|
|
|
|
2023-12-26 21:50:52 +01:00
|
|
|
import { getChatById } from '$lib/apis/chats';
|
2024-02-15 09:34:55 +01:00
|
|
|
import { chatId, modelfiles, settings } from '$lib/stores';
|
2024-01-18 06:01:30 +01:00
|
|
|
import ShareChatModal from '../chat/ShareChatModal.svelte';
|
2024-02-03 23:44:49 +01:00
|
|
|
import TagInput from '../common/Tags/TagInput.svelte';
|
|
|
|
import Tags from '../common/Tags.svelte';
|
2024-02-10 04:14:26 +01:00
|
|
|
import { WEBUI_NAME } from '$lib/constants';
|
2023-10-19 07:57:55 +02:00
|
|
|
|
2023-12-26 12:28:30 +01:00
|
|
|
export let initNewChat: Function;
|
2024-02-10 04:14:26 +01:00
|
|
|
export let title: string = WEBUI_NAME;
|
2023-12-14 10:05:38 +01:00
|
|
|
export let shareEnabled: boolean = false;
|
2023-12-15 01:50:54 +01:00
|
|
|
|
2024-01-18 11:10:07 +01:00
|
|
|
export let tags = [];
|
|
|
|
export let addTag: Function;
|
|
|
|
export let deleteTag: Function;
|
2024-01-18 06:01:30 +01:00
|
|
|
|
2024-01-18 11:10:07 +01:00
|
|
|
let showShareChatModal = false;
|
2024-01-18 07:49:58 +01:00
|
|
|
|
|
|
|
let tagName = '';
|
|
|
|
let showTagInput = false;
|
|
|
|
|
2023-12-15 01:50:54 +01:00
|
|
|
const shareChat = async () => {
|
2023-12-26 21:50:52 +01:00
|
|
|
const chat = (await getChatById(localStorage.token, $chatId)).chat;
|
2023-12-15 01:50:54 +01:00
|
|
|
console.log('share', chat);
|
|
|
|
|
2023-12-26 21:50:52 +01:00
|
|
|
toast.success('Redirecting you to OllamaHub');
|
2023-12-15 22:54:25 +01:00
|
|
|
const url = 'https://ollamahub.com';
|
|
|
|
// const url = 'http://localhost:5173';
|
2023-12-15 01:50:54 +01:00
|
|
|
|
|
|
|
const tab = await window.open(`${url}/chats/upload`, '_blank');
|
|
|
|
window.addEventListener(
|
|
|
|
'message',
|
|
|
|
(event) => {
|
|
|
|
if (event.origin !== url) return;
|
|
|
|
if (event.data === 'loaded') {
|
2023-12-15 22:48:23 +01:00
|
|
|
tab.postMessage(
|
|
|
|
JSON.stringify({
|
|
|
|
chat: chat,
|
|
|
|
modelfiles: $modelfiles.filter((modelfile) => chat.models.includes(modelfile.tagName))
|
|
|
|
}),
|
|
|
|
'*'
|
|
|
|
);
|
2023-12-15 01:50:54 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
false
|
|
|
|
);
|
|
|
|
};
|
2024-01-01 08:13:17 +01:00
|
|
|
|
|
|
|
const downloadChat = async () => {
|
|
|
|
const chat = (await getChatById(localStorage.token, $chatId)).chat;
|
|
|
|
console.log('download', chat);
|
|
|
|
|
|
|
|
const chatText = chat.messages.reduce((a, message, i, arr) => {
|
|
|
|
return `${a}### ${message.role.toUpperCase()}\n${message.content}\n\n`;
|
|
|
|
}, '');
|
|
|
|
|
|
|
|
let blob = new Blob([chatText], {
|
|
|
|
type: 'text/plain'
|
|
|
|
});
|
|
|
|
|
|
|
|
saveAs(blob, `chat-${chat.title}.txt`);
|
|
|
|
};
|
2023-10-09 00:38:42 +02:00
|
|
|
</script>
|
|
|
|
|
2024-01-18 06:01:30 +01:00
|
|
|
<ShareChatModal bind:show={showShareChatModal} {downloadChat} {shareChat} />
|
2023-12-14 10:05:38 +01:00
|
|
|
<nav
|
|
|
|
id="nav"
|
2024-02-15 23:43:10 +01:00
|
|
|
class=" sticky py-2.5 top-0 flex flex-row justify-center bg-white/95 dark:bg-gray-900/90 dark:text-gray-200 backdrop-blur-xl z-30"
|
2023-10-09 00:38:42 +02:00
|
|
|
>
|
2024-02-15 09:34:55 +01:00
|
|
|
<div
|
2024-02-15 09:36:17 +01:00
|
|
|
class=" flex {$settings?.fullScreenMode ?? null
|
|
|
|
? 'max-w-full'
|
|
|
|
: 'max-w-3xl'} w-full mx-auto px-3"
|
2024-02-15 09:34:55 +01:00
|
|
|
>
|
2024-01-18 06:01:30 +01:00
|
|
|
<div class="flex items-center w-full max-w-full">
|
|
|
|
<div class="pr-2 self-start">
|
2023-12-14 10:05:38 +01:00
|
|
|
<button
|
2023-12-26 12:28:30 +01:00
|
|
|
id="new-chat-button"
|
2024-01-18 06:01:30 +01:00
|
|
|
class=" cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-lg transition"
|
2023-12-26 12:28:30 +01:00
|
|
|
on:click={initNewChat}
|
2023-12-14 10:05:38 +01:00
|
|
|
>
|
|
|
|
<div class=" m-auto self-center">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
fill="currentColor"
|
|
|
|
class="w-5 h-5"
|
2023-11-17 22:17:30 +01:00
|
|
|
>
|
2023-12-14 10:05:38 +01:00
|
|
|
<path
|
|
|
|
d="M5.433 13.917l1.262-3.155A4 4 0 017.58 9.42l6.92-6.918a2.121 2.121 0 013 3l-6.92 6.918c-.383.383-.84.685-1.343.886l-3.154 1.262a.5.5 0 01-.65-.65z"
|
|
|
|
/>
|
|
|
|
<path
|
|
|
|
d="M3.5 5.75c0-.69.56-1.25 1.25-1.25H10A.75.75 0 0010 3H4.75A2.75 2.75 0 002 5.75v9.5A2.75 2.75 0 004.75 18h9.5A2.75 2.75 0 0017 15.25V10a.75.75 0 00-1.5 0v5.25c0 .69-.56 1.25-1.25 1.25h-9.5c-.69 0-1.25-.56-1.25-1.25v-9.5z"
|
|
|
|
/>
|
|
|
|
</svg>
|
2023-11-17 22:17:30 +01:00
|
|
|
</div>
|
2023-12-14 10:05:38 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
2024-01-18 06:01:30 +01:00
|
|
|
<div class=" flex-1 self-center font-medium line-clamp-1">
|
|
|
|
<div>
|
2024-02-10 04:14:26 +01:00
|
|
|
{title != '' ? title : WEBUI_NAME}
|
2024-01-18 06:01:30 +01:00
|
|
|
</div>
|
2023-12-14 10:05:38 +01:00
|
|
|
</div>
|
|
|
|
|
2024-01-18 06:01:30 +01:00
|
|
|
<div class="pl-2 self-center flex items-center space-x-2">
|
2024-01-18 11:10:07 +01:00
|
|
|
{#if shareEnabled}
|
2024-02-03 23:44:49 +01:00
|
|
|
<Tags {tags} {deleteTag} {addTag} />
|
2024-01-01 08:13:17 +01:00
|
|
|
|
2023-12-14 10:05:38 +01:00
|
|
|
<button
|
2024-01-18 06:01:30 +01:00
|
|
|
class=" cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-lg transition border dark:border-gray-600"
|
2023-12-14 10:05:38 +01:00
|
|
|
on:click={async () => {
|
2024-01-18 06:01:30 +01:00
|
|
|
showShareChatModal = !showShareChatModal;
|
|
|
|
|
|
|
|
// console.log(showShareChatModal);
|
2023-12-14 10:05:38 +01:00
|
|
|
}}
|
2023-10-09 00:38:42 +02:00
|
|
|
>
|
2023-12-14 10:05:38 +01:00
|
|
|
<div class=" m-auto self-center">
|
|
|
|
<svg
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2024-01-18 06:01:30 +01:00
|
|
|
viewBox="0 0 24 24"
|
2023-12-14 10:05:38 +01:00
|
|
|
fill="currentColor"
|
|
|
|
class="w-4 h-4"
|
|
|
|
>
|
|
|
|
<path
|
2024-01-18 06:01:30 +01:00
|
|
|
fill-rule="evenodd"
|
|
|
|
d="M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755Z"
|
|
|
|
clip-rule="evenodd"
|
2023-12-14 10:05:38 +01:00
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</button>
|
2024-01-18 06:01:30 +01:00
|
|
|
{/if}
|
|
|
|
</div>
|
2023-12-14 10:05:38 +01:00
|
|
|
</div>
|
2023-10-09 00:38:42 +02:00
|
|
|
</div>
|
2023-12-14 10:05:38 +01:00
|
|
|
</nav>
|