mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
147 lines
4.0 KiB
TypeScript
147 lines
4.0 KiB
TypeScript
import { useState, useEffect, useRef } from "react"
|
|
import { motion, AnimatePresence } from "framer-motion"
|
|
import { ListOfTasks, Task } from "@/lib/schema/tasks"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Button } from "@/components/ui/button"
|
|
import { useAccount } from "@/lib/providers/jazz-provider"
|
|
import { LaIcon } from "@/components/custom/la-icon"
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
|
import { DatePicker } from "@/components/ui/date-picker"
|
|
import { format, parse } from "date-fns"
|
|
|
|
interface TaskFormProps {
|
|
filter?: "today" | "upcoming" | undefined
|
|
}
|
|
|
|
export const TaskForm: React.FC<TaskFormProps> = ({ filter }) => {
|
|
const [title, setTitle] = useState("")
|
|
const [dueDate, setDueDate] = useState<Date | undefined>(filter === "today" ? new Date() : undefined)
|
|
const [inputVisible, setInputVisible] = useState(false)
|
|
const { me } = useAccount({ root: {} })
|
|
const inputRef = useRef<HTMLInputElement>(null)
|
|
const formRef = useRef<HTMLDivElement>(null)
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
saveTask()
|
|
}
|
|
|
|
const saveTask = () => {
|
|
if (title.trim() && (filter !== "upcoming" || dueDate)) {
|
|
if (me?.root?.tasks === undefined) {
|
|
if (!me) return
|
|
me.root.tasks = ListOfTasks.create([], { owner: me })
|
|
}
|
|
|
|
const newTask = Task.create(
|
|
{
|
|
title,
|
|
description: "",
|
|
status: "todo",
|
|
createdAt: new Date(),
|
|
updatedAt: new Date(),
|
|
dueDate: filter === "upcoming" ? dueDate : filter === "today" ? new Date() : null
|
|
},
|
|
{ owner: me._owner }
|
|
)
|
|
me.root.tasks?.push(newTask)
|
|
resetForm()
|
|
}
|
|
}
|
|
|
|
const resetForm = () => {
|
|
setTitle("")
|
|
setDueDate(filter === "today" ? new Date() : undefined)
|
|
setInputVisible(false)
|
|
}
|
|
|
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
|
if (e.key === "Escape") {
|
|
resetForm()
|
|
} else if (e.key === "Backspace" && title.trim() === "") {
|
|
resetForm()
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (inputVisible && inputRef.current) {
|
|
inputRef.current.focus()
|
|
}
|
|
}, [inputVisible])
|
|
|
|
useEffect(() => {
|
|
const handleClickOutside = (event: MouseEvent) => {
|
|
if (formRef.current && !formRef.current.contains(event.target as Node)) {
|
|
if (title.trim()) {
|
|
saveTask()
|
|
} else {
|
|
resetForm()
|
|
}
|
|
}
|
|
}
|
|
|
|
document.addEventListener("mousedown", handleClickOutside)
|
|
return () => {
|
|
document.removeEventListener("mousedown", handleClickOutside)
|
|
}
|
|
}, [title, dueDate])
|
|
|
|
const formattedDate = dueDate ? format(dueDate, "EEE, MMMM do, yyyy") : "Select a date"
|
|
|
|
return (
|
|
<div className="flex items-center space-x-2">
|
|
<AnimatePresence mode="wait">
|
|
{filter ? (
|
|
!inputVisible ? (
|
|
<motion.div
|
|
key="add-button"
|
|
initial={{ opacity: 0, width: 0 }}
|
|
animate={{ opacity: 1, width: "auto" }}
|
|
exit={{ opacity: 0, width: 0 }}
|
|
transition={{ duration: 0.01 }}
|
|
>
|
|
<Button
|
|
className="flex flex-row items-center gap-1"
|
|
onClick={() => setInputVisible(true)}
|
|
variant="outline"
|
|
>
|
|
<LaIcon name="Plus" />
|
|
Add task
|
|
</Button>
|
|
</motion.div>
|
|
) : (
|
|
<div
|
|
ref={formRef}
|
|
onSubmit={handleSubmit}
|
|
className="bg-result flex w-full items-center justify-between rounded-lg px-2 py-1"
|
|
>
|
|
<div className="flex min-w-0 flex-1 items-center">
|
|
<Checkbox checked={false} onCheckedChange={() => {}} className="mr-2" />
|
|
<Input
|
|
autoFocus
|
|
ref={inputRef}
|
|
value={title}
|
|
className="flex-grow border-none bg-transparent p-0 focus-visible:ring-0"
|
|
onChange={e => setTitle(e.target.value)}
|
|
onKeyDown={handleKeyDown}
|
|
placeholder="Task title"
|
|
/>
|
|
</div>
|
|
|
|
<div className="ml-2 flex items-center" onClick={e => e.stopPropagation()}>
|
|
{filter === "upcoming" && (
|
|
<DatePicker
|
|
date={dueDate}
|
|
onDateChange={(date: Date | undefined) => setDueDate(date)}
|
|
className="z-50"
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
) : null}
|
|
</AnimatePresence>
|
|
</div>
|
|
)
|
|
}
|