File size: 3,567 Bytes
0b5f169
af93b45
4b8b411
60216ec
4b8b411
d47c403
60216ec
 
e63e7c7
7b1d26a
1754cbb
d37b3c2
58190c6
d37b3c2
 
 
 
d4fcb0f
0bcf467
d37b3c2
60216ec
d37b3c2
 
 
 
 
 
 
 
60216ec
d37b3c2
 
d47c403
58190c6
 
 
 
 
 
 
 
 
 
0b5f169
 
d37b3c2
 
 
 
 
 
 
0b5f169
60216ec
0b5f169
77100da
0b5f169
 
 
7965df6
58190c6
0b5f169
 
 
 
 
 
d47c403
 
 
 
 
 
 
 
0b5f169
d47c403
 
 
 
 
 
 
 
0b5f169
 
 
 
 
 
d47c403
60216ec
1754cbb
 
ad1d85c
60216ec
 
ad1d85c
1754cbb
7b1d26a
60216ec
 
 
7b1d26a
1754cbb
7b1d26a
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
<script lang="ts">
	import type { ModelEntryWithTokenizer } from "./types";

	import { createEventDispatcher } from "svelte";

	import { FEATUED_MODELS_IDS } from "./inferencePlaygroundUtils";
	import IconSearch from "../Icons/IconSearch.svelte";
	import IconStar from "../Icons/IconStar.svelte";

	export let models: ModelEntryWithTokenizer[];

	let backdropEl: HTMLDivElement;
	let query = "";

	const dispatch = createEventDispatcher<{ modelSelected: string; close: void }>();

	function handleKeydown(event: KeyboardEvent) {
		const { key } = event;
		if (key === "Escape") {
			event.preventDefault();
			dispatch("close");
		}
	}

	function handleBackdropClick(event: MouseEvent) {
		if (window?.getSelection()?.toString()) {
			return;
		}
		if (event.target === backdropEl) {
			dispatch("close");
		}
	}

	$: featuredModels = models.filter(m =>
		query
			? FEATUED_MODELS_IDS.includes(m.id) && m.id.toLocaleLowerCase().includes(query.toLocaleLowerCase().trim())
			: FEATUED_MODELS_IDS.includes(m.id)
	);
	$: otherModels = models.filter(m =>
		query
			? !FEATUED_MODELS_IDS.includes(m.id) && m.id.toLocaleLowerCase().includes(query.toLocaleLowerCase().trim())
			: !FEATUED_MODELS_IDS.includes(m.id)
	);
</script>

<svelte:window on:keydown={handleKeydown} />

<div
	class="fixed inset-0 z-10 flex h-screen items-start justify-center bg-black/85 pt-32"
	bind:this={backdropEl}
	on:click|stopPropagation={handleBackdropClick}
>
	<div class="flex w-full max-w-[600px] items-start justify-center p-10">
		<div class="flex h-full w-full flex-col overflow-hidden rounded-lg border bg-white text-gray-900 shadow-md">
			<div class="flex items-center border-b px-3">
				<IconSearch classNames="mr-2 text-sm" />
				<input
					autofocus
					class="flex h-10 w-full rounded-md bg-transparent py-3 text-sm placeholder-gray-400 outline-none"
					placeholder="Search models ..."
					bind:value={query}
				/>
			</div>
			<div class="max-h-[300px] overflow-y-auto overflow-x-hidden">
				<div class="p-1">
					<div class="px-2 py-1.5 text-xs font-medium text-gray-500">Trending</div>
					<div>
						{#each featuredModels as model}
							{@const [nameSpace, modelName] = model.id.split("/")}
							<button
								class="flex cursor-pointer items-center px-2 py-1.5 text-sm hover:bg-gray-100"
								on:click={() => {
									dispatch("modelSelected", model.id);
									dispatch("close");
								}}
							>
								<IconStar classNames="lucide lucide-star mr-2 h-4 w-4 text-yellow-400" />
								<span class="inline-flex items-center"
									><span class="text-gray-500">{nameSpace}</span><span class="mx-1 text-black">/</span><span
										class="text-black">{modelName}</span
									></span
								>
							</button>
						{/each}
					</div>
				</div>
				<div class="mx-1 h-px bg-gray-200"></div>
				<div class="p-1">
					<div class="px-2 py-1.5 text-xs font-medium text-gray-500">Other Models</div>
					<div>
						{#each otherModels as model}
							{@const [nameSpace, modelName] = model.id.split("/")}
							<button
								class="flex cursor-pointer items-center px-2 py-1.5 text-sm hover:bg-gray-100"
								on:click={() => {
									dispatch("modelSelected", model.id);
									dispatch("close");
								}}
							>
								<span class="inline-flex items-center"
									><span class="text-gray-500">{nameSpace}</span><span class="mx-1 text-black">/</span><span
										class="text-black">{modelName}</span
									></span
								>
							</button>
						{/each}
					</div>
				</div>
			</div>
		</div>
	</div>
</div>