ShareChatModal.svelte 4.97 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
<script lang="ts">
Timothy J. Baek's avatar
Timothy J. Baek committed
2
3
4
5
6
7
	import { getContext, onMount } from 'svelte';

	import fileSaver from 'file-saver';
	const { saveAs } = fileSaver;

	import { toast } from 'svelte-sonner';
8
	import { deleteSharedChatById, getChatById, shareChatById } from '$lib/apis/chats';
Timothy J. Baek's avatar
Timothy J. Baek committed
9
10
11
	import { chatId, modelfiles } from '$lib/stores';
	import { copyToClipboard } from '$lib/utils';

Timothy J. Baek's avatar
Timothy J. Baek committed
12
	import Modal from '../common/Modal.svelte';
13
	import Link from '../icons/Link.svelte';
Timothy J. Baek's avatar
Timothy J. Baek committed
14

Timothy J. Baek's avatar
Timothy J. Baek committed
15
	let chat = null;
16
17
	const i18n = getContext('i18n');

Timothy J. Baek's avatar
Timothy J. Baek committed
18
19
20
21
22
23
24
25
26
27
28
29
30
	const shareLocalChat = async () => {
		const _chat = chat;

		let chatShareUrl = '';
		if (_chat.share_id) {
			chatShareUrl = `${window.location.origin}/s/${_chat.share_id}`;
		} else {
			const sharedChat = await shareChatById(localStorage.token, $chatId);
			chatShareUrl = `${window.location.origin}/s/${sharedChat.id}`;
		}

		toast.success($i18n.t('Copied shared conversation URL to clipboard!'));
		copyToClipboard(chatShareUrl);
31
		chat = await getChatById(localStorage.token, $chatId);
Timothy J. Baek's avatar
Timothy J. Baek committed
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
	};

	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
		);
	};

	const downloadChat = async () => {
		const _chat = chat.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`);
	};
Timothy J. Baek's avatar
Timothy J. Baek committed
77
78

	export let show = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
79
80
81

	onMount(async () => {
		chat = await getChatById(localStorage.token, $chatId);
82
		console.log(chat);
Timothy J. Baek's avatar
Timothy J. Baek committed
83
	});
Timothy J. Baek's avatar
Timothy J. Baek committed
84
85
</script>

86
87
88
89
<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>
Timothy J. Baek's avatar
Timothy J. Baek committed
90
			<button
91
				class="self-center"
Timothy J. Baek's avatar
Timothy J. Baek committed
92
93
94
95
				on:click={() => {
					show = false;
				}}
			>
96
97
98
99
100
101
102
103
104
105
				<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>
Timothy J. Baek's avatar
Timothy J. Baek committed
106
107
			</button>
		</div>
108
109
		<hr class=" dark:border-gray-800" />

110
111
112
113
114
115
		{#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
116
						>
117
						Click here to
118
						<button
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
							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}
						Messages you send after creating your link won't be shared. Anyone with the URL will be
						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"
								on:click={() => {
									shareLocalChat();
									show = false;
								}}
							>
								<Link />

								{#if chat.share_id}
									{$i18n.t('Update and Copy Link')}
								{:else}
									{$i18n.t('Copy Link')}
								{/if}
							</button>
						</div>
						<div class="flex gap-1 mt-1.5">
							<div class=" self-center text-gray-400 text-xs font-medium">{$i18n.t('or')}</div>
							<button
								class=" text-right rounded-full text-xs font-medium text-gray-700 dark:text-gray-500 underline"
								type="button"
								on:click={() => {
									downloadChat();
									show = false;
								}}
							>
								{$i18n.t('Download as a File')}
							</button>
						</div>
178
179
180
					</div>
				</div>
			</div>
181
		{/if}
Timothy J. Baek's avatar
Timothy J. Baek committed
182
183
	</div>
</Modal>