open-webui/src/lib/components/chat/ShareChatModal.svelte

159 lines
4.2 KiB
Svelte
Raw Normal View History

2024-01-18 05:01:30 +00:00
<script lang="ts">
2024-04-02 13:42:57 +00:00
import { getContext, onMount } from 'svelte';
import { toast } from 'svelte-sonner';
2024-04-02 14:16:25 +00:00
import { deleteSharedChatById, getChatById, shareChatById } from '$lib/apis/chats';
2024-04-02 13:42:57 +00:00
import { chatId, modelfiles } from '$lib/stores';
import { copyToClipboard } from '$lib/utils';
2024-01-18 05:01:30 +00:00
import Modal from '../common/Modal.svelte';
2024-04-02 13:12:45 +00:00
import Link from '../icons/Link.svelte';
2024-01-18 05:01:30 +00:00
2024-04-02 13:42:57 +00:00
let chat = null;
2024-04-19 11:34:55 +00:00
let shareUrl = null;
const i18n = getContext('i18n');
2024-04-02 13:42:57 +00:00
const shareLocalChat = async () => {
const _chat = chat;
2024-04-02 14:42:37 +00:00
const sharedChat = await shareChatById(localStorage.token, $chatId);
2024-04-19 11:34:55 +00:00
shareUrl = `${window.location.origin}/s/${sharedChat.id}`;
console.log(shareUrl);
2024-04-02 14:16:25 +00:00
chat = await getChatById(localStorage.token, $chatId);
2024-04-19 11:34:55 +00:00
return shareUrl;
2024-04-02 13:42:57 +00:00
};
const shareChat = async () => {
const _chat = chat.chat;
console.log('share', _chat);
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
const url = 'https://openwebui.com';
// const url = 'http://localhost:5173';
const tab = await window.open(`${url}/chats/upload`, '_blank');
window.addEventListener(
'message',
(event) => {
if (event.origin !== url) return;
if (event.data === 'loaded') {
tab.postMessage(
JSON.stringify({
chat: _chat,
modelfiles: $modelfiles.filter((modelfile) =>
_chat.models.includes(modelfile.tagName)
)
}),
'*'
);
}
},
false
);
};
2024-01-18 05:01:30 +00:00
export let show = false;
2024-04-02 13:42:57 +00:00
2024-04-04 02:45:08 +00:00
$: if (show) {
(async () => {
if ($chatId) {
chat = await getChatById(localStorage.token, $chatId);
} else {
chat = null;
console.log(chat);
}
})();
}
2024-01-18 05:01:30 +00:00
</script>
2024-04-02 13:12:45 +00:00
<Modal bind:show size="sm">
<div>
<div class=" flex justify-between dark:text-gray-300 px-5 py-4">
<div class=" text-lg font-medium self-center">{$i18n.t('Share Chat')}</div>
2024-01-18 05:01:30 +00:00
<button
2024-04-02 13:12:45 +00:00
class="self-center"
2024-01-18 05:01:30 +00:00
on:click={() => {
show = false;
}}
>
2024-04-02 13:12:45 +00:00
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="w-5 h-5"
>
<path
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
/>
</svg>
2024-01-18 05:01:30 +00:00
</button>
</div>
2024-04-02 13:12:45 +00:00
<hr class=" dark:border-gray-800" />
2024-04-02 14:16:25 +00:00
{#if chat}
<div class="px-4 pt-4 pb-5 w-full flex flex-col justify-center">
<div class=" text-sm dark:text-gray-300 mb-1">
{#if chat.share_id}
<a href="/s/{chat.share_id}" target="_blank"
>You have shared this chat <span class=" underline">before</span>.</a
2024-04-02 13:12:45 +00:00
>
2024-04-02 14:16:25 +00:00
Click here to
2024-04-02 13:12:45 +00:00
<button
2024-04-02 14:16:25 +00:00
class="underline"
on:click={async () => {
const res = await deleteSharedChatById(localStorage.token, $chatId);
if (res) {
chat = await getChatById(localStorage.token, $chatId);
}
}}>delete this link</button
> and create a new shared link.
{:else}
2024-04-02 15:18:47 +00:00
Messages you send after creating your link won't be shared. Users with the URL will be
2024-04-02 14:16:25 +00:00
able to view the shared chat.
{/if}
</div>
<div class="flex justify-end">
<div class="flex flex-col items-end space-x-1 mt-1.5">
<div class="flex gap-1">
<button
class=" self-center px-3.5 py-2 rounded-xl text-sm font-medium bg-gray-100 hover:bg-gray-200 text-gray-800 dark:bg-gray-850 dark:hover:bg-gray-800 dark:text-white"
type="button"
on:click={() => {
shareChat();
show = false;
}}
>
{$i18n.t('Share to OpenWebUI Community')}
</button>
<button
class=" self-center flex items-center gap-1 px-3.5 py-2 rounded-xl text-sm font-medium bg-emerald-600 hover:bg-emerald-500 text-white"
type="button"
2024-04-19 11:34:55 +00:00
on:pointerdown={() => {
2024-04-02 14:16:25 +00:00
shareLocalChat();
2024-04-19 11:34:55 +00:00
}}
on:click={async () => {
copyToClipboard(shareUrl);
toast.success($i18n.t('Copied shared chat URL to clipboard!'));
2024-04-02 14:16:25 +00:00
show = false;
}}
>
<Link />
{#if chat.share_id}
{$i18n.t('Update and Copy Link')}
{:else}
{$i18n.t('Copy Link')}
{/if}
</button>
</div>
2024-04-02 13:12:45 +00:00
</div>
</div>
</div>
2024-04-02 14:16:25 +00:00
{/if}
2024-01-18 05:01:30 +00:00
</div>
</Modal>