mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
* refactor: move web utils to packages * fix: build and lint errors * chore: update drag handle plugin * chore: update table cell type to fix build errors * fix: build errors * chore: sync few changes * feat: add pi base url to constants * chore: update all util imports in ee folder * chore: refactor web utils imports * chore: update imports * fix: build errors * fix: build errors * fix: update utils import * chore: minor fixes related to duplicate assets imports * chore: update duplicate assets service * [WEB-4316] chore: new endpoints to download an asset (#7207) * chore: new endpoints to download an asset * chore: add exception handling * [WEB-4323] refactor: Analytics refactor (#7213) * chore: updated label for epics * chore: improved export logic * refactor: move csvConfig to export.ts and clean up export logic * refactor: remove unused CSV export logic from WorkItemsInsightTable component * refactor: streamline data handling in InsightTable component for improved rendering * feat: add translation for "No. of {entity}" and update priority chart y-axis label to use new translation * refactor: cleaned up some component and added utilitites * feat: add "at_risk" translation to multiple languages in translations.json files * refactor: update TrendPiece component to use new status variants for analytics * fix: adjust TrendPiece component logic for on-track and off-track status * refactor: use nullish coalescing operator for yAxis.dx in line and scatter charts * feat: add "at_risk" translation to various languages in translations.json files * feat: add "no_of" translation to various languages in translations.json files * feat: update "at_risk" translation in Ukrainian, Vietnamese, and Chinese locales in translations.json files * refactor: rename insightsFields to ANALYTICS_INSIGHTS_FIELDS and update analytics tab import to use getAnalyticsTabs function * feat: update AnalyticsWrapper to use i18n for titles and add new translation for "no_of" in Russian * fix: update yAxis labels and offsets in various charts to use new translation key and improve layout * feat: define AnalyticsTab interface and refactor getAnalyticsTabs function for improved type safety * fix: update AnalyticsTab interface to use TAnalyticsTabsBase for improved type safety * fix: add whitespace-nowrap class to TableHead for improved header layout in DataTable component * [WEB-4311] fix: membership data handling and state reversal on error (#7205) * [WEB-4231] Pie chart tooltip #7192 * fix: build errors * fix: utils imports * chore: fix build errors * yarn lock file update --------- Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: JayashTripathy <76092296+JayashTripathy@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
99 lines
3.4 KiB
TypeScript
99 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useParams, usePathname } from "next/navigation";
|
|
// i18n
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { TProjectAppliedDisplayFilterKeys, TProjectFilters } from "@plane/types";
|
|
// components
|
|
import { calculateTotalFilters } from "@plane/utils";
|
|
import { PageHead } from "@/components/core/page-title";
|
|
import { ProjectAppliedFiltersList, ProjectCardList } from "@/components/project";
|
|
// helpers
|
|
// hooks
|
|
import { useProject, useProjectFilter, useWorkspace } from "@/hooks/store";
|
|
|
|
const Root = observer(() => {
|
|
const { currentWorkspace } = useWorkspace();
|
|
const { workspaceSlug } = useParams();
|
|
const pathname = usePathname();
|
|
const { t } = useTranslation();
|
|
// store
|
|
const { totalProjectIds, filteredProjectIds } = useProject();
|
|
const {
|
|
currentWorkspaceFilters,
|
|
currentWorkspaceAppliedDisplayFilters,
|
|
clearAllFilters,
|
|
clearAllAppliedDisplayFilters,
|
|
updateFilters,
|
|
updateDisplayFilters,
|
|
} = useProjectFilter();
|
|
// derived values
|
|
const pageTitle = currentWorkspace?.name
|
|
? `${currentWorkspace?.name} - ${t("workspace_projects.label", { count: 2 })}`
|
|
: undefined;
|
|
|
|
const isArchived = pathname.includes("/archives");
|
|
|
|
const allowedDisplayFilters =
|
|
currentWorkspaceAppliedDisplayFilters?.filter((filter) => filter !== "archived_projects") ?? [];
|
|
|
|
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());
|
|
if (isArchived) updateDisplayFilters(workspaceSlug.toString(), { archived_projects: true });
|
|
}, [clearAllFilters, clearAllAppliedDisplayFilters, workspaceSlug]);
|
|
|
|
useEffect(() => {
|
|
isArchived
|
|
? updateDisplayFilters(workspaceSlug.toString(), { archived_projects: true })
|
|
: updateDisplayFilters(workspaceSlug.toString(), { archived_projects: false });
|
|
}, [pathname]);
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
<div className="flex h-full w-full flex-col">
|
|
{(calculateTotalFilters(currentWorkspaceFilters ?? {}) !== 0 || allowedDisplayFilters.length > 0) && (
|
|
<ProjectAppliedFiltersList
|
|
appliedFilters={currentWorkspaceFilters ?? {}}
|
|
appliedDisplayFilters={allowedDisplayFilters}
|
|
handleClearAllFilters={handleClearAllFilters}
|
|
handleRemoveFilter={handleRemoveFilter}
|
|
handleRemoveDisplayFilter={handleRemoveDisplayFilter}
|
|
filteredProjects={filteredProjectIds?.length ?? 0}
|
|
totalProjects={totalProjectIds?.length ?? 0}
|
|
alwaysAllowEditing
|
|
/>
|
|
)}
|
|
<ProjectCardList />
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
export default Root;
|