forked from github/plane
1dce72cb3c
* style: updated layouts UI in space * fix: build error
330 lines
13 KiB
TypeScript
330 lines
13 KiB
TypeScript
import { FC, ReactNode, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
import { MoveRight, MoveDiagonal, Bell, Link2, Trash2 } from "lucide-react";
|
|
// components
|
|
import { PeekOverviewIssueDetails } from "./issue-detail";
|
|
import { PeekOverviewProperties } from "./properties";
|
|
import { IssueComment } from "./activity";
|
|
import { Button, CenterPanelIcon, CustomSelect, FullScreenPanelIcon, SidePanelIcon } from "@plane/ui";
|
|
import { DeleteIssueModal } from "../delete-issue-modal";
|
|
import { DeleteArchivedIssueModal } from "../delete-archived-issue-modal";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import { RootStore } from "store/root";
|
|
// hooks
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
interface IIssueView {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
issue: IIssue | null;
|
|
isLoading?: boolean;
|
|
isArchived?: boolean;
|
|
handleCopyText: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
redirectToIssueDetail: () => void;
|
|
issueUpdate: (issue: Partial<IIssue>) => void;
|
|
issueReactionCreate: (reaction: string) => void;
|
|
issueReactionRemove: (reaction: string) => void;
|
|
issueCommentCreate: (comment: any) => void;
|
|
issueCommentUpdate: (comment: any) => void;
|
|
issueCommentRemove: (commentId: string) => void;
|
|
issueCommentReactionCreate: (commentId: string, reaction: string) => void;
|
|
issueCommentReactionRemove: (commentId: string, reaction: string) => void;
|
|
issueSubscriptionCreate: () => void;
|
|
issueSubscriptionRemove: () => void;
|
|
handleDeleteIssue: () => Promise<void>;
|
|
children: ReactNode;
|
|
disableUserActions?: boolean;
|
|
showCommentAccessSpecifier?: boolean;
|
|
}
|
|
|
|
type TPeekModes = "side-peek" | "modal" | "full-screen";
|
|
|
|
const peekOptions: { key: TPeekModes; icon: any; title: string }[] = [
|
|
{
|
|
key: "side-peek",
|
|
icon: SidePanelIcon,
|
|
title: "Side Peek",
|
|
},
|
|
{
|
|
key: "modal",
|
|
icon: CenterPanelIcon,
|
|
title: "Modal",
|
|
},
|
|
{
|
|
key: "full-screen",
|
|
icon: FullScreenPanelIcon,
|
|
title: "Full Screen",
|
|
},
|
|
];
|
|
|
|
export const IssueView: FC<IIssueView> = observer((props) => {
|
|
const {
|
|
workspaceSlug,
|
|
projectId,
|
|
issueId,
|
|
issue,
|
|
isLoading,
|
|
isArchived,
|
|
handleCopyText,
|
|
redirectToIssueDetail,
|
|
issueUpdate,
|
|
issueReactionCreate,
|
|
issueReactionRemove,
|
|
issueCommentCreate,
|
|
issueCommentUpdate,
|
|
issueCommentRemove,
|
|
issueCommentReactionCreate,
|
|
issueCommentReactionRemove,
|
|
issueSubscriptionCreate,
|
|
issueSubscriptionRemove,
|
|
handleDeleteIssue,
|
|
children,
|
|
disableUserActions = false,
|
|
showCommentAccessSpecifier = false,
|
|
} = props;
|
|
|
|
const router = useRouter();
|
|
const { peekIssueId } = router.query as { peekIssueId: string };
|
|
|
|
const { user: userStore, issueDetail: issueDetailStore }: RootStore = useMobxStore();
|
|
|
|
const [peekMode, setPeekMode] = useState<TPeekModes>("side-peek");
|
|
const [deleteIssueModal, setDeleteIssueModal] = useState(false);
|
|
|
|
const updateRoutePeekId = () => {
|
|
if (issueId != peekIssueId) {
|
|
issueDetailStore.setPeekId(issueId);
|
|
const { query } = router;
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query, peekIssueId: issueId },
|
|
});
|
|
}
|
|
};
|
|
const removeRoutePeekId = () => {
|
|
const { query } = router;
|
|
if (query.peekIssueId) {
|
|
issueDetailStore.setPeekId(null);
|
|
delete query.peekIssueId;
|
|
router.push({
|
|
pathname: router.pathname,
|
|
query: { ...query },
|
|
});
|
|
}
|
|
};
|
|
|
|
useSWR(
|
|
workspaceSlug && projectId && issueId && peekIssueId && issueId === peekIssueId
|
|
? `ISSUE_PEEK_OVERVIEW_SUBSCRIPTION_${workspaceSlug}_${projectId}_${peekIssueId}`
|
|
: null,
|
|
async () => {
|
|
if (workspaceSlug && projectId && issueId && peekIssueId && issueId === peekIssueId) {
|
|
await issueDetailStore.fetchIssueSubscription(workspaceSlug, projectId, issueId);
|
|
}
|
|
}
|
|
);
|
|
|
|
const issueReactions = issueDetailStore.getIssueReactions || [];
|
|
const issueComments = issueDetailStore.getIssueComments || [];
|
|
const issueSubscription = issueDetailStore.getIssueSubscription || [];
|
|
|
|
const user = userStore?.currentUser;
|
|
|
|
const currentMode = peekOptions.find((m) => m.key === peekMode);
|
|
|
|
return (
|
|
<>
|
|
{issue && !isArchived && (
|
|
<DeleteIssueModal
|
|
isOpen={deleteIssueModal}
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
data={issue}
|
|
onSubmit={handleDeleteIssue}
|
|
/>
|
|
)}
|
|
{issue && isArchived && (
|
|
<DeleteArchivedIssueModal
|
|
data={issue}
|
|
isOpen={deleteIssueModal}
|
|
handleClose={() => setDeleteIssueModal(false)}
|
|
onSubmit={handleDeleteIssue}
|
|
/>
|
|
)}
|
|
<div className="w-full !text-base">
|
|
{children && (
|
|
<div onClick={updateRoutePeekId} className="w-full cursor-pointer">
|
|
{children}
|
|
</div>
|
|
)}
|
|
|
|
{issueId === peekIssueId && (
|
|
<div
|
|
className={`fixed z-20 overflow-hidden bg-custom-background-100 flex flex-col transition-all duration-300 border border-custom-border-200 rounded
|
|
${peekMode === "side-peek" ? `w-full md:w-[50%] top-0 right-0 bottom-0` : ``}
|
|
${peekMode === "modal" ? `top-[50%] left-[50%] -translate-x-[50%] -translate-y-[50%] w-5/6 h-5/6` : ``}
|
|
${peekMode === "full-screen" ? `top-0 right-0 bottom-0 left-0 m-4` : ``}
|
|
`}
|
|
style={{
|
|
boxShadow:
|
|
"0px 4px 8px 0px rgba(0, 0, 0, 0.12), 0px 6px 12px 0px rgba(16, 24, 40, 0.12), 0px 1px 16px 0px rgba(16, 24, 40, 0.12)",
|
|
}}
|
|
>
|
|
{/* header */}
|
|
<div className="relative flex items-center justify-between p-5 border-b border-custom-border-200">
|
|
<div className="flex items-center gap-4">
|
|
<button onClick={removeRoutePeekId}>
|
|
<MoveRight className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
</button>
|
|
|
|
<button onClick={redirectToIssueDetail}>
|
|
<MoveDiagonal className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
</button>
|
|
{currentMode && (
|
|
<div className="flex-shrink-0 flex items-center gap-2">
|
|
<CustomSelect
|
|
value={currentMode}
|
|
onChange={(val: any) => setPeekMode(val)}
|
|
customButton={
|
|
<button type="button" className="">
|
|
<currentMode.icon className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
</button>
|
|
}
|
|
>
|
|
{peekOptions.map((mode) => (
|
|
<CustomSelect.Option key={mode.key} value={mode.key}>
|
|
<div
|
|
className={`flex items-center gap-1.5 ${
|
|
currentMode.key === mode.key
|
|
? "text-custom-text-200"
|
|
: "text-custom-text-400 hover:text-custom-text-200"
|
|
}`}
|
|
>
|
|
<mode.icon className={`h-4 w-4 flex-shrink-0 -my-1 `} />
|
|
{mode.title}
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex items-center gap-4">
|
|
{!isArchived && (
|
|
<Button
|
|
size="sm"
|
|
prependIcon={<Bell className="h-3 w-3" />}
|
|
variant="outline-primary"
|
|
onClick={() =>
|
|
issueSubscription && issueSubscription.subscribed
|
|
? issueSubscriptionRemove
|
|
: issueSubscriptionCreate
|
|
}
|
|
>
|
|
{issueSubscription && issueSubscription.subscribed ? "Unsubscribe" : "Subscribe"}
|
|
</Button>
|
|
)}
|
|
<button onClick={handleCopyText}>
|
|
<Link2 className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200 -rotate-45" />
|
|
</button>
|
|
{!disableUserActions && (
|
|
<button onClick={() => setDeleteIssueModal(true)}>
|
|
<Trash2 className="h-4 w-4 text-custom-text-400 hover:text-custom-text-200" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* content */}
|
|
<div className="relative w-full h-full overflow-hidden overflow-y-auto">
|
|
{isArchived && (
|
|
<div className="absolute top-0 left-0 h-full w-full z-[999] flex items-center justify-center bg-custom-background-100 opacity-60" />
|
|
)}
|
|
{isLoading && !issue ? (
|
|
<div className="text-center py-10">Loading...</div>
|
|
) : (
|
|
issue && (
|
|
<>
|
|
{["side-peek", "modal"].includes(peekMode) ? (
|
|
<div className="flex flex-col gap-3 py-6 px-8">
|
|
<PeekOverviewIssueDetails
|
|
workspaceSlug={workspaceSlug}
|
|
issue={issue}
|
|
issueUpdate={issueUpdate}
|
|
issueReactions={issueReactions}
|
|
user={user}
|
|
issueReactionCreate={issueReactionCreate}
|
|
issueReactionRemove={issueReactionRemove}
|
|
/>
|
|
|
|
<PeekOverviewProperties
|
|
issue={issue}
|
|
issueUpdate={issueUpdate}
|
|
disableUserActions={disableUserActions}
|
|
/>
|
|
|
|
<IssueComment
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
user={user}
|
|
issueComments={issueComments}
|
|
issueCommentCreate={issueCommentCreate}
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
issueCommentRemove={issueCommentRemove}
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
|
showCommentAccessSpecifier={showCommentAccessSpecifier}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className="w-full h-full flex">
|
|
<div className="w-full h-full space-y-6 p-4 py-5">
|
|
<PeekOverviewIssueDetails
|
|
workspaceSlug={workspaceSlug}
|
|
issue={issue}
|
|
issueReactions={issueReactions}
|
|
issueUpdate={issueUpdate}
|
|
user={user}
|
|
issueReactionCreate={issueReactionCreate}
|
|
issueReactionRemove={issueReactionRemove}
|
|
/>
|
|
|
|
<IssueComment
|
|
workspaceSlug={workspaceSlug}
|
|
projectId={projectId}
|
|
issueId={issueId}
|
|
user={user}
|
|
issueComments={issueComments}
|
|
issueCommentCreate={issueCommentCreate}
|
|
issueCommentUpdate={issueCommentUpdate}
|
|
issueCommentRemove={issueCommentRemove}
|
|
issueCommentReactionCreate={issueCommentReactionCreate}
|
|
issueCommentReactionRemove={issueCommentReactionRemove}
|
|
showCommentAccessSpecifier={showCommentAccessSpecifier}
|
|
/>
|
|
</div>
|
|
<div className="flex-shrink-0 !w-[400px] h-full border-l border-custom-border-200 p-4 py-5">
|
|
<PeekOverviewProperties
|
|
issue={issue}
|
|
issueUpdate={issueUpdate}
|
|
disableUserActions={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
)
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
});
|