From 13019acce6dc3ec0c76f581a8cadc032c17baa52 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 14 May 2024 22:09:32 -1000 Subject: [PATCH] refac: styling --- src/lib/components/chat/MessageInput.svelte | 4 +- src/lib/components/layout/Sidebar.svelte | 8 +- .../components/workspace/Modelfiles.svelte | 6 +- src/lib/components/workspace/Prompts.svelte | 8 +- src/routes/(app)/workspace/+layout.svelte | 12 +- .../workspace/modelfiles/create/+page.svelte | 788 +++++++++--------- .../workspace/modelfiles/edit/+page.svelte | 566 +++++++------ .../workspace/prompts/create/+page.svelte | 305 ++++--- .../(app)/workspace/prompts/edit/+page.svelte | 311 ++++--- 9 files changed, 990 insertions(+), 1018 deletions(-) diff --git a/src/lib/components/chat/MessageInput.svelte b/src/lib/components/chat/MessageInput.svelte index 593dc391b..21372f2dc 100644 --- a/src/lib/components/chat/MessageInput.svelte +++ b/src/lib/components/chat/MessageInput.svelte @@ -1,7 +1,7 @@ -
-
-
- { - let reader = new FileReader(); - reader.onload = (event) => { - let originalImageUrl = `${event.target.result}`; +
+ { + let reader = new FileReader(); + reader.onload = (event) => { + let originalImageUrl = `${event.target.result}`; - const img = new Image(); - img.src = originalImageUrl; + const img = new Image(); + img.src = originalImageUrl; - img.onload = function () { - const canvas = document.createElement('canvas'); - const ctx = canvas.getContext('2d'); + img.onload = function () { + const canvas = document.createElement('canvas'); + const ctx = canvas.getContext('2d'); - // Calculate the aspect ratio of the image - const aspectRatio = img.width / img.height; + // Calculate the aspect ratio of the image + const aspectRatio = img.width / img.height; - // Calculate the new width and height to fit within 100x100 - let newWidth, newHeight; - if (aspectRatio > 1) { - newWidth = 100 * aspectRatio; - newHeight = 100; - } else { - newWidth = 100; - newHeight = 100 / aspectRatio; - } - - // Set the canvas size - canvas.width = 100; - canvas.height = 100; - - // Calculate the position to center the image - const offsetX = (100 - newWidth) / 2; - const offsetY = (100 - newHeight) / 2; - - // Draw the image on the canvas - ctx.drawImage(img, offsetX, offsetY, newWidth, newHeight); - - // Get the base64 representation of the compressed image - const compressedSrc = canvas.toDataURL('image/jpeg'); - - // Display the compressed image - imageUrl = compressedSrc; - - inputFiles = null; - }; - }; - - if ( - inputFiles && - inputFiles.length > 0 && - ['image/gif', 'image/jpeg', 'image/png'].includes(inputFiles[0]['type']) - ) { - reader.readAsDataURL(inputFiles[0]); + // Calculate the new width and height to fit within 100x100 + let newWidth, newHeight; + if (aspectRatio > 1) { + newWidth = 100 * aspectRatio; + newHeight = 100; } else { - console.log(`Unsupported File Type '${inputFiles[0]['type']}'.`); - inputFiles = null; + newWidth = 100; + newHeight = 100 / aspectRatio; } - }} - /> -
{$i18n.t('My Modelfiles')}
+ // Set the canvas size + canvas.width = 100; + canvas.height = 100; - + + +
{ + submitHandler(); + }} + > +
+
+ +
+
+ +
+
+
{$i18n.t('Name')}*
+ +
+ +
+
+ +
+
{$i18n.t('Model Tag Name')}*
+ +
+ +
+
+
+ +
+
{$i18n.t('Description')}*
+ +
+ +
+
+ +
+
+
{$i18n.t('Modelfile')}
+ + +
+ + + + {#if raw} +
+
{$i18n.t('Content')}*
+ +
+