forked from github/plane
231fd52992
* dev: project archive response * feat: projects archive. * dev: response changes for cycle and module * chore: status message changed * chore: update clear all applied display filters logic. * style: archived project card UI update. * chore: archive/ restore taost message update. * fix: clear all applied display filter logic. * chore: project empty state update to handle archived projects. * chore: minor typo fix in cycles and modules archive. * chore: close cycle/ module overview sidebar if it's already open when clicked on overview button. * chore: optimize current workspace applied display filter logic. * chore: update all `archived_at` type from `Date` to `string`. --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
91 lines
3.2 KiB
TypeScript
91 lines
3.2 KiB
TypeScript
import { ReactElement, useCallback } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { TProjectAppliedDisplayFilterKeys, TProjectFilters } from "@plane/types";
|
|
// components
|
|
import { PageHead } from "@/components/core";
|
|
import { ProjectsHeader } from "@/components/headers";
|
|
import { ProjectAppliedFiltersList, ProjectCardList } from "@/components/project";
|
|
// layouts
|
|
import { calculateTotalFilters } from "@/helpers/filter.helper";
|
|
import { useApplication, useProject, useProjectFilter, useWorkspace } from "@/hooks/store";
|
|
import { AppLayout } from "@/layouts/app-layout";
|
|
// helpers
|
|
// types
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
|
|
const ProjectsPage: NextPageWithLayout = observer(() => {
|
|
// store
|
|
const {
|
|
router: { workspaceSlug },
|
|
} = useApplication();
|
|
const { currentWorkspace } = useWorkspace();
|
|
const { totalProjectIds, filteredProjectIds } = useProject();
|
|
const {
|
|
currentWorkspaceFilters,
|
|
currentWorkspaceAppliedDisplayFilters,
|
|
clearAllFilters,
|
|
clearAllAppliedDisplayFilters,
|
|
updateFilters,
|
|
updateDisplayFilters,
|
|
} = useProjectFilter();
|
|
// derived values
|
|
const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Projects` : undefined;
|
|
|
|
const handleRemoveFilter = useCallback(
|
|
(key: keyof TProjectFilters, value: string | null) => {
|
|
if (!workspaceSlug) return;
|
|
let newValues = currentWorkspaceFilters?.[key] ?? [];
|
|
|
|
if (!value) newValues = [];
|
|
else newValues = newValues.filter((val) => val !== value);
|
|
|
|
updateFilters(workspaceSlug.toString(), { [key]: newValues });
|
|
},
|
|
[currentWorkspaceFilters, updateFilters, workspaceSlug]
|
|
);
|
|
|
|
const handleRemoveDisplayFilter = useCallback(
|
|
(key: TProjectAppliedDisplayFilterKeys) => {
|
|
if (!workspaceSlug) return;
|
|
updateDisplayFilters(workspaceSlug.toString(), { [key]: false });
|
|
},
|
|
[updateDisplayFilters, workspaceSlug]
|
|
);
|
|
|
|
const handleClearAllFilters = useCallback(() => {
|
|
if (!workspaceSlug) return;
|
|
clearAllFilters(workspaceSlug.toString());
|
|
clearAllAppliedDisplayFilters(workspaceSlug.toString());
|
|
}, [clearAllFilters, clearAllAppliedDisplayFilters, workspaceSlug]);
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
<div className="h-full w-full flex flex-col">
|
|
{(calculateTotalFilters(currentWorkspaceFilters ?? {}) !== 0 ||
|
|
currentWorkspaceAppliedDisplayFilters?.length !== 0) && (
|
|
<div className="border-b border-custom-border-200 px-5 py-3">
|
|
<ProjectAppliedFiltersList
|
|
appliedFilters={currentWorkspaceFilters ?? {}}
|
|
appliedDisplayFilters={currentWorkspaceAppliedDisplayFilters ?? []}
|
|
handleClearAllFilters={handleClearAllFilters}
|
|
handleRemoveFilter={handleRemoveFilter}
|
|
handleRemoveDisplayFilter={handleRemoveDisplayFilter}
|
|
filteredProjects={filteredProjectIds?.length ?? 0}
|
|
totalProjects={totalProjectIds?.length ?? 0}
|
|
alwaysAllowEditing
|
|
/>
|
|
</div>
|
|
)}
|
|
<ProjectCardList />
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
ProjectsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<ProjectsHeader />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default ProjectsPage;
|