* feat: add template selection when creating new boards with predefined lists * feat: extend templates with labels, update design and add translations * feat: add validation and error states to new board form --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
135 lines
3.9 KiB
TypeScript
135 lines
3.9 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { t } from "@lingui/core/macro";
|
|
import { useEffect, useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { HiXMark } from "react-icons/hi2";
|
|
import { z } from "zod";
|
|
|
|
import type { Template } from "./TemplateBoards";
|
|
import Button from "~/components/Button";
|
|
import Input from "~/components/Input";
|
|
import Toggle from "~/components/Toggle";
|
|
import { useModal } from "~/providers/modal";
|
|
import { useWorkspace } from "~/providers/workspace";
|
|
import { api } from "~/utils/api";
|
|
import TemplateBoards, { getTemplates } from "./TemplateBoards";
|
|
|
|
const schema = z.object({
|
|
name: z
|
|
.string()
|
|
.min(1, { message: t`Board name is required` })
|
|
.max(100, { message: t`Board name cannot exceed 100 characters` }),
|
|
workspacePublicId: z.string(),
|
|
template: z.custom<Template | null>(),
|
|
});
|
|
|
|
interface NewBoardInputWithTemplate {
|
|
name: string;
|
|
workspacePublicId: string;
|
|
template: Template | null;
|
|
}
|
|
|
|
export function NewBoardForm() {
|
|
const utils = api.useUtils();
|
|
const { closeModal } = useModal();
|
|
const { workspace } = useWorkspace();
|
|
const [showTemplates, setShowTemplates] = useState(false);
|
|
|
|
const templates = getTemplates();
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
watch,
|
|
setValue,
|
|
formState: { errors },
|
|
} = useForm<NewBoardInputWithTemplate>({
|
|
resolver: zodResolver(schema),
|
|
defaultValues: {
|
|
name: "",
|
|
workspacePublicId: workspace.publicId || "",
|
|
template: null,
|
|
},
|
|
});
|
|
|
|
const currentTemplate = watch("template");
|
|
|
|
const refetchBoards = () => utils.board.all.refetch();
|
|
|
|
const createBoard = api.board.create.useMutation({
|
|
onSuccess: async () => {
|
|
closeModal();
|
|
await refetchBoards();
|
|
},
|
|
});
|
|
|
|
const onSubmit = (data: NewBoardInputWithTemplate) => {
|
|
createBoard.mutate({
|
|
name: data.name,
|
|
workspacePublicId: data.workspacePublicId,
|
|
lists: data.template?.lists ?? [],
|
|
labels: data.template?.labels ?? [],
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
const titleElement: HTMLElement | null =
|
|
document.querySelector<HTMLElement>("#name");
|
|
if (titleElement) titleElement.focus();
|
|
}, []);
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="px-5 pt-5">
|
|
<div className="text-neutral-9000 flex w-full items-center justify-between pb-4 dark:text-dark-1000">
|
|
<h2 className="text-sm font-bold">{t`New board`}</h2>
|
|
<button
|
|
type="button"
|
|
className="hover:bg-li ght-300 rounded p-1 focus:outline-none dark:hover:bg-dark-300"
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
closeModal();
|
|
}}
|
|
>
|
|
<HiXMark size={18} className="dark:text-dark-9000 text-light-900" />
|
|
</button>
|
|
</div>
|
|
<Input
|
|
id="name"
|
|
placeholder={t`Name`}
|
|
{...register("name", { required: true })}
|
|
errorMessage={errors.name?.message}
|
|
onKeyDown={async (e) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault();
|
|
await handleSubmit(onSubmit)();
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
<TemplateBoards
|
|
currentBoard={currentTemplate}
|
|
setCurrentBoard={(t) => setValue("template", t)}
|
|
showTemplates={showTemplates}
|
|
/>
|
|
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
|
<Toggle
|
|
label={t`Use template`}
|
|
isChecked={showTemplates}
|
|
onChange={() => {
|
|
setShowTemplates(!showTemplates);
|
|
if (!showTemplates && !currentTemplate) {
|
|
setValue("template", templates[0] ?? null);
|
|
}
|
|
}}
|
|
/>
|
|
<div>
|
|
<Button type="submit" isLoading={createBoard.isPending}>
|
|
{t`Create board`}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|