"docs/en/vscode:/vscode.git/clone" did not exist on "4b1c76864cfed56b7dcf501f5715c85193f65134"
Navbar.svelte 4.33 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
<script lang="ts">
2
3
4
5
	import toast from 'svelte-french-toast';
	import fileSaver from 'file-saver';
	const { saveAs } = fileSaver;

Timothy J. Baek's avatar
Timothy J. Baek committed
6
	import { getChatById } from '$lib/apis/chats';
Timothy J. Baek's avatar
Timothy J. Baek committed
7
	import { chatId, modelfiles } from '$lib/stores';
8

9
	export let initNewChat: Function;
10
	export let title: string = 'Ollama Web UI';
Timothy J. Baek's avatar
Timothy J. Baek committed
11
	export let shareEnabled: boolean = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
12
13

	const shareChat = async () => {
Timothy J. Baek's avatar
Timothy J. Baek committed
14
		const chat = (await getChatById(localStorage.token, $chatId)).chat;
Timothy J. Baek's avatar
Timothy J. Baek committed
15
16
		console.log('share', chat);

Timothy J. Baek's avatar
Timothy J. Baek committed
17
		toast.success('Redirecting you to OllamaHub');
18
19
		const url = 'https://ollamahub.com';
		// const url = 'http://localhost:5173';
Timothy J. Baek's avatar
Timothy J. Baek committed
20
21
22
23
24
25
26

		const tab = await window.open(`${url}/chats/upload`, '_blank');
		window.addEventListener(
			'message',
			(event) => {
				if (event.origin !== url) return;
				if (event.data === 'loaded') {
27
28
29
30
31
32
33
					tab.postMessage(
						JSON.stringify({
							chat: chat,
							modelfiles: $modelfiles.filter((modelfile) => chat.models.includes(modelfile.tagName))
						}),
						'*'
					);
Timothy J. Baek's avatar
Timothy J. Baek committed
34
35
36
37
38
				}
			},
			false
		);
	};
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

	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`);
	};
Timothy J. Baek's avatar
Timothy J. Baek committed
54
55
</script>

Timothy J. Baek's avatar
Timothy J. Baek committed
56
57
58
<nav
	id="nav"
	class=" fixed py-2.5 top-0 flex flex-row justify-center bg-white/95 dark:bg-gray-800/90 dark:text-gray-200 backdrop-blur-xl w-screen z-30"
Timothy J. Baek's avatar
Timothy J. Baek committed
59
>
Timothy J. Baek's avatar
Timothy J. Baek committed
60
61
62
63
	<div class=" flex max-w-3xl w-full mx-auto px-3">
		<div class="flex w-full max-w-full">
			<div class="pr-2 self-center">
				<button
64
					id="new-chat-button"
Timothy J. Baek's avatar
Timothy J. Baek committed
65
					class=" cursor-pointer p-1 flex dark:hover:bg-gray-700 rounded-lg transition"
66
					on:click={initNewChat}
Timothy J. Baek's avatar
Timothy J. Baek committed
67
68
69
70
71
72
73
				>
					<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"
Timothy J. Baek's avatar
Timothy J. Baek committed
74
						>
Timothy J. Baek's avatar
Timothy J. Baek committed
75
76
77
78
79
80
81
							<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>
Timothy J. Baek's avatar
Timothy J. Baek committed
82
					</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
83
84
85
86
87
88
89
				</button>
			</div>
			<div class=" flex-1 self-center font-medium text-ellipsis whitespace-nowrap overflow-hidden">
				{title != '' ? title : 'Ollama Web UI'}
			</div>

			{#if shareEnabled}
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
				<div class="pl-2 flex space-x-1.5">
					<button
						class=" cursor-pointer p-2 flex dark:hover:bg-gray-700 rounded-lg transition border dark:border-gray-600"
						on:click={async () => {
							downloadChat();
						}}
					>
						<div class=" m-auto self-center">
							<svg
								xmlns="http://www.w3.org/2000/svg"
								viewBox="0 0 16 16"
								fill="currentColor"
								class="w-4 h-4"
							>
								<path
									d="M8.75 2.75a.75.75 0 0 0-1.5 0v5.69L5.03 6.22a.75.75 0 0 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0-1.06-1.06L8.75 8.44V2.75Z"
								/>
								<path
									d="M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"
								/>
							</svg>
						</div>
					</button>

Timothy J. Baek's avatar
Timothy J. Baek committed
114
115
116
					<button
						class=" cursor-pointer p-2 flex dark:hover:bg-gray-700 rounded-lg transition border dark:border-gray-600"
						on:click={async () => {
Timothy J. Baek's avatar
Timothy J. Baek committed
117
							shareChat();
Timothy J. Baek's avatar
Timothy J. Baek committed
118
						}}
Timothy J. Baek's avatar
Timothy J. Baek committed
119
					>
Timothy J. Baek's avatar
Timothy J. Baek committed
120
121
122
						<div class=" m-auto self-center">
							<svg
								xmlns="http://www.w3.org/2000/svg"
123
								viewBox="0 0 16 16"
Timothy J. Baek's avatar
Timothy J. Baek committed
124
125
126
127
								fill="currentColor"
								class="w-4 h-4"
							>
								<path
128
									d="M7.25 10.25a.75.75 0 0 0 1.5 0V4.56l2.22 2.22a.75.75 0 1 0 1.06-1.06l-3.5-3.5a.75.75 0 0 0-1.06 0l-3.5 3.5a.75.75 0 0 0 1.06 1.06l2.22-2.22v5.69Z"
Timothy J. Baek's avatar
Timothy J. Baek committed
129
130
								/>
								<path
131
									d="M3.5 9.75a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 14h6.5A2.75 2.75 0 0 0 14 11.25v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1.5Z"
Timothy J. Baek's avatar
Timothy J. Baek committed
132
133
134
135
								/>
							</svg>
						</div>
					</button>
Timothy J. Baek's avatar
Timothy J. Baek committed
136
				</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
137
138
			{/if}
		</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
139
	</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
140
</nav>