95 lines
2.7 KiB
TypeScript
95 lines
2.7 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { Plus } from "lucide-react"
|
|
import { useFormStatus } from "react-dom"
|
|
import { Button } from "@/shared/components/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/shared/components/ui/dialog"
|
|
import { Input } from "@/shared/components/ui/input"
|
|
import { Label } from "@/shared/components/ui/label"
|
|
import { createChapterAction } from "../actions"
|
|
import { toast } from "sonner"
|
|
|
|
function SubmitButton() {
|
|
const { pending } = useFormStatus()
|
|
return (
|
|
<Button type="submit" disabled={pending}>
|
|
{pending ? "Creating..." : "Create Chapter"}
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
interface CreateChapterDialogProps {
|
|
textbookId: string
|
|
parentId?: string
|
|
trigger?: React.ReactNode | null
|
|
open?: boolean
|
|
onOpenChange?: (open: boolean) => void
|
|
}
|
|
|
|
export function CreateChapterDialog({ textbookId, parentId, trigger, open: controlledOpen, onOpenChange }: CreateChapterDialogProps) {
|
|
const [uncontrolledOpen, setUncontrolledOpen] = useState(false)
|
|
const open = controlledOpen ?? uncontrolledOpen
|
|
const setOpen = onOpenChange ?? setUncontrolledOpen
|
|
|
|
const handleSubmit = async (formData: FormData) => {
|
|
const result = await createChapterAction(textbookId, parentId, null, formData)
|
|
if (result.success) {
|
|
toast.success(result.message)
|
|
setOpen(false)
|
|
} else {
|
|
toast.error(result.message)
|
|
}
|
|
}
|
|
|
|
const triggerNode =
|
|
trigger === null
|
|
? null
|
|
: trigger || (
|
|
<Button variant="ghost" size="sm" className="h-8 w-8 p-0">
|
|
<Plus className="h-4 w-4" />
|
|
</Button>
|
|
)
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
{triggerNode ? <DialogTrigger asChild>{triggerNode}</DialogTrigger> : null}
|
|
<DialogContent className="sm:max-w-[425px]">
|
|
<DialogHeader>
|
|
<DialogTitle>Add New Chapter</DialogTitle>
|
|
<DialogDescription>
|
|
Create a new chapter or section.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<form action={handleSubmit}>
|
|
<div className="grid gap-4 py-4">
|
|
<div className="grid grid-cols-4 items-center gap-4">
|
|
<Label htmlFor="title" className="text-right">
|
|
Title
|
|
</Label>
|
|
<Input
|
|
id="title"
|
|
name="title"
|
|
placeholder="e.g. Chapter 1: Introduction"
|
|
className="col-span-3"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<SubmitButton />
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|