diff options
Diffstat (limited to 'llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte')
| -rw-r--r-- | llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte b/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte new file mode 100644 index 0000000..33ab0fe --- /dev/null +++ b/llama.cpp/tools/server/webui/src/lib/components/app/dialogs/DialogChatAttachmentsViewAll.svelte @@ -0,0 +1,54 @@ +<script lang="ts"> + import * as Dialog from '$lib/components/ui/dialog'; + import { ChatAttachmentsViewAll } from '$lib/components/app'; + + interface Props { + open?: boolean; + uploadedFiles?: ChatUploadedFile[]; + attachments?: DatabaseMessageExtra[]; + readonly?: boolean; + onFileRemove?: (fileId: string) => void; + imageHeight?: string; + imageWidth?: string; + imageClass?: string; + activeModelId?: string; + } + + let { + open = $bindable(false), + uploadedFiles = [], + attachments = [], + readonly = false, + onFileRemove, + imageHeight = 'h-24', + imageWidth = 'w-auto', + imageClass = '', + activeModelId + }: Props = $props(); + + let totalCount = $derived(uploadedFiles.length + attachments.length); +</script> + +<Dialog.Root bind:open> + <Dialog.Portal> + <Dialog.Overlay /> + + <Dialog.Content class="flex !max-h-[90vh] !max-w-6xl flex-col"> + <Dialog.Header> + <Dialog.Title>All Attachments ({totalCount})</Dialog.Title> + <Dialog.Description>View and manage all attached files</Dialog.Description> + </Dialog.Header> + + <ChatAttachmentsViewAll + {uploadedFiles} + {attachments} + {readonly} + {onFileRemove} + {imageHeight} + {imageWidth} + {imageClass} + {activeModelId} + /> + </Dialog.Content> + </Dialog.Portal> +</Dialog.Root> |
