Spaces:
Build error
Build error
File size: 3,691 Bytes
0c4cf03 |
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 |
<script lang="ts">
import type { WebSearchMessage } from "$lib/types/WebSearch";
import CarbonCaretRight from "~icons/carbon/caret-right";
import CarbonCheckmark from "~icons/carbon/checkmark-filled";
import CarbonError from "~icons/carbon/error-filled";
import EosIconsLoading from "~icons/eos-icons/loading";
import { base } from "$app/paths";
import { onMount } from "svelte";
export let loading = false;
export let classNames = "";
export let webSearchId: string | undefined;
export let webSearchMessages: WebSearchMessage[] = [];
let detailsOpen: boolean;
let error: boolean;
onMount(() => {
if (webSearchMessages.length === 0 && webSearchId) {
fetch(`${base}/search/${webSearchId}`)
.then((res) => res.json())
.then((res) => {
webSearchMessages = [...res.messages, { type: "result", id: webSearchId }];
})
.catch((err) => console.log(err));
}
});
$: error = webSearchMessages.some((message) => message.type === "error");
</script>
<details
class="details flex w-fit rounded-xl border border-gray-200 bg-white shadow-sm dark:border-gray-800 dark:bg-gray-900 {classNames}"
on:toggle={() => {
if (webSearchMessages.length === 0 && webSearchId) {
fetch(`${base}/search/${webSearchId}`)
.then((res) => res.json())
.then((res) => {
webSearchMessages = [...res.messages, { type: "result", id: webSearchId }];
})
.catch((err) => console.log(err));
}
}}
bind:open={detailsOpen}
>
<summary
class="align-center flex cursor-pointer select-none list-none py-1 pl-2.5 pr-2 align-text-top transition-all"
>
{#if error}
<CarbonError class="my-auto text-red-700 dark:text-red-500" />
{:else if loading}
<EosIconsLoading class="my-auto text-gray-500" />
{:else}
<CarbonCheckmark class="my-auto text-gray-500" />
{/if}
<span class="px-2 font-medium" class:text-red-700={error} class:dark:text-red-500={error}
>Web search
</span>
<div class="my-auto transition-all" class:rotate-90={detailsOpen}>
<CarbonCaretRight />
</div>
</summary>
<div class="content p-5 pb-1">
{#if webSearchMessages.length === 0}
<div class="mx-auto w-fit">
<EosIconsLoading class="mb-3 h-10 w-10" />
</div>
{:else}
<ol class="relative border-l border-gray-200 dark:border-gray-600">
{#each webSearchMessages as message}
{#if message.type === "update"}
<li class="mb-4 ml-4">
<div
class="h-3 w-3 -translate-x-[1.4rem] rounded-full bg-gray-200 dark:bg-gray-600"
/>
<h3 class="text-md -translate-y-[1.1rem] text-gray-800 dark:text-gray-100">
{message.message}
</h3>
{#if message.args}
<p
class="mb-4 -translate-y-[1.1rem] font-normal text-gray-500 dark:text-gray-400 "
>
{message.args}
</p>
{/if}
</li>
{:else if message.type === "error"}
<li class="mb-4 ml-4">
<div
class="h-3 w-3 -translate-x-[1.4rem] rounded-full text-red-700 dark:text-red-500"
>
<CarbonError class="h-3 w-3" />
</div>
<h3 class="text-md -translate-y-[1.1rem] text-red-700 dark:text-red-500">
{message.message}
</h3>
{#if message.args}
<p class="mb-4 -translate-y-[1.1rem] font-normal text-gray-500 dark:text-gray-400 ">
{message.args}
</p>
{/if}
</li>
{/if}
<p />
{/each}
</ol>
{/if}
</div>
</details>
<style>
@keyframes grow {
0% {
font-size: 0;
opacity: 0;
}
30% {
font-size: 1em;
opacity: 0;
}
100% {
opacity: 1;
}
}
.details[open] .content {
animation-name: grow;
animation-duration: 300ms;
animation-delay: 0ms;
}
</style>
|