forked from github/plane
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
112 lines
2.7 KiB
TypeScript
112 lines
2.7 KiB
TypeScript
import React, { useMemo } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import dynamic from "next/dynamic";
|
|
|
|
import { mutate } from "swr";
|
|
|
|
// react-hook-form
|
|
import { useForm, Controller } from "react-hook-form";
|
|
// services
|
|
import issuesServices from "services/issues.service";
|
|
// ui
|
|
import { Loader, SecondaryButton } from "components/ui";
|
|
// helpers
|
|
import { debounce } from "helpers/common.helper";
|
|
// types
|
|
import type { IIssueComment } from "types";
|
|
// fetch-keys
|
|
import { PROJECT_ISSUES_ACTIVITY } from "constants/fetch-keys";
|
|
|
|
const RemirrorRichTextEditor = dynamic(() => import("components/rich-text-editor"), {
|
|
ssr: false,
|
|
loading: () => (
|
|
<Loader className="mb-5">
|
|
<Loader.Item height="12rem" width="100%" />
|
|
</Loader>
|
|
),
|
|
});
|
|
|
|
const defaultValues: Partial<IIssueComment> = {
|
|
comment_html: "",
|
|
comment_json: "",
|
|
};
|
|
|
|
export const AddComment: React.FC = () => {
|
|
const {
|
|
handleSubmit,
|
|
control,
|
|
setValue,
|
|
formState: { isSubmitting },
|
|
reset,
|
|
} = useForm<IIssueComment>({ defaultValues });
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const onSubmit = async (formData: IIssueComment) => {
|
|
if (
|
|
!workspaceSlug ||
|
|
!projectId ||
|
|
!issueId ||
|
|
isSubmitting ||
|
|
!formData.comment_html ||
|
|
!formData.comment_json
|
|
)
|
|
return;
|
|
await issuesServices
|
|
.createIssueComment(workspaceSlug as string, projectId as string, issueId as string, formData)
|
|
.then(() => {
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
reset(defaultValues);
|
|
})
|
|
.catch((error) => {
|
|
console.error(error);
|
|
});
|
|
};
|
|
|
|
const updateDescription = useMemo(
|
|
() =>
|
|
debounce((key: any, val: any) => {
|
|
setValue(key, val);
|
|
}, 1000),
|
|
[setValue]
|
|
);
|
|
|
|
const updateDescriptionHTML = useMemo(
|
|
() =>
|
|
debounce((key: any, val: any) => {
|
|
setValue(key, val);
|
|
}, 1000),
|
|
[setValue]
|
|
);
|
|
|
|
return (
|
|
<div>
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="issue-comments-section" >
|
|
<Controller
|
|
name="comment_html"
|
|
control={control}
|
|
render={({ field: { value } }) => (
|
|
<RemirrorRichTextEditor
|
|
value={value}
|
|
onBlur={(jsonValue, htmlValue) => {
|
|
setValue("comment_json", jsonValue);
|
|
setValue("comment_html", htmlValue);
|
|
}}
|
|
placeholder="Enter your comment..."
|
|
/>
|
|
)}
|
|
/>
|
|
|
|
<SecondaryButton type="submit" disabled={isSubmitting} className="mt-2">
|
|
{isSubmitting ? "Adding..." : "Comment"}
|
|
</SecondaryButton>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
);
|
|
};
|