Spaces:
Runtime error
Runtime error
File size: 7,808 Bytes
f48efbb 28faefd 058d10c 899d9c6 427a3a2 899d9c6 427a3a2 058d10c 6b57de3 f36471e 6b57de3 427a3a2 f48efbb 899d9c6 f48efbb f36471e f48efbb f36471e f48efbb 427a3a2 f48efbb 899d9c6 427a3a2 899d9c6 97c4991 899d9c6 f48efbb 6b57de3 f36471e f48efbb 427a3a2 f48efbb 899d9c6 f48efbb 427a3a2 899d9c6 427a3a2 899d9c6 28faefd 899d9c6 28faefd 899d9c6 058d10c 427a3a2 899d9c6 058d10c 6b57de3 899d9c6 6b57de3 899d9c6 6b57de3 899d9c6 6b57de3 899d9c6 f48efbb 6b57de3 |
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 |
<script lang="ts">
import { autofocus as autofocusAction } from "$lib/actions/autofocus.js";
import Tooltip from "$lib/components/tooltip.svelte";
import { TextareaAutosize } from "$lib/spells/textarea-autosize.svelte.js";
import { PipelineTag, type Conversation, type ConversationMessage } from "$lib/types.js";
import { copyToClipboard } from "$lib/utils/copy.js";
import { fileToDataURL } from "$lib/utils/file.js";
import { FileUpload } from "melt/builders";
import { fade } from "svelte/transition";
import IconCopy from "~icons/carbon/copy";
import IconImage from "~icons/carbon/image-reference";
import IconMaximize from "~icons/carbon/maximize";
import IconCustom from "../icon-custom.svelte";
import ImgPreview from "./img-preview.svelte";
import LocalToasts from "../local-toasts.svelte";
type Props = {
conversation: Conversation;
message: ConversationMessage;
loading?: boolean;
autofocus?: boolean;
onDelete?: () => void;
onRegen?: () => void;
isLast?: boolean;
};
let { message = $bindable(), conversation, loading, autofocus, onDelete, onRegen, isLast }: Props = $props();
let element = $state<HTMLTextAreaElement>();
const autosized = new TextareaAutosize({
element: () => element,
input: () => message.content ?? "",
});
const shouldStick = $derived(autosized.textareaHeight > 92);
const canUploadImgs = $derived(
message.role === "user" &&
"pipeline_tag" in conversation.model &&
conversation.model.pipeline_tag === PipelineTag.ImageTextToText
);
const fileUpload = new FileUpload({
accept: "image/*",
async onAccept(file) {
if (!message.images) message.images = [];
const dataUrl = await fileToDataURL(file);
if (message.images.includes(dataUrl)) return;
message.images.push(await fileToDataURL(file));
// We're dealing with files ourselves, so we don't want fileUpload to have any internal state,
// to avoid conflicts
fileUpload.clear();
},
disabled: () => !canUploadImgs,
});
let previewImg = $state<string>();
const regenLabel = $derived.by(() => {
if (message.role === "assistant") return "Regenerate";
return isLast ? "Generate from here" : "Regenerate from here";
});
</script>
<div
class="group/message group relative flex flex-col items-start gap-x-4 gap-y-2 border-b bg-white px-3.5 pt-4 pb-6 hover:bg-gray-100/70
@2xl:px-6 dark:border-gray-800 dark:bg-gray-900 dark:hover:bg-gray-800/30"
class:pointer-events-none={loading}
{...fileUpload.dropzone}
onclick={undefined}
>
<div class="flex w-full flex-col items-start gap-x-4 gap-y-2 max-md:text-sm @2xl:flex-row">
{#if fileUpload.isDragging}
<div
class="absolute inset-2 z-10 flex flex-col items-center justify-center rounded-xl bg-gray-800/50 backdrop-blur-md"
transition:fade={{ duration: 100 }}
>
<IconImage />
<p>Drop the image here to upload</p>
</div>
{/if}
<div
class={[
"top-8 z-10 bg-inherit pt-3 text-sm font-semibold uppercase @2xl:basis-[130px] @2xl:self-start",
shouldStick && "@min-2xl:sticky",
]}
>
{message.role}
</div>
<div class="flex w-full gap-4">
<textarea
bind:this={element}
use:autofocusAction={autofocus}
bind:value={message.content}
placeholder="Enter {message.role} message"
class="grow resize-none overflow-hidden rounded-lg bg-transparent px-2 py-2.5 ring-gray-100 outline-none group-hover/message:ring-3 hover:bg-white focus:bg-white focus:ring-3 @2xl:px-3 dark:ring-gray-600 dark:hover:bg-gray-900 dark:focus:bg-gray-900"
rows="1"
data-message
></textarea>
<!-- Sticky wrapper for action buttons -->
<div class={["top-8 z-10 self-start", shouldStick && "sticky"]}>
<div class="flex flex-col items-start gap-1 @2xl:flex-row @2xl:gap-4">
{#if canUploadImgs}
<Tooltip openDelay={250}>
{#snippet trigger(tooltip)}
<button
tabindex="0"
type="button"
class="mt-1.5 grid size-7 place-items-center rounded-lg border border-gray-200 bg-white text-xs font-medium text-gray-900
hover:bg-gray-100
hover:text-blue-700 focus:z-10 focus:ring-4
focus:ring-gray-100 focus:outline-hidden md:-mr-2 dark:border-gray-600
dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
{...tooltip.trigger}
{...fileUpload.trigger}
>
<IconImage />
</button>
<input {...fileUpload.input} />
{/snippet}
Add image
</Tooltip>
{/if}
<Tooltip>
{#snippet trigger(tooltip)}
<LocalToasts>
{#snippet children({ trigger, addToast })}
<button
tabindex="0"
onclick={() => {
copyToClipboard(message.content ?? "");
addToast({ data: { content: "β", variant: "info" } });
}}
type="button"
class="mt-1.5 grid size-7 place-items-center rounded-lg border border-gray-200 bg-white text-xs font-medium text-gray-900 hover:bg-gray-100
hover:text-blue-700
focus:z-10 focus:ring-4 focus:ring-gray-100
focus:outline-hidden md:-mr-2 dark:border-gray-600 dark:bg-gray-800
dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
{...tooltip.trigger}
{...trigger}
>
<IconCopy />
</button>
{/snippet}
</LocalToasts>
{/snippet}
Copy
</Tooltip>
<Tooltip>
{#snippet trigger(tooltip)}
<button
tabindex="0"
onclick={onRegen}
type="button"
class="mt-1.5 grid size-7 place-items-center rounded-lg border border-gray-200 bg-white text-xs font-medium text-gray-900 hover:bg-gray-100
hover:text-blue-700
focus:z-10 focus:ring-4 focus:ring-gray-100
focus:outline-hidden md:-mr-2 dark:border-gray-600 dark:bg-gray-800
dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
{...tooltip.trigger}
>
<IconCustom icon={message.role === "user" ? "regen" : "refresh"} />
</button>
{/snippet}
{regenLabel}
</Tooltip>
<Tooltip>
{#snippet trigger(tooltip)}
<button
tabindex="0"
onclick={onDelete}
type="button"
class="mt-1.5 grid size-7 place-items-center rounded-lg border border-gray-200 bg-white text-xs font-medium text-gray-900 hover:bg-gray-100
hover:text-blue-700
focus:z-10 focus:ring-4 focus:ring-gray-100
focus:outline-hidden md:-mr-2 dark:border-gray-600 dark:bg-gray-800
dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white dark:focus:ring-gray-700"
{...tooltip.trigger}
>
β
</button>
{/snippet}
Delete
</Tooltip>
</div>
</div>
</div>
</div>
{#if message.images?.length}
<div class="mt-2">
<div class="flex items-center gap-2">
{#each message.images as img (img)}
<div class="group/img relative">
<button
aria-label="expand"
class="absolute inset-0 z-10 grid place-items-center bg-gray-800/70 opacity-0 group-hover/img:opacity-100"
onclick={() => (previewImg = img)}
>
<IconMaximize />
</button>
<img src={img} alt="uploaded" class="size-12 rounded-lg object-cover" />
<button
aria-label="remove"
type="button"
onclick={e => {
e.stopPropagation();
message.images = message.images?.filter(i => i !== img);
}}
class="invisible absolute -top-1 -right-1 z-20 grid size-5 place-items-center rounded-full bg-gray-800 text-xs text-white group-hover/img:visible hover:bg-gray-700"
>
β
</button>
</div>
{/each}
</div>
</div>
{/if}
</div>
<ImgPreview bind:img={previewImg} />
|