mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1655d0cb1c
* feat: update, delete link refactor: using old fetch-key * feat: issue activity with ability to view & add comment feat: click on view more to view more options in the issue detail * fix: upload image not working on mobile
176 lines
4.3 KiB
TypeScript
176 lines
4.3 KiB
TypeScript
// react
|
|
import React, { useCallback, useEffect } from "react";
|
|
|
|
// next
|
|
import { useRouter } from "next/router";
|
|
|
|
// swr
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// react hook forms
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
|
|
// fetch key
|
|
import { ISSUE_DETAILS, PROJECT_ISSUES_ACTIVITY } from "constants/fetch-keys";
|
|
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
import useProjectMembers from "hooks/use-project-members";
|
|
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
|
|
// ui
|
|
import { Spinner } from "components/ui";
|
|
|
|
// components
|
|
import {
|
|
IssueWebViewForm,
|
|
SubIssueList,
|
|
IssueAttachments,
|
|
IssuePropertiesDetail,
|
|
IssueLinks,
|
|
IssueActivity,
|
|
} from "components/web-view";
|
|
|
|
// types
|
|
import type { IIssue } from "types";
|
|
|
|
const MobileWebViewIssueDetail = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
|
|
const memberRole = useProjectMembers(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
!!workspaceSlug && !!projectId
|
|
);
|
|
|
|
const isAllowed = Boolean(memberRole.isMember || memberRole.isOwner);
|
|
|
|
const { user } = useUser();
|
|
|
|
const { register, control, reset, handleSubmit, watch } = useForm<IIssue>({
|
|
defaultValues: {
|
|
name: "",
|
|
description: "",
|
|
description_html: "",
|
|
state: "",
|
|
},
|
|
});
|
|
|
|
const {
|
|
data: issueDetails,
|
|
mutate: mutateIssueDetails,
|
|
error,
|
|
} = useSWR(
|
|
workspaceSlug && projectId && issueId ? ISSUE_DETAILS(issueId.toString()) : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () =>
|
|
issuesService.retrieve(workspaceSlug.toString(), projectId.toString(), issueId.toString())
|
|
: null
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!issueDetails) return;
|
|
reset({
|
|
...issueDetails,
|
|
name: issueDetails.name,
|
|
description: issueDetails.description,
|
|
description_html: issueDetails.description_html,
|
|
state: issueDetails.state,
|
|
assignees_list:
|
|
issueDetails.assignees_list ?? issueDetails.assignee_details?.map((user) => user.id),
|
|
labels_list: issueDetails.labels_list ?? issueDetails.labels,
|
|
labels: issueDetails.labels_list ?? issueDetails.labels,
|
|
});
|
|
}, [issueDetails, reset]);
|
|
|
|
const submitChanges = useCallback(
|
|
async (formData: Partial<IIssue>) => {
|
|
if (!workspaceSlug || !projectId || !issueId) return;
|
|
|
|
mutate<IIssue>(
|
|
ISSUE_DETAILS(issueId.toString()),
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
...formData,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
const payload: Partial<IIssue> = {
|
|
...formData,
|
|
};
|
|
|
|
delete payload.blocker_issues;
|
|
delete payload.blocked_issues;
|
|
|
|
await issuesService
|
|
.patchIssue(workspaceSlug as string, projectId as string, issueId as string, payload, user)
|
|
.then(() => {
|
|
mutateIssueDetails();
|
|
mutate(PROJECT_ISSUES_ACTIVITY(issueId as string));
|
|
})
|
|
.catch((e) => {
|
|
console.error(e);
|
|
});
|
|
},
|
|
[workspaceSlug, issueId, projectId, mutateIssueDetails, user]
|
|
);
|
|
|
|
if (!error && !issueDetails)
|
|
return (
|
|
<DefaultLayout>
|
|
<div className="px-4 py-2 h-full">
|
|
<div className="h-full flex justify-center items-center">
|
|
<Spinner />
|
|
Loading...
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|
|
);
|
|
|
|
if (error)
|
|
return (
|
|
<DefaultLayout>
|
|
<div className="px-4 py-2">{error?.response?.data || "Something went wrong"}</div>
|
|
</DefaultLayout>
|
|
);
|
|
|
|
return (
|
|
<DefaultLayout>
|
|
<div className="px-6 py-2 h-full overflow-auto space-y-3">
|
|
<IssueWebViewForm
|
|
isAllowed={isAllowed}
|
|
issueDetails={issueDetails!}
|
|
submitChanges={submitChanges}
|
|
register={register}
|
|
control={control}
|
|
watch={watch}
|
|
handleSubmit={handleSubmit}
|
|
/>
|
|
|
|
<SubIssueList issueDetails={issueDetails!} />
|
|
|
|
<IssuePropertiesDetail control={control} submitChanges={submitChanges} />
|
|
|
|
<IssueAttachments allowed={isAllowed} />
|
|
|
|
<IssueLinks allowed={isAllowed} issueDetails={issueDetails!} />
|
|
|
|
<IssueActivity allowed={isAllowed} issueDetails={issueDetails!} />
|
|
</div>
|
|
</DefaultLayout>
|
|
);
|
|
};
|
|
|
|
export default MobileWebViewIssueDetail;
|