forked from github/plane
3e2355e223
* fix: stroing the transactions in page * fix: page details changes * chore: page response change * chore: removed duplicated endpoints * chore: optimised the urls * chore: removed archived and favorite pages * chore: revamping pages store and components * mentions loading state part done * fixed mentions not showing in modals * removed comments and cleaned up types * removed unused types * reset: head * chore: pages store and component updates * style: pages list item UI * fix: improved colors and drag handle width * fix: slash commands are no more shown in the code blocks * fix: cleanup/hide drag handles post drop * fix: hide/cleanup drag handles post drag start * fix: aligning the drag handles better with the node post css changes of the length * fix: juggling back and forth of drag handles in ordered and unordered lists * chore: fix imports, ts errors and other things * fix: clearing nodes to default node i.e paragraph before converting it to other types of nodes For more reference on what this does, please refer https://tiptap.dev/docs/editor/api/commands/clear-nodes * chore: clearNodes after delete in case of selections being present * fix: hiding link selector in the bubble menu if inline code block is selected * chore: filtering, ordering and searching implemented * chore: updated pages store and updated UI * chore: new core editor just for document editor created * chore: removed setIsSubmitting prop in doc editor * fix: fixed submitting state for image uploads * refactor: setShouldShowAlert removed * refactor: rerenderOnPropsChange prop removed * chore: type inference magic in ref to expose an api for controlling editor menu items from outside * fix: naming imports * chore: change names of the exposed functions and removing old types * refactor: remove debouncedUpdatesEnabled prop; * refactor: editor heading markings now parsed using html * chore: removed unrelated components from the document editor * refactor: page details granular components * fix: remove onActionCompleteHandler * refactor: removed rerenderOnProps change prop * feat: added getMarkDown function * chore: update dropdown option actions * fix: sidebar markings update logic * chore: add image and to-do list actions to the toolbar * fix: handling refs and populating them via callbacks * feat: scroll to node api exposed * cleaning up editor refs when the editor is destroyed * feat: scrolling added to read only instance of the editor * fix: markings logic * fix: build errors with types * fix: build erros * fix: subscribing to transactions of editor via ref * chore: remove debug statements * fix: type errors * fix: temporary different slash commands for document editor * chore: inline code extension style * chore: remove border from readOnly editor * fix: editor bottom padding * chore: pages improvements * chore: handle Enter key on the page title * feat: added loading indicator logic in mentions * fix: mentions and slash commands now work well with multiple editors in one place * refactor: page store structure, filtering logic * feat: added better seperation in inline code blocks * feat: list autojoining added * fix: pages folder structure * fix: image refocus from external parts * working lists somewhat * chore: implement page reactions * fix: build errors * fix: build errors * fixed drag handles stuff * task list item fixed * working * fix: working on multiple nested lists * chore: remove debug statements * fix: Tab key on first list item handled to not go out of editor focus * feat: threshold auto scroll support added and multi nested list selection fixed * fix: caret color bug with improved inline code blocks * fix: node range error when bulk deleting with list * fix: removed slash commands from working in code blocks * chore: update typography margins * chore: new field added in page model * fix: better type inference in slash commands * chore: code block UI * feat: image insertion at correct position using ref added * feat: added improved mentions support for space * fix: type errors in mentions for comments in web app * sync: core with document-core * fix: build errors * fix: fallback for appendTo not being able to find active container instantly * fix: page store * fix: page description * fix: css quality issues * chore: code cleanup * chore: removed placeholder text in codeblocks * chore: archived pages response change * chore: archived pages response change * fix: initial pages list fetch * fix: pages list filters and ordering * chore: add access change option in the quick actions dropdown * fix: inline code block caret fixed * regression: removing extra text * chore: caret color removed * feat: copy code button added in code blocks * fix: initial load of page details * fix: initial load of page details * fix: image resizing weird behavior on click/expanding it too much fixed now * chore: copy page response * fix: todo list spacing * chore: description html in the copy page * chore: handle latest description on refetch * fix: saner scroll behaviours * fix: block menu positioning * fix: updated empty string description * feat: tab change sync support added * fix: infinite rerendering with markings * fix: block menu finally * fix: intial load on reload bug fixed * fix: nested lists alignment * fix: editor padding * fix: first level list items copyable * chore: list spacing * fix: title change * fix: pages list block items interaction * fix: saving chip position * fix: delete action from block menu to focus properly * fix: margin-bottom as 0 to avoid weird spacing when a paragraph node follows a list node * style: table, chore: lite text editor toolbar * fix: page description tab sync * fix: lists spacing and alignment * refactor: document editor props * feat: rich text editor wrapper created and migrated core * feat: created wrapper around lite text editor and merged core * chore: add lite text editor toolbar * fix: build errors * fix: type errors and addead live updation of toolbar * chore: pages migration * fix: inbox issue * refactor: remove redundant package * refactor: unused files * fix: add dompurify to space app * fix: inline code margin * fix: editor className props * fix: build errors * fix: traversing up the tree before assuming the parent is not a list item * fix: drag handle positions for list items fixed * fix: removed focus at end logic after deleting block * fix: image wrapper overflow scroll fix with block menu's position * fix: selection and deletion logic for nested lists fixed!! * fix: hiding the block menu while scrolling in the document/app * fix: merge conflicts resolved from develop * fix: inbox issue description * chore: move page title to the web app * fix: handling edge cases for table selection * chore: lint issues * refactor: list item functions moved to same file * refactor: use mention hook * fix: added try catch blocks for mention suggestions * chore: remove unused code * fix: remove console logs * fix: remove console logs --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com>
327 lines
13 KiB
TypeScript
327 lines
13 KiB
TypeScript
import { Fragment, useRef, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
import { Sparkle } from "lucide-react";
|
|
import { Transition, Dialog } from "@headlessui/react";
|
|
import { EditorRefApi } from "@plane/rich-text-editor";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
// ui
|
|
import { Button, Input, ToggleSwitch, TOAST_TYPE, setToast } from "@plane/ui";
|
|
// components
|
|
import { GptAssistantPopover } from "@/components/core";
|
|
import { PriorityDropdown } from "@/components/dropdowns";
|
|
import { RichTextEditor } from "@/components/editor/rich-text-editor/rich-text-editor";
|
|
import { ISSUE_CREATED } from "@/constants/event-tracker";
|
|
import { useApplication, useEventTracker, useWorkspace, useProjectInbox } from "@/hooks/store";
|
|
// services
|
|
import { AIService } from "@/services/ai.service";
|
|
// components
|
|
// ui
|
|
// types
|
|
// constants
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
};
|
|
|
|
const defaultValues: Partial<TIssue> = {
|
|
name: "",
|
|
description_html: "<p></p>",
|
|
priority: "none",
|
|
};
|
|
|
|
// services
|
|
const aiService = new AIService();
|
|
|
|
export const CreateInboxIssueModal: React.FC<Props> = observer((props) => {
|
|
const { isOpen, onClose } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
if (!workspaceSlug || !projectId) return null;
|
|
// states
|
|
const [createMore, setCreateMore] = useState(false);
|
|
const [gptAssistantModal, setGptAssistantModal] = useState(false);
|
|
const [iAmFeelingLucky, setIAmFeelingLucky] = useState(false);
|
|
// refs
|
|
const editorRef = useRef<EditorRefApi>(null);
|
|
// hooks
|
|
const workspaceStore = useWorkspace();
|
|
const workspaceId = workspaceStore.getWorkspaceBySlug(workspaceSlug.toString() as string)?.id.toString() as string;
|
|
|
|
// store hooks
|
|
const { createInboxIssue } = useProjectInbox();
|
|
const {
|
|
config: { envConfig },
|
|
} = useApplication();
|
|
const { captureIssueEvent } = useEventTracker();
|
|
// form info
|
|
const {
|
|
control,
|
|
formState: { errors, isSubmitting },
|
|
handleSubmit,
|
|
reset,
|
|
watch,
|
|
getValues,
|
|
} = useForm<Partial<TIssue>>({ defaultValues });
|
|
const issueName = watch("name");
|
|
|
|
const handleClose = () => {
|
|
onClose();
|
|
reset(defaultValues);
|
|
editorRef?.current?.clearEditor();
|
|
};
|
|
|
|
const handleFormSubmit = async (formData: Partial<TIssue>) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
await createInboxIssue(workspaceSlug.toString(), projectId.toString(), formData)
|
|
.then((res) => {
|
|
if (!createMore) {
|
|
router.push(`/${workspaceSlug}/projects/${projectId}/inbox/?currentTab=open&inboxIssueId=${res?.issue?.id}`);
|
|
handleClose();
|
|
} else {
|
|
reset(defaultValues);
|
|
editorRef?.current?.clearEditor();
|
|
}
|
|
captureIssueEvent({
|
|
eventName: ISSUE_CREATED,
|
|
payload: {
|
|
...formData,
|
|
state: "SUCCESS",
|
|
element: "Inbox page",
|
|
},
|
|
path: router.pathname,
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
console.error(error);
|
|
captureIssueEvent({
|
|
eventName: ISSUE_CREATED,
|
|
payload: {
|
|
...formData,
|
|
state: "FAILED",
|
|
element: "Inbox page",
|
|
},
|
|
path: router.pathname,
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleAiAssistance = async (response: string) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
editorRef.current?.setEditorValueAtCursorPosition(response);
|
|
};
|
|
|
|
const handleAutoGenerateDescription = async () => {
|
|
const issueName = getValues("name");
|
|
if (!workspaceSlug || !projectId || !issueName) return;
|
|
|
|
setIAmFeelingLucky(true);
|
|
|
|
aiService
|
|
.createGptTask(workspaceSlug as string, projectId as string, {
|
|
prompt: issueName,
|
|
task: "Generate a proper description for this issue.",
|
|
})
|
|
.then((res) => {
|
|
if (res.response === "")
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message:
|
|
"Issue title isn't informative enough to generate the description. Please try with a different title.",
|
|
});
|
|
else handleAiAssistance(res.response_html);
|
|
})
|
|
.catch((err) => {
|
|
const error = err?.data?.error;
|
|
|
|
if (err.status === 429)
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: error || "You have reached the maximum number of requests of 50 requests per month per user.",
|
|
});
|
|
else
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: error || "Some error occurred. Please try again.",
|
|
});
|
|
})
|
|
.finally(() => setIAmFeelingLucky(false));
|
|
};
|
|
|
|
return (
|
|
<Transition.Root show={isOpen} as={Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={onClose}>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-10 overflow-y-auto">
|
|
<div className="my-10 flex items-center justify-center p-4 text-center sm:p-0 md:my-20">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="relative transform rounded-lg bg-custom-background-100 p-5 text-left shadow-custom-shadow-md transition-all sm:w-full sm:max-w-2xl">
|
|
<form onSubmit={handleSubmit(handleFormSubmit)}>
|
|
<div className="space-y-5">
|
|
<h3 className="text-xl font-semibold leading-6 text-custom-text-100">Create Inbox Issue</h3>
|
|
<div className="space-y-3">
|
|
<div className="mt-2 space-y-3">
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="name"
|
|
rules={{
|
|
required: "Title is required",
|
|
maxLength: {
|
|
value: 255,
|
|
message: "Title should be less than 255 characters",
|
|
},
|
|
}}
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
value={value}
|
|
onChange={onChange}
|
|
ref={ref}
|
|
hasError={Boolean(errors.name)}
|
|
placeholder="Title"
|
|
className="w-full resize-none text-xl"
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div className="relative">
|
|
<div className="border-0.5 absolute bottom-3.5 right-3.5 z-10 flex rounded bg-custom-background-80">
|
|
{watch("name") && issueName !== "" && (
|
|
<button
|
|
type="button"
|
|
className={`flex items-center gap-1 rounded px-1.5 py-1 text-xs hover:bg-custom-background-90 ${
|
|
iAmFeelingLucky ? "cursor-wait" : ""
|
|
}`}
|
|
onClick={handleAutoGenerateDescription}
|
|
disabled={iAmFeelingLucky}
|
|
>
|
|
{iAmFeelingLucky ? (
|
|
"Generating response..."
|
|
) : (
|
|
<>
|
|
<Sparkle className="h-4 w-4" />I{"'"}m feeling lucky
|
|
</>
|
|
)}
|
|
</button>
|
|
)}
|
|
|
|
{envConfig?.has_openai_configured && (
|
|
<GptAssistantPopover
|
|
isOpen={gptAssistantModal}
|
|
projectId={projectId.toString()}
|
|
handleClose={() => {
|
|
setGptAssistantModal((prevData) => !prevData);
|
|
// this is done so that the title do not reset after gpt popover closed
|
|
reset(getValues());
|
|
}}
|
|
onResponse={(response) => {
|
|
handleAiAssistance(response);
|
|
}}
|
|
button={
|
|
<button
|
|
type="button"
|
|
className="flex items-center gap-1 rounded px-1.5 py-1 text-xs hover:bg-custom-background-90"
|
|
onClick={() => setGptAssistantModal((prevData) => !prevData)}
|
|
>
|
|
<Sparkle className="h-4 w-4" />
|
|
AI
|
|
</button>
|
|
}
|
|
className="!min-w-[38rem]"
|
|
placement="top-end"
|
|
/>
|
|
)}
|
|
</div>
|
|
<Controller
|
|
name="description_html"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<RichTextEditor
|
|
initialValue={!value || value === "" ? "<p></p>" : value}
|
|
ref={editorRef}
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
workspaceId={workspaceId}
|
|
projectId={projectId.toString()}
|
|
dragDropEnabled={false}
|
|
onChange={(_description: object, description_html: string) => {
|
|
onChange(description_html);
|
|
}}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<Controller
|
|
control={control}
|
|
name="priority"
|
|
render={({ field: { value, onChange } }) => (
|
|
<div className="h-5">
|
|
<PriorityDropdown
|
|
value={value ?? "none"}
|
|
onChange={onChange}
|
|
buttonVariant="background-with-text"
|
|
/>
|
|
</div>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="-mx-5 mt-5 flex items-center justify-between gap-2 border-t border-custom-border-200 px-5 pt-5">
|
|
<div
|
|
className="flex cursor-pointer items-center gap-1"
|
|
onClick={() => setCreateMore((prevData) => !prevData)}
|
|
>
|
|
<span className="text-xs">Create more</span>
|
|
<ToggleSwitch value={createMore} onChange={() => {}} size="md" />
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="neutral-primary" size="sm" onClick={() => handleClose()}>
|
|
Discard
|
|
</Button>
|
|
<Button variant="primary" size="sm" type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? "Adding Issue..." : "Add Issue"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
});
|