mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
391 lines
14 KiB
TypeScript
391 lines
14 KiB
TypeScript
import { FC, useMemo } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
import { TIssue } from "@plane/types";
|
|
// components
|
|
import { TOAST_TYPE, setPromiseToast, setToast } from "@plane/ui";
|
|
import { EmptyState } from "@/components/common";
|
|
import { IssuePeekOverview } from "@/components/issues";
|
|
import { ISSUE_UPDATED, ISSUE_DELETED, ISSUE_ARCHIVED } from "@/constants/event-tracker";
|
|
import { EIssuesStoreType } from "@/constants/issue";
|
|
import { EUserProjectRoles } from "@/constants/project";
|
|
import { useApplication, useEventTracker, useIssueDetail, useIssues, useUser } from "@/hooks/store";
|
|
import emptyIssue from "public/empty-state/issue.svg";
|
|
import { IssueMainContent } from "./main-content";
|
|
import { IssueDetailsSidebar } from "./sidebar";
|
|
// ui
|
|
// images
|
|
// hooks
|
|
// types
|
|
// ui
|
|
// constants
|
|
|
|
export type TIssueOperations = {
|
|
fetch: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
update: (workspaceSlug: string, projectId: string, issueId: string, data: Partial<TIssue>) => Promise<void>;
|
|
remove: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
archive?: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
restore?: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
addIssueToCycle?: (workspaceSlug: string, projectId: string, cycleId: string, issueIds: string[]) => Promise<void>;
|
|
removeIssueFromCycle?: (workspaceSlug: string, projectId: string, cycleId: string, issueId: string) => Promise<void>;
|
|
addModulesToIssue?: (workspaceSlug: string, projectId: string, issueId: string, moduleIds: string[]) => Promise<void>;
|
|
removeIssueFromModule?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
issueId: string
|
|
) => Promise<void>;
|
|
removeModulesFromIssue?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
moduleIds: string[]
|
|
) => Promise<void>;
|
|
};
|
|
|
|
export type TIssueDetailRoot = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
is_archived?: boolean;
|
|
swrIssueDetails: TIssue | null | undefined;
|
|
};
|
|
|
|
export const IssueDetailRoot: FC<TIssueDetailRoot> = observer((props) => {
|
|
const { workspaceSlug, projectId, issueId, swrIssueDetails, is_archived = false } = props;
|
|
// router
|
|
const router = useRouter();
|
|
// hooks
|
|
const {
|
|
issue: { getIssueById },
|
|
fetchIssue,
|
|
updateIssue,
|
|
removeIssue,
|
|
archiveIssue,
|
|
addIssueToCycle,
|
|
removeIssueFromCycle,
|
|
addModulesToIssue,
|
|
removeIssueFromModule,
|
|
removeModulesFromIssue,
|
|
} = useIssueDetail();
|
|
const {
|
|
issues: { removeIssue: removeArchivedIssue },
|
|
} = useIssues(EIssuesStoreType.ARCHIVED);
|
|
const { captureIssueEvent } = useEventTracker();
|
|
const {
|
|
membership: { currentProjectRole },
|
|
} = useUser();
|
|
const { theme: themeStore } = useApplication();
|
|
|
|
const issueOperations: TIssueOperations = useMemo(
|
|
() => ({
|
|
fetch: async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
await fetchIssue(workspaceSlug, projectId, issueId);
|
|
} catch (error) {
|
|
console.error("Error fetching the parent issue");
|
|
}
|
|
},
|
|
update: async (workspaceSlug: string, projectId: string, issueId: string, data: Partial<TIssue>) => {
|
|
try {
|
|
await updateIssue(workspaceSlug, projectId, issueId, data);
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { ...data, issueId, state: "SUCCESS", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: Object.keys(data).join(","),
|
|
change_details: Object.values(data).join(","),
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { state: "FAILED", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: Object.keys(data).join(","),
|
|
change_details: Object.values(data).join(","),
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
setToast({
|
|
title: "Issue update failed",
|
|
type: TOAST_TYPE.ERROR,
|
|
message: "Issue update failed",
|
|
});
|
|
}
|
|
},
|
|
remove: async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
if (is_archived) await removeArchivedIssue(workspaceSlug, projectId, issueId);
|
|
else await removeIssue(workspaceSlug, projectId, issueId);
|
|
setToast({
|
|
title: "Issue deleted successfully",
|
|
type: TOAST_TYPE.SUCCESS,
|
|
message: "Issue deleted successfully",
|
|
});
|
|
captureIssueEvent({
|
|
eventName: ISSUE_DELETED,
|
|
payload: { id: issueId, state: "SUCCESS", element: "Issue detail page" },
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
setToast({
|
|
title: "Issue delete failed",
|
|
type: TOAST_TYPE.ERROR,
|
|
message: "Issue delete failed",
|
|
});
|
|
captureIssueEvent({
|
|
eventName: ISSUE_DELETED,
|
|
payload: { id: issueId, state: "FAILED", element: "Issue detail page" },
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
archive: async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
await archiveIssue(workspaceSlug, projectId, issueId);
|
|
captureIssueEvent({
|
|
eventName: ISSUE_ARCHIVED,
|
|
payload: { id: issueId, state: "SUCCESS", element: "Issue details page" },
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_ARCHIVED,
|
|
payload: { id: issueId, state: "FAILED", element: "Issue details page" },
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
addIssueToCycle: async (workspaceSlug: string, projectId: string, cycleId: string, issueIds: string[]) => {
|
|
try {
|
|
const addToCyclePromise = addIssueToCycle(workspaceSlug, projectId, cycleId, issueIds);
|
|
setPromiseToast(addToCyclePromise, {
|
|
loading: "Adding cycle to issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Cycle added to issue successfully",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Cycle add to issue failed",
|
|
},
|
|
});
|
|
await addToCyclePromise;
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { ...issueIds, state: "SUCCESS", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "cycle_id",
|
|
change_details: cycleId,
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { state: "FAILED", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "cycle_id",
|
|
change_details: cycleId,
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
removeIssueFromCycle: async (workspaceSlug: string, projectId: string, cycleId: string, issueId: string) => {
|
|
try {
|
|
const removeFromCyclePromise = removeIssueFromCycle(workspaceSlug, projectId, cycleId, issueId);
|
|
setPromiseToast(removeFromCyclePromise, {
|
|
loading: "Removing cycle from issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Cycle removed from issue successfully",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Cycle remove from issue failed",
|
|
},
|
|
});
|
|
await removeFromCyclePromise;
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { issueId, state: "SUCCESS", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "cycle_id",
|
|
change_details: "",
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { state: "FAILED", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "cycle_id",
|
|
change_details: "",
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
addModulesToIssue: async (workspaceSlug: string, projectId: string, issueId: string, moduleIds: string[]) => {
|
|
try {
|
|
const addToModulePromise = addModulesToIssue(workspaceSlug, projectId, issueId, moduleIds);
|
|
setPromiseToast(addToModulePromise, {
|
|
loading: "Adding module to issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Module added to issue successfully",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Module add to issue failed",
|
|
},
|
|
});
|
|
const response = await addToModulePromise;
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { ...response, state: "SUCCESS", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "module_id",
|
|
change_details: moduleIds,
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { id: issueId, state: "FAILED", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "module_id",
|
|
change_details: moduleIds,
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
removeIssueFromModule: async (workspaceSlug: string, projectId: string, moduleId: string, issueId: string) => {
|
|
try {
|
|
const removeFromModulePromise = removeIssueFromModule(workspaceSlug, projectId, moduleId, issueId);
|
|
setPromiseToast(removeFromModulePromise, {
|
|
loading: "Removing module from issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Module removed from issue successfully",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Module remove from issue failed",
|
|
},
|
|
});
|
|
await removeFromModulePromise;
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { id: issueId, state: "SUCCESS", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "module_id",
|
|
change_details: "",
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
} catch (error) {
|
|
captureIssueEvent({
|
|
eventName: ISSUE_UPDATED,
|
|
payload: { id: issueId, state: "FAILED", element: "Issue detail page" },
|
|
updates: {
|
|
changed_property: "module_id",
|
|
change_details: "",
|
|
},
|
|
path: router.asPath,
|
|
});
|
|
}
|
|
},
|
|
removeModulesFromIssue: async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
moduleIds: string[]
|
|
) => {
|
|
const removeModulesFromIssuePromise = removeModulesFromIssue(workspaceSlug, projectId, issueId, moduleIds);
|
|
setPromiseToast(removeModulesFromIssuePromise, {
|
|
loading: "Removing module from issue...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Module removed from issue successfully",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Module remove from issue failed",
|
|
},
|
|
});
|
|
await removeModulesFromIssuePromise;
|
|
},
|
|
}),
|
|
[
|
|
is_archived,
|
|
fetchIssue,
|
|
updateIssue,
|
|
removeIssue,
|
|
archiveIssue,
|
|
removeArchivedIssue,
|
|
addIssueToCycle,
|
|
removeIssueFromCycle,
|
|
addModulesToIssue,
|
|
removeIssueFromModule,
|
|
removeModulesFromIssue,
|
|
]
|
|
);
|
|
|
|
// issue details
|
|
const issue = getIssueById(issueId);
|
|
// checking if issue is editable, based on user role
|
|
const isEditable = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
|
|
|
return (
|
|
<>
|
|
{!issue ? (
|
|
<EmptyState
|
|
image={emptyIssue}
|
|
title="Issue does not exist"
|
|
description="The issue you are looking for does not exist, has been archived, or has been deleted."
|
|
primaryButton={{
|
|
text: "View other issues",
|
|
onClick: () => router.push(`/${workspaceSlug}/projects/${projectId}/issues`),
|
|
}}
|
|
/>
|
|
) : (
|
|
<div className="flex h-full w-full overflow-hidden">
|
|
<div className="max-w-2/3 h-full w-full space-y-5 divide-y-2 divide-custom-border-200 overflow-y-auto p-5">
|
|
<IssueMainContent
|
|
workspaceSlug={workspaceSlug}
|
|
swrIssueDetails={swrIssueDetails}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
issueOperations={issueOperations}
|
|
isEditable={!is_archived && isEditable}
|
|
/>
|
|
</div>
|
|
<div
|
|
className="fixed right-0 z-[5] h-full w-full min-w-[300px] overflow-hidden border-l border-custom-border-200 bg-custom-sidebar-background-100 py-5 sm:w-1/2 md:relative md:w-1/3 lg:min-w-80 xl:min-w-96"
|
|
style={themeStore.issueDetailSidebarCollapsed ? { right: `-${window?.innerWidth || 0}px` } : {}}
|
|
>
|
|
<IssueDetailsSidebar
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
issueOperations={issueOperations}
|
|
is_archived={is_archived}
|
|
isEditable={!is_archived && isEditable}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* peek overview */}
|
|
<IssuePeekOverview />
|
|
</>
|
|
);
|
|
});
|