File size: 10,456 Bytes
1095e14
 
 
2e4269d
d433b55
1095e14
 
 
 
3bd3541
2b97a5c
1095e14
 
 
2e4269d
2b97a5c
 
 
1095e14
e584c54
 
a1a6daf
 
 
 
1095e14
a1a6daf
 
 
 
2b97a5c
 
 
6bb5fe6
 
 
 
 
 
2b97a5c
 
 
1095e14
 
d433b55
1095e14
 
2b97a5c
 
 
 
 
 
 
 
 
 
 
1095e14
 
 
a4df227
 
1095e14
2b97a5c
 
 
 
1095e14
 
 
 
 
 
e584c54
1095e14
e584c54
2b97a5c
 
 
 
 
 
 
 
 
 
 
 
e584c54
 
 
1095e14
 
db63053
a1a6daf
1095e14
 
 
 
 
 
e584c54
 
 
 
 
 
 
 
 
 
1095e14
e584c54
1095e14
0890bdd
e584c54
34d155c
 
 
 
e584c54
34d155c
0890bdd
e584c54
 
 
 
 
0890bdd
 
e584c54
0890bdd
e584c54
0890bdd
 
 
 
34d155c
0890bdd
e584c54
 
 
 
1095e14
e584c54
 
 
 
 
 
 
 
0890bdd
e584c54
34d155c
 
 
 
 
 
e584c54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34d155c
e584c54
 
34d155c
 
 
 
 
 
e584c54
 
 
34d155c
e584c54
0890bdd
e584c54
 
 
1095e14
e584c54
 
 
 
34d155c
e584c54
34d155c
 
 
 
 
e584c54
34d155c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e584c54
34d155c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e584c54
34d155c
 
 
 
 
e584c54
 
 
34d155c
e584c54
1095e14
e584c54
34d155c
 
 
 
2b97a5c
34d155c
e584c54
 
 
34d155c
e584c54
 
 
 
 
 
 
 
1095e14
e584c54
 
 
1095e14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<script lang="ts">
	import { onMount } from "svelte";
	import { base } from "$app/paths";
	import { afterNavigate, goto, invalidateAll } from "$app/navigation";
	import { page } from "$app/state";
	import { useSettingsStore } from "$lib/stores/settings";
	import CarbonClose from "~icons/carbon/close";
	import CarbonArrowUpRight from "~icons/carbon/ArrowUpRight";
	import CarbonAdd from "~icons/carbon/add";
	import CarbonTextLongParagraph from "~icons/carbon/text-long-paragraph";
	import CarbonChevronLeft from "~icons/carbon/chevron-left";

	import UserIcon from "~icons/carbon/user";
	import type { LayoutData } from "../$types";
	import { error } from "$lib/stores/errors";
	import { browser } from "$app/environment";
	import { isDesktop } from "$lib/utils/isDesktop";
	import { debounce } from "$lib/utils/debounce";

	import { fly } from "svelte/transition";

	interface Props {
		data: LayoutData;
		children?: import("svelte").Snippet;
	}

	let { data, children }: Props = $props();

	let previousPage: string = $state(base);
	let assistantsSection: HTMLHeadingElement | undefined = $state();
	let showContent: boolean = $state(false);

	function checkDesktopRedirect() {
		if (
			browser &&
			isDesktop(window) &&
			page.url.pathname === `${base}/settings` &&
			!page.url.pathname.endsWith("/application")
		) {
			goto(`${base}/settings/application`);
		}
	}

	onMount(() => {
		if (page.params?.assistantId && assistantsSection) {
			assistantsSection.scrollIntoView();
		}
		// Show content when not on the root settings page
		showContent = page.url.pathname !== `${base}/settings`;
		// Initial desktop redirect check
		checkDesktopRedirect();

		// Add resize listener for desktop redirect
		if (browser) {
			const debouncedCheck = debounce(checkDesktopRedirect, 100);
			window.addEventListener("resize", debouncedCheck);
			return () => window.removeEventListener("resize", debouncedCheck);
		}
	});

	afterNavigate(({ from }) => {
		if (from?.url && !from.url.pathname.includes("settings")) {
			previousPage = from.url.toString() || previousPage || base;
		}
		// Show content when not on the root settings page
		showContent = page.url.pathname !== `${base}/settings`;
		// Check desktop redirect after navigation
		checkDesktopRedirect();
	});

	const settings = useSettingsStore();
