feat(ui): form validation and improved ui

This commit is contained in:
Pihkaal
2024-10-02 06:11:27 +02:00
parent f1a5cd9bc0
commit 8264fd966b
2 changed files with 89 additions and 50 deletions

135
app.vue
View File

@@ -1,33 +1,44 @@
<script setup lang="ts"> <script setup lang="ts">
import { renderQRCodeToCanvas } from "@/utils/renderer"; // TODO: default image or smth when no content
import { IMAGE_FORMATS, LOGOS } from "@/utils/settings";
const format = ref(IMAGE_FORMATS[0]); import { renderQRCodeToCanvas } from "@/utils/renderer";
const logo = ref(LOGOS[0]); import {
const content = ref(""); IMAGE_FORMATS,
LOGOS,
settingsSchema,
type Settings,
} from "@/utils/settings";
import type { FormSubmitEvent } from "#ui/types";
const canvas = ref(null); const canvas = ref(null);
const qrCode = ref(""); const qrCode = ref("");
const copyIcon = ref("i-heroicons-clipboard-document"); const copyIcon = ref("i-heroicons-clipboard-document");
const copyLabel = ref("Copy to clipboard"); const copyLabel = ref("Copy");
const isQRCodeEmpty = computed(() => qrCode.value.length === 0); const isQRCodeEmpty = computed(() => qrCode.value.length === 0);
const state = reactive({
logo: LOGOS[0],
format: IMAGE_FORMATS[0],
content: undefined,
});
const updateQRCode = async () => { const updateQRCode = async () => {
await nextTick(); if (!state.content) return;
if (content.value.length === 0) return; const logoUrl = `/${state.logo}.png`;
await renderQRCodeToCanvas(canvas.value, state.content, logoUrl);
const logoUrl = `/${logo.value}.png`; console.log(state.format);
await renderQRCodeToCanvas(canvas.value, content.value, logoUrl);
qrCode.value = canvas.value.toDataURL(`image/${format.value}`); qrCode.value = canvas.value.toDataURL(`image/${state.format}`);
}; };
const downloadQRCode = () => { const downloadQRCode = () => {
const link = document.createElement("a"); const link = document.createElement("a");
link.href = qrCode.value; link.href = qrCode.value;
link.download = "qrcode.png"; link.download = `qrcode.${state.format}`;
document.body.appendChild(link); document.body.appendChild(link);
link.click(); link.click();
@@ -35,10 +46,10 @@ const downloadQRCode = () => {
}; };
const copyQRCode = async () => { const copyQRCode = async () => {
if (content.value.length === 0) return; if (state.content.length === 0) return;
const logoUrl = `/${logo.value}.png`; const logoUrl = `/${state.format}.png`;
await renderQRCodeToCanvas(canvas.value, content.value, logoUrl); await renderQRCodeToCanvas(canvas.value, state.content, logoUrl);
const qrCode = canvas.value.toDataURL(`image/png`); const qrCode = canvas.value.toDataURL(`image/png`);
@@ -50,47 +61,73 @@ const copyQRCode = async () => {
copyLabel.value = "Copied!"; copyLabel.value = "Copied!";
setTimeout(() => { setTimeout(() => {
copyIcon.value = "i-heroicons-clipboard-document"; copyIcon.value = "i-heroicons-clipboard-document";
copyLabel.value = "Copy to clipboard"; copyLabel.value = "Copy";
}, 3000); }, 3000);
}; };
</script> </script>
<template> <template>
<div> <div role="main" class="flex h-[100vh] items-center justify-center">
<NuxtRouteAnnouncer /> <NuxtRouteAnnouncer />
<USelectMenu
v-model="format"
:options="IMAGE_FORMATS"
@change="updateQRCode"
/>
<USelectMenu v-model="logo" :options="LOGOS" @change="updateQRCode" />
<UInput v-model="content" @input="updateQRCode" />
<canvas ref="canvas" class="hidden" /> <canvas ref="canvas" class="hidden" />
<img :src="qrCode" />
<UButton <div
block class="w-full h-full max-w-[850px] max-h-[375px] flex justify-between gap-8"
icon="i-heroicons-arrow-down-tray" >
size="sm" <img :src="qrCode" class="h-full aspect-square" />
color="primary"
variant="solid" <div class="flex-1 flex flex-col justify-center">
label="Download" <UForm :schema="settingsSchema" :state="state" class="space-y-4">
:trailing="false" <UFormGroup
:disabled="isQRCodeEmpty" label="Username or link"
@click="downloadQRCode" name="content"
/> @input="updateQRCode"
<UButton >
block <UInput v-model="state.content" />
:icon="copyIcon" </UFormGroup>
size="sm"
color="primary" <UFormGroup label="Logo" name="logo">
variant="solid" <USelectMenu
:label="copyLabel" v-model="state.logo"
:trailing="false" :options="LOGOS"
:disabled="isQRCodeEmpty" searchable
@click="copyQRCode" @change="updateQRCode"
/> />
</UFormGroup>
<UFormGroup label="Format" name="format">
<USelectMenu
v-model="state.format"
:options="IMAGE_FORMATS"
@change="updateQRCode"
/>
</UFormGroup>
<UButton
block
:icon="copyIcon"
size="md"
color="primary"
variant="solid"
:label="copyLabel"
:trailing="false"
:disabled="isQRCodeEmpty"
@click="copyQRCode"
/>
<UButton
block
icon="i-heroicons-arrow-down-tray"
size="md"
color="primary"
variant="solid"
label="Download"
:trailing="false"
:disabled="isQRCodeEmpty"
@click="downloadQRCode"
/>
</UForm>
</div>
</div>
</div> </div>
</template> </template>

View File

@@ -9,5 +9,7 @@ export type ImageFormat = (typeof IMAGE_FORMATS)[number];
export const settingsSchema = z.object({ export const settingsSchema = z.object({
format: z.enum(IMAGE_FORMATS).default("png"), format: z.enum(IMAGE_FORMATS).default("png"),
logo: z.enum(LOGOS), logo: z.enum(LOGOS),
content: z.string().min(1), content: z.string().min(1, "Required"),
}); });
export type Settings = z.infer<typeof settingsSchema>;