forked from github/plane
bbbd7047d3
* fix: updated description init loading and added loading confirmation alert in inbox issues, issue peek overview, and issue detail * fix: updated the space issue in the editor and removed unwanted props in the description-input for issues
95 lines
2.9 KiB
TypeScript
95 lines
2.9 KiB
TypeScript
import { FC, useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
// store hooks
|
|
import { useIssueDetail, useProject, useUser } from "hooks/store";
|
|
// hooks
|
|
import useReloadConfirmations from "hooks/use-reload-confirmation";
|
|
// components
|
|
import { TIssueOperations } from "components/issues";
|
|
import { IssueReaction } from "../issue-detail/reactions";
|
|
import { IssueTitleInput } from "../title-input";
|
|
import { IssueDescriptionInput } from "../description-input";
|
|
|
|
interface IPeekOverviewIssueDetails {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
issueOperations: TIssueOperations;
|
|
disabled: boolean;
|
|
isSubmitting: "submitting" | "submitted" | "saved";
|
|
setIsSubmitting: (value: "submitting" | "submitted" | "saved") => void;
|
|
}
|
|
|
|
export const PeekOverviewIssueDetails: FC<IPeekOverviewIssueDetails> = observer((props) => {
|
|
const { workspaceSlug, issueId, issueOperations, disabled, isSubmitting, setIsSubmitting } = props;
|
|
// store hooks
|
|
const { getProjectById } = useProject();
|
|
const { currentUser } = useUser();
|
|
const {
|
|
issue: { getIssueById },
|
|
} = useIssueDetail();
|
|
// hooks
|
|
const { setShowAlert } = useReloadConfirmations(isSubmitting === "submitting");
|
|
|
|
useEffect(() => {
|
|
if (isSubmitting === "submitted") {
|
|
setShowAlert(false);
|
|
setTimeout(async () => {
|
|
setIsSubmitting("saved");
|
|
}, 2000);
|
|
} else if (isSubmitting === "submitting") {
|
|
setShowAlert(true);
|
|
}
|
|
}, [isSubmitting, setShowAlert, setIsSubmitting]);
|
|
|
|
const issue = issueId ? getIssueById(issueId) : undefined;
|
|
if (!issue) return <></>;
|
|
|
|
const projectDetails = getProjectById(issue?.project_id);
|
|
|
|
const issueDescription =
|
|
issue.description_html !== undefined || issue.description_html !== null
|
|
? issue.description_html != ""
|
|
? issue.description_html
|
|
: "<p></p>"
|
|
: undefined;
|
|
|
|
return (
|
|
<>
|
|
<span className="text-base font-medium text-custom-text-400">
|
|
{projectDetails?.identifier}-{issue?.sequence_id}
|
|
</span>
|
|
<IssueTitleInput
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={issue.project_id}
|
|
issueId={issue.id}
|
|
isSubmitting={isSubmitting}
|
|
setIsSubmitting={(value) => setIsSubmitting(value)}
|
|
issueOperations={issueOperations}
|
|
disabled={disabled}
|
|
value={issue.name}
|
|
/>
|
|
|
|
<IssueDescriptionInput
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={issue.project_id}
|
|
issueId={issue.id}
|
|
value={issueDescription}
|
|
initialValue={issueDescription}
|
|
disabled={disabled}
|
|
issueOperations={issueOperations}
|
|
setIsSubmitting={(value) => setIsSubmitting(value)}
|
|
/>
|
|
|
|
{currentUser && (
|
|
<IssueReaction
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={issue.project_id}
|
|
issueId={issueId}
|
|
currentUser={currentUser}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|