File size: 5,169 Bytes
0b5f169
2087f3e
4b8b411
2087f3e
4b8b411
2087f3e
9b4caaa
7357f85
2087f3e
0a59c60
 
e63e7c7
936176c
2087f3e
 
936176c
 
 
2087f3e
1754cbb
936176c
2087f3e
936176c
 
 
d37b3c2
2087f3e
 
 
 
 
 
 
39318e7
2087f3e
 
 
 
 
 
 
 
 
 
 
 
 
 
39318e7
2087f3e
003aab5
2087f3e
 
 
 
0a59c60
2087f3e
 
 
 
 
 
 
65131f6
2087f3e
 
65131f6
2087f3e
 
65131f6
2087f3e
 
 
65131f6
 
2087f3e
65131f6
2087f3e
 
65131f6
 
 
2087f3e
 
d37b3c2
 
 
936176c
d37b3c2
 
 
 
2087f3e
d37b3c2
 
0b5f169
 
936176c
d37b3c2
936176c
 
d37b3c2
 
 
936176c
d37b3c2
73b6f4f
f250f57
 
 
 
 
64cfbce
 
 
0b5f169
2087f3e
8c5a2cf
7965df6
39318e7
0b5f169
 
73b6f4f
2087f3e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24e0413
2087f3e
 
 
 
 
24e0413
0b5f169
 
 
 
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
<script lang="ts">
	import type { Conversation, ModelWithTokenizer } from "$lib/types.js";

	import { tick } from "svelte";

	import { autofocus } from "$lib/actions/autofocus.js";
	import { models } from "$lib/state/models.svelte.js";
	import fuzzysearch from "$lib/utils/search.js";
	import { watch } from "runed";
	import IconSearch from "~icons/carbon/search";
	import IconStar from "~icons/carbon/star";

	interface Props {
		onModelSelect?: (model: string) => void;
		onClose?: () => void;
		conversation: Conversation;
	}

	let { onModelSelect, onClose, conversation }: Props = $props();

	let backdropEl = $state<HTMLDivElement>();
	let highlightIdx = $state(-1);
	let ignoreCursorHighlight = $state(false);
	let containerEl = $state<HTMLDivElement>();
	let query = $state("");

	const trending = $derived(fuzzysearch({ needle: query, haystack: models.trending, property: "id" }));
	const other = $derived(fuzzysearch({ needle: query, haystack: models.nonTrending, property: "id" }));
	const queried = $derived(trending.concat(other));
	function getModelIdx(model: ModelWithTokenizer) {
		return queried.findIndex(m => m.id === model.id);
	}
	const highlighted = $derived(queried[highlightIdx]);

	watch(
		() => queried,
		(curr, prev) => {
			const prevModel = prev?.[highlightIdx];
			if (prevModel) {
				// maintain model selection
				highlightIdx = Math.max(
					0,
					curr.findIndex(model => model.id === prevModel?.id)
				);
			} else {
				highlightIdx = curr.findIndex(model => model.id === conversation.model.id);
			}
			scrollToResult();
		}
	);

	function selectModel(model: ModelWithTokenizer) {
		onModelSelect?.(model.id);
		onClose?.();
	}

	function handleKeydown(e: KeyboardEvent) {
		if (e.key === "Escape") {
			onClose?.();
		} else if (e.key === "Enter") {
			if (highlighted) selectModel(highlighted);
		} else if (e.key === "ArrowUp") {
			if (highlightIdx > 0) highlightIdx--;
			ignoreCursorHighlight = true;
		} else if (e.key === "ArrowDown") {
			if (highlightIdx < queried.length - 1) highlightIdx++;
			ignoreCursorHighlight = true;
		} else {
			return;
		}
		e.preventDefault();

		scrollToResult();
	}

	async function scrollToResult() {
		await tick();
		const highlightedEl = document.querySelector("[data-model][data-highlighted]");
		highlightedEl?.scrollIntoView({ block: "nearest" });
	}

	function highlightRow(idx: number) {
		if (ignoreCursorHighlight) return;
		highlightIdx = idx;
	}

	function handleBackdropClick(event: MouseEvent) {
		event.stopPropagation();
		if (window?.getSelection()?.toString()) {
			return;
		}
		if (event.target === backdropEl) {
			onClose?.();
		}
	}
</script>

<svelte:window onkeydown={handleKeydown} onmousemove={() => (ignoreCursorHighlight = false)} />

<!-- svelte-ignore a11y_no_static_element_interactions -->
<!-- svelte-ignore a11y_click_events_have_key_events -->
<div
	class="fixed inset-0 z-10 flex h-screen items-start justify-center bg-black/85 pt-32"
	bind:this={backdropEl}
	onclick={handleBackdropClick}
>
	<div class="flex w-full max-w-[600px] items-start justify-center overflow-hidden p-10 text-left whitespace-nowrap">
		<div
			class="flex h-full w-full flex-col overflow-hidden rounded-lg border bg-white text-gray-900 shadow-md dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"
			bind:this={containerEl}
		>
			<div class="flex items-center border-b px-3 dark:border-gray-800">
				<div class="mr-2 text-sm">
					<IconSearch />
				</div>
				<input
					use:autofocus
					class="flex h-10 w-full rounded-md bg-transparent py-3 text-sm placeholder-gray-400 outline-hidden"
					placeholder="Search models ..."
					bind:value={query}
				/>
			</div>
			<div class="max-h-[300px] overflow-x-hidden overflow-y-auto">
				{#snippet modelEntry(model: ModelWithTokenizer, trending?: boolean)}
					{@const idx = getModelIdx(model)}
					{@const [nameSpace, modelName] = model.id.split("/")}
					<button
						class="flex w-full cursor-pointer items-center px-2 py-1.5 text-sm
						data-[highlighted]:bg-gray-100 data-[highlighted]:dark:bg-gray-800"
						data-highlighted={highlightIdx === idx ? true : undefined}
						data-model
						onmouseenter={() => highlightRow(idx)}
						onclick={() => {
							onModelSelect?.(model.id);
							onClose?.();
						}}
					>
						{#if trending}
							<div class="lucide lucide-star mr-1.5 size-4 text-yellow-400">
								<IconStar />
							</div>
						{/if}
						<span class="inline-flex items-center"
							><span class="text-gray-500 dark:text-gray-400">{nameSpace}</span><span
								class="mx-1 text-gray-300 dark:text-gray-700">/</span
							><span class="text-black dark:text-white">{modelName}</span></span
						>
					</button>
				{/snippet}
				{#if trending.length > 0}
					<div class="px-2 py-1.5 text-xs font-medium text-gray-500">Trending</div>
					{#each trending as model}
						{@render modelEntry(model, true)}
					{/each}
				{/if}
				{#if other.length > 0}
					<div class="px-2 py-1.5 text-xs font-medium text-gray-500">Other models</div>
					{#each other as model}
						{@render modelEntry(model, false)}
					{/each}
				{/if}
			</div>
		</div>
	</div>
</div>