Suggestions.svelte 1.77 KB
Newer Older
1
2
<script lang="ts">
	export let submitPrompt: Function;
3
	export let suggestionPrompts = [];
4
5
6
7
8
9
10

	let prompts = [];

	$: prompts =
		suggestionPrompts.length <= 4
			? suggestionPrompts
			: suggestionPrompts.sort(() => Math.random() - 0.5).slice(0, 4);
11
12
</script>

Timothy J. Baek's avatar
Timothy J. Baek committed
13
14
15
16
17
<div class=" mb-3 md:p-1 text-left w-full">
	<div class=" flex flex-wrap-reverse px-2 text-left">
		{#each prompts as prompt, promptIdx}
			<div
				class="{promptIdx > 1 ? 'hidden sm:inline-flex' : ''} basis-full sm:basis-1/2 p-[5px] px-1"
18
			>
Timothy J. Baek's avatar
Timothy J. Baek committed
19
20
21
22
23
				<button
					class=" flex-1 flex justify-between w-full h-full px-4 py-2.5 bg-gray-50 hover:bg-gray-100 dark:bg-gray-850 dark:hover:bg-gray-800 rounded-2xl transition group"
					on:click={() => {
						submitPrompt(prompt.content);
					}}
24
				>
Timothy J. Baek's avatar
Timothy J. Baek committed
25
26
27
28
29
30
31
32
33
34
35
36
37
					<div class="flex flex-col text-left self-center">
						{#if prompt.title && prompt.title[0] !== ''}
							<div class="text-sm font-medium dark:text-gray-300">{prompt.title[0]}</div>
							<div class="text-sm text-gray-500 line-clamp-1">{prompt.title[1]}</div>
						{:else}
							<div class=" self-center text-sm font-medium dark:text-gray-300 line-clamp-2">
								{prompt.content}
							</div>
						{/if}
					</div>

					<div
						class="self-center p-1 rounded-lg text-gray-50 group-hover:text-gray-800 dark:text-gray-850 dark:group-hover:text-gray-100 transition"
38
					>
Timothy J. Baek's avatar
Timothy J. Baek committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
						<svg
							xmlns="http://www.w3.org/2000/svg"
							viewBox="0 0 16 16"
							fill="currentColor"
							class="w-4 h-4"
						>
							<path
								fill-rule="evenodd"
								d="M8 14a.75.75 0 0 1-.75-.75V4.56L4.03 7.78a.75.75 0 0 1-1.06-1.06l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.75 4.56v8.69A.75.75 0 0 1 8 14Z"
								clip-rule="evenodd"
							/>
						</svg>
					</div>
				</button>
			</div>
		{/each}
	</div>
56
</div>