final feedback fixes

This commit is contained in:
taskylizard 2023-11-19 11:27:54 +00:00
parent ae179550bf
commit 566a259896
3 changed files with 13 additions and 23 deletions

View File

@ -1,32 +1,18 @@
import { fetcher } from "itty-fetcher"; import { fetcher } from "itty-fetcher";
import { FeedbackSchema } from "../types/Feedback"; import { FeedbackSchema, getFeedbackOption } from "../types/Feedback";
const feedbackOptions = [
{ label: "🐞 Bug", value: "bug" },
{
label: "♻️ Suggestion",
value: "suggestion",
},
{ label: "📂 Other", value: "other" },
{
label: "❤️ Appreciation",
value: "appreciate",
},
];
function getFeedbackOption(value: string): string {
return feedbackOptions.find((option) => option.value === value).label;
}
export default defineEventHandler(async (event) => { export default defineEventHandler(async (event) => {
const { message, page, contact, type } = await readValidatedBody(event, FeedbackSchema.parse); const { message, page, contact, type } = await readValidatedBody(
event,
FeedbackSchema.parseAsync,
);
const env = useRuntimeConfig(event); const env = useRuntimeConfig(event);
if (!["bug", "suggestion", "other", "appreciate"].includes(type!) || !message) if (!["bug", "suggestion", "other", "appreciate"].includes(type!) || !message)
throw new Error("Invalid input."); throw new Error("Invalid input.");
let description = `${message}\n\n`; let description = `${message}\n\n`;
if (contact) description += `**Contact:** ${contact}\n`; if (contact) description += `**Contact:** ${contact}`;
if (page) description += `**Page:** \`${page}\``; if (page) description += `**Page:** \`${page}\``;
await fetcher() await fetcher()
@ -36,7 +22,7 @@ export default defineEventHandler(async (event) => {
embeds: [ embeds: [
{ {
color: 3447003, color: 3447003,
title: getFeedbackOption(type), title: getFeedbackOption(type).label,
description, description,
}, },
], ],

View File

@ -82,7 +82,11 @@ async function handleSubmit(type?: FeedbackType["type"]) {
<button <button
type="submit" type="submit"
class="btn btn-primary" class="btn btn-primary"
:disabled="feedback.message.length > 1000 || feedback.contact.length > 100" :disabled="
feedback.message.length < 5 ||
feedback.message.length > 1000 ||
feedback.contact.length > 100
"
@click="handleSubmit()"> @click="handleSubmit()">
Submit Submit
</button> </button>

View File

@ -3,7 +3,7 @@ import z from "zod";
export const FeedbackSchema = z.object({ export const FeedbackSchema = z.object({
message: z.string().min(5).max(1000), message: z.string().min(5).max(1000),
type: z.enum(["bug", "suggestion", "appreciate", "other"]), type: z.enum(["bug", "suggestion", "appreciate", "other"]),
contact: z.string().min(5).max(20).optional(), contact: z.string().optional(),
page: z.string().min(3).max(10), page: z.string().min(3).max(10),
}); });