feat: assign list on new card
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
"react-beautiful-dnd": "^13.1.1",
|
"react-beautiful-dnd": "^13.1.1",
|
||||||
"react-contenteditable": "^3.3.7",
|
"react-contenteditable": "^3.3.7",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
|
"react-hook-form": "^7.51.1",
|
||||||
"react-icons": "^4.11.0",
|
"react-icons": "^4.11.0",
|
||||||
"react-lottie-player": "^1.5.5",
|
"react-lottie-player": "^1.5.5",
|
||||||
"superjson": "^1.13.1",
|
"superjson": "^1.13.1",
|
||||||
|
|||||||
@@ -1,21 +1,22 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState, useEffect } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
import { useForm } from "react-hook-form";
|
||||||
import { api } from "~/trpc/react";
|
import { api } from "~/trpc/react";
|
||||||
|
|
||||||
import { HiXMark } from "react-icons/hi2";
|
import { HiXMark } from "react-icons/hi2";
|
||||||
import { Switch } from "@headlessui/react";
|
import { Switch } from "@headlessui/react";
|
||||||
|
|
||||||
|
import CheckboxDropdown from "~/app/components/CheckboxDropdown";
|
||||||
import { useBoard } from "~/app/providers/board";
|
import { useBoard } from "~/app/providers/board";
|
||||||
import { useModal } from "~/app/providers/modal";
|
import { useModal } from "~/app/providers/modal";
|
||||||
|
|
||||||
import { Formik, Form, Field } from "formik";
|
interface FormData {
|
||||||
|
|
||||||
interface FormValues {
|
|
||||||
title: string;
|
title: string;
|
||||||
|
listPublicId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface listPublicId {
|
interface NewCardFormProps {
|
||||||
listPublicId: string;
|
listPublicId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -23,12 +24,19 @@ function classNames(...classes: string[]): string {
|
|||||||
return classes.filter(Boolean).join(" ");
|
return classes.filter(Boolean).join(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
export function NewCardForm({ listPublicId }: listPublicId) {
|
export function NewCardForm({ listPublicId }: NewCardFormProps) {
|
||||||
const utils = api.useUtils();
|
const utils = api.useUtils();
|
||||||
const { boardData } = useBoard();
|
const { boardData } = useBoard();
|
||||||
const { closeModal } = useModal();
|
const { closeModal } = useModal();
|
||||||
const [isCreateAnotherEnabled, setIsCreateAnotherEnabled] = useState(false);
|
const [isCreateAnotherEnabled, setIsCreateAnotherEnabled] = useState(false);
|
||||||
|
|
||||||
|
const { register, handleSubmit, reset, setValue, watch } = useForm<FormData>({
|
||||||
|
defaultValues: {
|
||||||
|
title: "",
|
||||||
|
listPublicId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const refetchBoard = () =>
|
const refetchBoard = () =>
|
||||||
utils.board.byId.refetch({ id: boardData.publicId });
|
utils.board.byId.refetch({ id: boardData.publicId });
|
||||||
|
|
||||||
@@ -49,6 +57,27 @@ export function NewCardForm({ listPublicId }: listPublicId) {
|
|||||||
if (titleElement) titleElement.focus();
|
if (titleElement) titleElement.focus();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const formattedLists =
|
||||||
|
boardData?.lists.map((list) => ({
|
||||||
|
key: list.publicId,
|
||||||
|
value: list.name,
|
||||||
|
selected: list.publicId === watch("listPublicId"),
|
||||||
|
})) ?? [];
|
||||||
|
|
||||||
|
const onSubmit = (data: FormData) => {
|
||||||
|
createCard.mutate({
|
||||||
|
title: data.title,
|
||||||
|
listPublicId: data.listPublicId,
|
||||||
|
});
|
||||||
|
reset();
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSelectList = (listPublicId: string): void => {
|
||||||
|
setValue("listPublicId", listPublicId);
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectedList = formattedLists.find((item) => item.selected);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="flex w-full justify-between pb-4">
|
<div className="flex w-full justify-between pb-4">
|
||||||
@@ -61,61 +90,61 @@ export function NewCardForm({ listPublicId }: listPublicId) {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Formik
|
<form onSubmit={handleSubmit(onSubmit)}>
|
||||||
initialValues={{
|
<div>
|
||||||
title: "",
|
|
||||||
}}
|
|
||||||
onSubmit={(values: FormValues, { resetForm }) => {
|
|
||||||
createCard.mutate({
|
|
||||||
title: values.title,
|
|
||||||
listPublicId,
|
|
||||||
});
|
|
||||||
resetForm();
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Form>
|
|
||||||
<label
|
<label
|
||||||
htmlFor="title"
|
htmlFor="title"
|
||||||
className="block pb-2 text-sm font-normal leading-6 text-dark-1000"
|
className="block pb-2 text-sm font-normal leading-6 text-dark-1000"
|
||||||
>
|
>
|
||||||
Title
|
Title
|
||||||
</label>
|
</label>
|
||||||
<Field
|
<input
|
||||||
id="title"
|
id="title"
|
||||||
name="title"
|
type="text"
|
||||||
|
{...register("title")}
|
||||||
className="block w-full rounded-md border-0 bg-dark-300 bg-white/5 py-1.5 text-dark-1000 shadow-sm ring-1 ring-inset ring-dark-700 focus:ring-2 focus:ring-inset focus:ring-dark-700 sm:text-sm sm:leading-6"
|
className="block w-full rounded-md border-0 bg-dark-300 bg-white/5 py-1.5 text-dark-1000 shadow-sm ring-1 ring-inset ring-dark-700 focus:ring-2 focus:ring-inset focus:ring-dark-700 sm:text-sm sm:leading-6"
|
||||||
/>
|
/>
|
||||||
<div className="mt-3 flex items-center justify-end">
|
</div>
|
||||||
<span className="mr-2 text-xs text-dark-900">Create more</span>
|
<div className="mt-2 w-fit">
|
||||||
<Switch
|
<CheckboxDropdown
|
||||||
checked={isCreateAnotherEnabled}
|
items={formattedLists}
|
||||||
onChange={setIsCreateAnotherEnabled}
|
handleSelect={(list: { key: string }) => handleSelectList(list.key)}
|
||||||
|
>
|
||||||
|
<div className="flex h-full w-full items-center rounded-[5px] border-[1px] border-dark-600 bg-dark-400 px-2 py-1.5 text-left text-xs text-dark-1000 hover:bg-dark-500">
|
||||||
|
{selectedList?.value}
|
||||||
|
</div>
|
||||||
|
</CheckboxDropdown>
|
||||||
|
</div>
|
||||||
|
<div className="mt-3 flex items-center justify-end">
|
||||||
|
<span className="mr-2 text-xs text-dark-900">Create more</span>
|
||||||
|
<Switch
|
||||||
|
checked={isCreateAnotherEnabled}
|
||||||
|
onChange={setIsCreateAnotherEnabled}
|
||||||
|
className={classNames(
|
||||||
|
isCreateAnotherEnabled ? "bg-indigo-600" : "bg-dark-800",
|
||||||
|
"relative inline-flex h-4 w-6 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none",
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span className="sr-only">Use setting</span>
|
||||||
|
<span
|
||||||
|
aria-hidden="true"
|
||||||
className={classNames(
|
className={classNames(
|
||||||
isCreateAnotherEnabled ? "bg-indigo-600" : "bg-dark-800",
|
isCreateAnotherEnabled ? "translate-x-2" : "translate-x-0",
|
||||||
"relative inline-flex h-4 w-6 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none",
|
"pointer-events-none inline-block h-3 w-3 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out",
|
||||||
)}
|
)}
|
||||||
>
|
/>
|
||||||
<span className="sr-only">Use setting</span>
|
</Switch>
|
||||||
<span
|
</div>
|
||||||
aria-hidden="true"
|
|
||||||
className={classNames(
|
|
||||||
isCreateAnotherEnabled ? "translate-x-2" : "translate-x-0",
|
|
||||||
"pointer-events-none inline-block h-3 w-3 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out",
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
</Switch>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="mt-5 sm:mt-6">
|
<div className="mt-5 sm:mt-6">
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
className="inline-flex w-full justify-center rounded-md bg-dark-1000 px-3 py-2 text-sm font-semibold text-dark-50 shadow-sm focus-visible:outline-none"
|
className="inline-flex w-full justify-center rounded-md bg-dark-1000 px-3 py-2 text-sm font-semibold text-dark-50 shadow-sm focus-visible:outline-none"
|
||||||
>
|
>
|
||||||
Create card
|
Create card
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</Form>
|
</form>
|
||||||
</Formik>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
74
src/app/components/CheckboxDropdown.tsx
Normal file
74
src/app/components/CheckboxDropdown.tsx
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { Fragment } from "react";
|
||||||
|
import { Menu, Transition } from "@headlessui/react";
|
||||||
|
|
||||||
|
interface CheckboxDropdownProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
items: {
|
||||||
|
key: string;
|
||||||
|
value: string;
|
||||||
|
selected: boolean;
|
||||||
|
}[];
|
||||||
|
handleSelect: (item: { key: string }) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function CheckboxDropdown({
|
||||||
|
children,
|
||||||
|
items,
|
||||||
|
handleSelect,
|
||||||
|
}: CheckboxDropdownProps) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Menu
|
||||||
|
as="div"
|
||||||
|
className="relative flex w-full flex-wrap items-center text-left"
|
||||||
|
>
|
||||||
|
<Menu.Button>{children}</Menu.Button>
|
||||||
|
|
||||||
|
<Transition
|
||||||
|
as={Fragment}
|
||||||
|
enter="transition ease-out duration-100"
|
||||||
|
enterFrom="transform opacity-0 scale-95"
|
||||||
|
enterTo="transform opacity-100 scale-100"
|
||||||
|
leave="transition ease-in duration-75"
|
||||||
|
leaveFrom="transform opacity-100 scale-100"
|
||||||
|
leaveTo="transform opacity-0 scale-95"
|
||||||
|
>
|
||||||
|
<Menu.Items className="absolute left-0 top-[26px] z-10 mt-2 w-56 origin-top-left rounded-md border-[1px] border-dark-500 bg-dark-200 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none">
|
||||||
|
<div className="p-2">
|
||||||
|
{items?.map((item) => (
|
||||||
|
<Menu.Item key={item.key}>
|
||||||
|
<div
|
||||||
|
key={item.key}
|
||||||
|
className="flex items-center rounded-[5px] p-2 hover:bg-dark-300"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.preventDefault();
|
||||||
|
handleSelect({ key: item.key });
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
id={item.key}
|
||||||
|
name={item.key}
|
||||||
|
type="checkbox"
|
||||||
|
className="h-[14px] w-[14px] rounded bg-transparent"
|
||||||
|
onClick={(event) => event.stopPropagation()}
|
||||||
|
onChange={() => handleSelect({ key: item.key })}
|
||||||
|
checked={item.selected}
|
||||||
|
/>
|
||||||
|
<label
|
||||||
|
htmlFor={item.key}
|
||||||
|
className="ml-3 text-sm text-dark-900"
|
||||||
|
>
|
||||||
|
{item.value}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</Menu.Item>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</Menu.Items>
|
||||||
|
</Transition>
|
||||||
|
</Menu>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user