</script>

<div
	class="mx-auto grid h-full w-full max-w-[1400px] grid-cols-1 grid-rows-[auto,1fr] content-start gap-x-6 overflow-hidden p-4 md:grid-cols-3 md:grid-rows-[auto,1fr] md:p-4"
>
	<div class="col-span-1 mb-3 flex items-center justify-between md:col-span-3 md:mb-4">
		{#if showContent && browser}
			<button
				class="btn rounded-lg md:hidden"
				aria-label="Back to menu"
				onclick={() => {
					showContent = false;
					goto(`${base}/settings`);
				}}
			>
				<CarbonChevronLeft class="text-xl text-gray-900 hover:text-black" />
			</button>
		{/if}
		<h2 class="absolute left-0 right-0 mx-auto w-fit text-center text-xl font-bold md:hidden">
			Settings
		</h2>
		<button
			class="btn rounded-lg"
			aria-label="Close settings"
			onclick={() => {
				goto(previousPage);
			}}
		>
			<CarbonClose class="text-xl text-gray-900 hover:text-black" />
		</button>
	</div>
	{#if !(showContent && browser && !isDesktop(window))}
		<div
			class="col-span-1 flex flex-col overflow-y-auto whitespace-nowrap max-md:-mx-4 max-md:h-full md:pr-6"
			class:max-md:hidden={showContent && browser}
			in:fly={{ x: -100, duration: 200 }}
			out:fly={{ x: -100, duration: 200 }}
		>
			<!-- Section Headers -->
			<h3
				class="px-4 pb-2 pt-3 text-center text-[.8rem] font-medium text-gray-800 md:px-3 md:text-left"
			>
				Models
			</h3>

			{#each data.models.filter((el) => !el.unlisted) as model}
				<button
					type="button"
					onclick={() => goto(`${base}/settings/${model.id}`)}
					class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl md:px-3
					{model.id === page.params.model ? '!bg-gray-100 !text-gray-800' : ''}"
					aria-label="Configure {model.displayName}"
				>
					<div class="mr-auto truncate">{model.displayName}</div>

					{#if $settings.customPrompts?.[model.id]}
						<CarbonTextLongParagraph
							class="size-6 rounded-md border border-gray-300 p-1 text-gray-800"
						/>
					{/if}
					{#if model.id === $settings.activeModel}
						<div
							class="rounded-lg bg-black px-2 py-1.5 text-xs font-semibold leading-none text-white"
						>
							Active
						</div>
					{/if}
				</button>
			{/each}
			{#if data.enableAssistants}
				<h3
					bind:this={assistantsSection}
					class="mt-6 px-4 pb-2 text-center text-[.8rem] font-medium text-gray-800 md:px-3 md:text-left"
				>
					Assistants
				</h3>
				<!-- My Assistants -->
				<h4
					class="px-4 pb-1 pt-2 text-center text-[.7rem] font-medium text-gray-600 md:px-3 md:text-left"
				>
					My Assistants
				</h4>

				{#each data.assistants.filter((assistant) => assistant.createdByMe) as assistant}
					<button
						type="button"
						onclick={() => goto(`${base}/settings/assistants/${assistant._id.toString()}`)}
						class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl md:px-3
						{assistant._id.toString() === page.params.assistantId ? '!bg-gray-100 !text-gray-800' : ''}"
						aria-label="Configure {assistant.name} assistant"
					>
						{#if assistant.avatar}
							<img
								src="{base}/settings/assistants/{assistant._id.toString()}/avatar.jpg?hash={assistant.avatar}"
								alt="Avatar"
								class="h-6 w-6 rounded-full"
							/>
						{:else}
							<div
								class="flex size-6 items-center justify-center rounded-full bg-gray-300 font-bold uppercase text-gray-500"
							>
								{assistant.name[0]}
							</div>
						{/if}
						<div class="truncate text-gray-900">{assistant.name}</div>
						{#if assistant._id.toString() === $settings.activeModel}
							<div
								class="ml-auto rounded-lg bg-black px-2 py-1.5 text-xs font-semibold leading-none text-white"
							>
								Active
							</div>
						{/if}
					</button>
				{/each}
				{#if !data.loginEnabled || (data.loginEnabled && !!data.user)}
					<button
						type="button"
						onclick={() => goto(`${base}/settings/assistants/new`)}
						class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl md:px-3
						{page.url.pathname === `${base}/settings/assistants/new` ? '!bg-gray-100 !text-gray-800' : ''}"
						aria-label="Create new assistant"
					>
						<CarbonAdd />
						<div class="truncate">Create new assistant</div>
					</button>
				{/if}

				<!-- Other Assistants -->
				<h4
					class="mt-4 px-4 pb-1 pt-2 text-center text-[.7rem] font-medium text-gray-600 md:px-3 md:text-left"
				>
					Other Assistants
				</h4>

				{#each data.assistants.filter((assistant) => !assistant.createdByMe) as assistant}
					<div class="group relative">
						<button
							type="button"
							onclick={() => goto(`${base}/settings/assistants/${assistant._id.toString()}`)}
							class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl md:px-3
							{assistant._id.toString() === page.params.assistantId ? '!bg-gray-100 !text-gray-800' : ''}"
							aria-label="Configure {assistant.name} assistant"
						>
							{#if assistant.avatar}
								<img
									src="{base}/settings/assistants/{assistant._id.toString()}/avatar.jpg?hash={assistant.avatar}"
									alt="Avatar"
									class="h-6 w-6 rounded-full"
								/>
							{:else}
								<div
									class="flex size-6 items-center justify-center rounded-full bg-gray-300 font-bold uppercase text-gray-500"
								>
									{assistant.name[0]}
								</div>
							{/if}
							<div class="truncate">{assistant.name}</div>
							{#if assistant._id.toString() === $settings.activeModel}
								<div
									class="ml-auto rounded-lg bg-black px-2 py-1.5 text-xs font-semibold leading-none text-white"
								>
									Active
								</div>
							{/if}
						</button>
						<div class="absolute right-2 top-1/2 -translate-y-1/2">
							<button
								type="button"
								aria-label="Remove assistant from your list"
								class={[
									"rounded-full p-1 text-xs hover:bg-gray-500 hover:bg-opacity-20",
									assistant._id.toString() === page.params.assistantId
										? "block"
										: "hidden group-hover:block",
									assistant._id.toString() !== $settings.activeModel && "ml-auto",
								]}
								onclick={(event) => {
									event.stopPropagation();
									fetch(`${base}/api/assistant/${assistant._id}/subscribe`, {
										method: "DELETE",
									}).then((r) => {
										if (r.ok) {
											if (assistant._id.toString() === page.params.assistantId) {
												goto(`${base}/settings`, { invalidateAll: true });
											} else {
												invalidateAll();
											}
										} else {
											console.error(r);
											$error = r.statusText;
										}
									});
								}}
							>
								<CarbonClose class="size-4 text-gray-500" />
							</button>
						</div>
					</div>
				{/each}
				<button
					type="button"
					onclick={() => goto(`${base}/assistants`)}
					class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 md:rounded-xl md:px-3"
					aria-label="Browse all assistants"
				>
					<CarbonArrowUpRight class="mr-1.5 shrink-0 text-xs" />
					<div class="truncate">Browse Assistants</div>
				</button>
			{/if}

			<div class="my-2 mt-auto w-full border-b border-gray-200"></div>
			<button
				type="button"
				onclick={() => goto(`${base}/settings/application`)}
				class="group flex h-10 w-full flex-none items-center gap-2 px-4 text-sm text-gray-500 hover:bg-gray-100 max-md:order-first md:rounded-xl md:px-3
				{page.url.pathname === `${base}/settings/application` ? '!bg-gray-100 !text-gray-800' : ''}"
				aria-label="Configure application settings"
			>
				<UserIcon class="text-sm" />
				Application Settings
			</button>
		</div>
	{/if}
	{#if showContent}
		<div
			class="col-span-1 w-full overflow-y-auto overflow-x-clip px-1 md:col-span-2 md:row-span-2"
			class:max-md:hidden={!showContent && browser}
			in:fly={{ x: 100, duration: 200 }}
			out:fly={{ x: 100, duration: 200 }}
		>
			{@render children?.()}
		</div>
	{/if}
</div>