/
vshmidt
/
llama.cpp
Обзор
Документация
Войти
/
vshmidt
/
llama.cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tools/server/webui/src/lib/components/app/dialogs/DialogEmptyFileAlert.svelte
61 строка
2 KB
Aleksander Grygier
Improved file naming & structure for UI components (#17405)
20 ноя 2025, 16:07
Не верифицирован
20 ноя 2025, 16:07
4c91f26
Код
Авторство
О чём код?
<script lang="ts"> import * as AlertDialog from '$lib/components/ui/alert-dialog'; import { FileX } from '@lucide/svelte'; interface Props { open: boolean; emptyFiles: string[]; onOpenChange?: (open: boolean) => void; } let { open = $bindable(), emptyFiles, onOpenChange }: Props = $props(); function handleOpenChange(newOpen: boolean) { open = newOpen; onOpenChange?.(newOpen); } </script> <AlertDialog.Root {open} onOpenChange={handleOpenChange}> <AlertDialog.Content> <AlertDialog.Header> <AlertDialog.Title class="flex items-center gap-2"> <FileX class="h-5 w-5 text-destructive" /> Empty Files Detected </AlertDialog.Title> <AlertDialog.Description> The following files are empty and have been removed from your attachments: </AlertDialog.Description> </AlertDialog.Header> <div class="space-y-3 text-sm"> <div class="rounded-lg bg-muted p-3"> <div class="mb-2 font-medium">Empty Files:</div> <ul class="list-inside list-disc space-y-1 text-muted-foreground"> {#each emptyFiles as fileName (fileName)} <li class="font-mono text-sm">{fileName}</li> {/each} </ul> </div> <div> <div class="mb-2 font-medium">What happened:</div> <ul class="list-inside list-disc space-y-1 text-muted-foreground"> <li>Empty files cannot be processed or sent to the AI model</li> <li>These files have been automatically removed from your attachments</li> <li>You can try uploading files with content instead</li> </ul> </div> </div> <AlertDialog.Footer> <AlertDialog.Action onclick={() => handleOpenChange(false)}>Got it</AlertDialog.Action> </AlertDialog.Footer> </AlertDialog.Content> </AlertDialog.Root>