89 lines
3.3 KiB
JavaScript
89 lines
3.3 KiB
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
|
|
import { I as InputError } from "./input-error-D1JIzedA.js";
|
|
import { L as LoadingButton } from "./loading-button-CCIxhJrY.js";
|
|
import { B as Button } from "./button-CdJZJLGw.js";
|
|
import { D as Dialog, a as DialogTrigger, b as DialogContent, c as DialogHeader, d as DialogTitle, e as DialogFooter, f as DialogClose } from "./dialog-DGP_3dPQ.js";
|
|
import { L as Label } from "./label-0rIIfpX0.js";
|
|
import { usePage, useForm } from "@inertiajs/react";
|
|
import { useState } from "react";
|
|
import { Editor } from "richtor";
|
|
/* empty css */
|
|
import "./utils-DLCPGU0v.js";
|
|
import "clsx";
|
|
import "tailwind-merge";
|
|
import "lucide-react";
|
|
import "@radix-ui/react-slot";
|
|
import "class-variance-authority";
|
|
import "@radix-ui/react-dialog";
|
|
import "@radix-ui/react-label";
|
|
const ForumReply = ({ url, user, forum, reply, actionComponent }) => {
|
|
const [open, setOpen] = useState(false);
|
|
const { props } = usePage();
|
|
const { translate } = props;
|
|
const { button, input, frontend } = translate;
|
|
const { data, setData, post, put, errors, processing, reset } = useForm({
|
|
url,
|
|
user_id: user.id,
|
|
course_id: forum.course_id,
|
|
course_forum_id: forum.id,
|
|
course_forum_user_id: forum.user_id,
|
|
description: reply ? reply.description : ""
|
|
});
|
|
const handleSubmit = (e) => {
|
|
e.preventDefault();
|
|
if (reply) {
|
|
put(route("course-forum-replies.update", reply.id), {
|
|
onSuccess: () => {
|
|
reset();
|
|
setOpen(false);
|
|
}
|
|
});
|
|
} else {
|
|
post(route("course-forum-replies.store"), {
|
|
onSuccess: () => {
|
|
reset();
|
|
setOpen(false);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
return /* @__PURE__ */ jsxs(Dialog, { open, onOpenChange: setOpen, children: [
|
|
/* @__PURE__ */ jsx(DialogTrigger, { asChild: true, children: actionComponent }),
|
|
/* @__PURE__ */ jsxs(DialogContent, { children: [
|
|
/* @__PURE__ */ jsx(DialogHeader, { children: /* @__PURE__ */ jsxs(DialogTitle, { children: [
|
|
reply ? button.edit : button.add,
|
|
" ",
|
|
frontend.forum_reply
|
|
] }) }),
|
|
/* @__PURE__ */ jsxs("form", { onSubmit: handleSubmit, className: "space-y-4 p-0.5", children: [
|
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
/* @__PURE__ */ jsx(Label, { children: input.description }),
|
|
/* @__PURE__ */ jsx(
|
|
Editor,
|
|
{
|
|
ssr: true,
|
|
output: "html",
|
|
placeholder: {
|
|
paragraph: input.content_placeholder,
|
|
imageCaption: input.image_caption_placeholder
|
|
},
|
|
contentMinHeight: 260,
|
|
contentMaxHeight: 600,
|
|
initialContent: data.description,
|
|
onContentChange: (value) => setData("description", value)
|
|
}
|
|
),
|
|
/* @__PURE__ */ jsx(InputError, { message: errors.description })
|
|
] }),
|
|
/* @__PURE__ */ jsxs(DialogFooter, { children: [
|
|
/* @__PURE__ */ jsx(LoadingButton, { loading: processing, children: reply ? button.update : button.submit }),
|
|
/* @__PURE__ */ jsx(DialogClose, { asChild: true, children: /* @__PURE__ */ jsx(Button, { variant: "outline", children: button.cancel }) })
|
|
] })
|
|
] })
|
|
] })
|
|
] });
|
|
};
|
|
export {
|
|
ForumReply as default
|
|
};
|