forked from github/plane
9075f9441c
* style: added cta at the bottom of sidebar, added missing icons as well, showing dynamic workspace member count on workspace dropdown * refractor: running parallel request, made create/edit label function to async function * fix: sidebar dropdown content going below kanban items outside click detection in need help dropdown * refractor: making parallel api calls fix: create state input comes at bottom, create state input gets on focus automatically, form is getting submitted on enter click * refactoring file structure and signin page * style: changed text and added spinner for signing in loading * refractor: removed unused type * fix: my issue cta in profile page sending to 404 page * fix: added new s3 bucket url in next.config.js file increased image modal height * packaging UI components * eslint config * eslint fixes * refactoring changes * build fixes * minor fixes * adding todo comments for reference * refactor: cleared unused imports and re ordered imports * refactor: removed unused imports * fix: added workspace argument to useissues hook * refactor: removed api-routes file, unnecessary constants * refactor: created helpers folder, removed unnecessary constants * refactor: new context for issue view * refactoring issues page * build fixes * refactoring * refactor: create issue modal * refactor: module ui * fix: sub-issues mutation * fix: create more option in create issue modal * description form debounce issue * refactor: global component for assignees list * fix: link module interface * fix: priority icons and sub-issues count added * fix: cycle mutation in issue details page * fix: remove issue from cycle mutation * fix: create issue modal in home page * fix: removed unnecessary props * fix: updated create issue form status * fix: settings auth breaking * refactor: issue details page Co-authored-by: Dakshesh Jain <dakshesh.jain14@gmail.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: venkatesh-soulpage <venkatesh.marreboyina@soulpageit.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com>
193 lines
6.3 KiB
TypeScript
193 lines
6.3 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR, { mutate } from "swr";
|
|
import { RectangleStackIcon } from "@heroicons/react/24/outline";
|
|
import { PlusIcon } from "@heroicons/react/20/solid";
|
|
// lib
|
|
import { requiredAuth } from "lib/auth";
|
|
// services
|
|
import issuesServices from "services/issues.service";
|
|
import projectService from "services/project.service";
|
|
// layouts
|
|
import AppLayout from "layouts/app-layout";
|
|
// contexts
|
|
import { IssueViewContextProvider } from "contexts/issue-view.context";
|
|
// components
|
|
import ListView from "components/project/issues/list-view";
|
|
import BoardView from "components/project/issues/BoardView";
|
|
import ConfirmIssueDeletion from "components/project/issues/confirm-issue-deletion";
|
|
import { CreateUpdateIssueModal } from "components/issues";
|
|
import View from "components/core/view";
|
|
// ui
|
|
import { Spinner, EmptySpace, EmptySpaceItem, HeaderButton } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import type { IIssue, IssueResponse } from "types";
|
|
import type { NextPage, NextPageContext } from "next";
|
|
// fetch-keys
|
|
import { PROJECT_DETAILS, PROJECT_ISSUES_LIST } from "constants/fetch-keys";
|
|
|
|
const ProjectIssues: NextPage = () => {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const [selectedIssue, setSelectedIssue] = useState<
|
|
(IIssue & { actionType: "edit" | "delete" }) | undefined
|
|
>(undefined);
|
|
const [deleteIssue, setDeleteIssue] = useState<string | undefined>(undefined);
|
|
|
|
const {
|
|
query: { workspaceSlug, projectId },
|
|
} = useRouter();
|
|
|
|
const { data: projectIssues } = useSWR(
|
|
workspaceSlug && projectId
|
|
? PROJECT_ISSUES_LIST(workspaceSlug as string, projectId as string)
|
|
: null,
|
|
workspaceSlug && projectId
|
|
? () => issuesServices.getIssues(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: projectDetails } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!isOpen) {
|
|
const timer = setTimeout(() => {
|
|
setSelectedIssue(undefined);
|
|
clearTimeout(timer);
|
|
}, 500);
|
|
}
|
|
}, [isOpen]);
|
|
|
|
const partialUpdateIssue = (formData: Partial<IIssue>, issueId: string) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
issuesServices
|
|
.patchIssue(workspaceSlug as string, projectId as string, issueId, formData)
|
|
.then((response) => {
|
|
mutate<IssueResponse>(
|
|
PROJECT_ISSUES_LIST(workspaceSlug as string, projectId as string),
|
|
(prevData) => ({
|
|
...(prevData as IssueResponse),
|
|
results:
|
|
prevData?.results.map((issue) => (issue.id === response.id ? response : issue)) ?? [],
|
|
}),
|
|
false
|
|
);
|
|
})
|
|
.catch((error) => {
|
|
console.log(error);
|
|
});
|
|
};
|
|
|
|
const handleEditIssue = (issue: IIssue) => {
|
|
setIsOpen(true);
|
|
setSelectedIssue({ ...issue, actionType: "edit" });
|
|
};
|
|
|
|
return (
|
|
<IssueViewContextProvider>
|
|
<AppLayout
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title="Projects" link={`/${workspaceSlug}/projects`} />
|
|
<BreadcrumbItem title={`${projectDetails?.name ?? "Project"} Issues`} />
|
|
</Breadcrumbs>
|
|
}
|
|
right={
|
|
<div className="flex items-center gap-2">
|
|
<View issues={projectIssues?.results.filter((p) => p.parent === null) ?? []} />
|
|
<HeaderButton
|
|
Icon={PlusIcon}
|
|
label="Add Issue"
|
|
onClick={() => {
|
|
const e = new KeyboardEvent("keydown", {
|
|
key: "i",
|
|
ctrlKey: true,
|
|
});
|
|
document.dispatchEvent(e);
|
|
}}
|
|
/>
|
|
</div>
|
|
}
|
|
>
|
|
<CreateUpdateIssueModal
|
|
isOpen={isOpen && selectedIssue?.actionType !== "delete"}
|
|
prePopulateData={{ ...selectedIssue }}
|
|
handleClose={() => setIsOpen(false)}
|
|
data={selectedIssue}
|
|
/>
|
|
<ConfirmIssueDeletion
|
|
handleClose={() => setDeleteIssue(undefined)}
|
|
isOpen={!!deleteIssue}
|
|
data={projectIssues?.results.find((issue) => issue.id === deleteIssue)}
|
|
/>
|
|
{!projectIssues ? (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<Spinner />
|
|
</div>
|
|
) : projectIssues.count > 0 ? (
|
|
<>
|
|
<ListView
|
|
issues={projectIssues?.results.filter((p) => p.parent === null) ?? []}
|
|
handleEditIssue={handleEditIssue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
/>
|
|
<BoardView
|
|
issues={projectIssues?.results.filter((p) => p.parent === null) ?? []}
|
|
handleDeleteIssue={setDeleteIssue}
|
|
partialUpdateIssue={partialUpdateIssue}
|
|
/>
|
|
</>
|
|
) : (
|
|
<div className="grid h-full w-full place-items-center px-4 sm:px-0">
|
|
<EmptySpace
|
|
title="You don't have any issue yet."
|
|
description="Issues help you track individual pieces of work. With Issues, keep track of what's going on, who is working on it, and what's done."
|
|
Icon={RectangleStackIcon}
|
|
>
|
|
<EmptySpaceItem
|
|
title="Create a new issue"
|
|
description={
|
|
<span>
|
|
Use <pre className="inline rounded bg-gray-100 px-2 py-1">Ctrl/Command + I</pre>{" "}
|
|
shortcut to create a new issue
|
|
</span>
|
|
}
|
|
Icon={PlusIcon}
|
|
action={() => setIsOpen(true)}
|
|
/>
|
|
</EmptySpace>
|
|
</div>
|
|
)}
|
|
</AppLayout>
|
|
</IssueViewContextProvider>
|
|
);
|
|
};
|
|
|
|
export const getServerSideProps = async (ctx: NextPageContext) => {
|
|
const user = await requiredAuth(ctx.req?.headers.cookie);
|
|
|
|
const redirectAfterSignIn = ctx.req?.url;
|
|
|
|
if (!user) {
|
|
return {
|
|
redirect: {
|
|
destination: `/signin?next=${redirectAfterSignIn}`,
|
|
permanent: false,
|
|
},
|
|
};
|
|
}
|
|
|
|
return {
|
|
props: {
|
|
user,
|
|
},
|
|
};
|
|
};
|
|
|
|
export default ProjectIssues;
|