mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
93 lines
2.5 KiB
TypeScript
93 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import { useRef, ElementRef, useState } from "react";
|
|
import { useQueryClient } from "@tanstack/react-query";
|
|
import { useParams } from "next/navigation";
|
|
import { Layout } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
|
|
import { CardWithList } from "@/types";
|
|
import { useAction } from "@/hooks/use-action";
|
|
import { updateCard } from "@/actions/update-card";
|
|
import { FormInput } from "@/components/form/form-input";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
interface HeaderProps {
|
|
data: CardWithList;
|
|
}
|
|
|
|
export const Header = ({ data }: HeaderProps) => {
|
|
const queryClient = useQueryClient();
|
|
const params = useParams();
|
|
|
|
const { execute } = useAction(updateCard, {
|
|
onSuccess: (data) => {
|
|
queryClient.invalidateQueries({
|
|
queryKey: ["card", data.id],
|
|
});
|
|
|
|
queryClient.invalidateQueries({
|
|
queryKey: ["card-logs", data.id],
|
|
});
|
|
|
|
toast.success(`Card renamed to "${data.title}"`);
|
|
setTitle(data.title);
|
|
},
|
|
onError: (error) => {
|
|
toast.error(error);
|
|
},
|
|
});
|
|
|
|
const inputRef = useRef<ElementRef<"input">>(null);
|
|
|
|
const [title, setTitle] = useState(data.title);
|
|
|
|
const onBlur = () => {
|
|
inputRef.current?.form?.requestSubmit();
|
|
};
|
|
|
|
const onSubmit = (formData: FormData) => {
|
|
const title = formData.get("title") as string;
|
|
const boardId = params.boardId as string;
|
|
|
|
if (title === data.title) return;
|
|
|
|
execute({
|
|
id: data.id,
|
|
title,
|
|
boardId,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="flex items-start gap-x-3 mb-6 w-full">
|
|
<Layout className="h-5 w-5 mt-1 text-neutral-700" />
|
|
<div className="w-full">
|
|
<form action={onSubmit}>
|
|
<FormInput
|
|
id="title"
|
|
ref={inputRef}
|
|
onBlur={onBlur}
|
|
defaultValue={title}
|
|
className="font-semi-bold text-xl px-1 text-neutral-700 bg-transparent border-transparent relative -left-1 w-[95%] focus-visible:bg-white focus-visible:border-input mb-0.5 truncate"
|
|
/>
|
|
</form>
|
|
<p className="text-sm text-muted-foreground">
|
|
in list <span className="underline">{data.list.title}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
Header.Skeleton = function HeaderSkelton() {
|
|
return (
|
|
<div className="flex items-start gap-x-3 mb-6">
|
|
<Skeleton className="h-6 w-6 mt-1 bg-neutral-200" />
|
|
<div>
|
|
<Skeleton className="w-24 h-6 mb-1 bg-neutral-200" />
|
|
<Skeleton className="w-12 h-4 bg-neutral-200" />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|