import { useEffect, useState } from "react"; import Link from "next/link"; import { useRouter } from "next/router"; import { observer } from "mobx-react-lite"; // hooks import { useDashboard } from "hooks/store"; // components import { PieGraph } from "components/ui"; import { DurationFilterDropdown, IssuesByStateGroupEmptyState, WidgetLoader, WidgetProps, } from "components/dashboard/widgets"; // helpers import { getCustomDates } from "helpers/dashboard.helper"; // types import { TIssuesByStateGroupsWidgetFilters, TIssuesByStateGroupsWidgetResponse, TStateGroups } from "@plane/types"; // constants import { STATE_GROUP_GRAPH_COLORS, STATE_GROUP_GRAPH_GRADIENTS } from "constants/dashboard"; import { STATE_GROUPS } from "constants/state"; const WIDGET_KEY = "issues_by_state_groups"; export const IssuesByStateGroupWidget: React.FC = observer((props) => { const { dashboardId, workspaceSlug } = props; // states const [defaultStateGroup, setDefaultStateGroup] = useState(null); const [activeStateGroup, setActiveStateGroup] = useState(null); // router const router = useRouter(); // store hooks const { fetchWidgetStats, getWidgetDetails, getWidgetStats, updateDashboardWidgetFilters } = useDashboard(); // derived values const widgetDetails = getWidgetDetails(workspaceSlug, dashboardId, WIDGET_KEY); const widgetStats = getWidgetStats(workspaceSlug, dashboardId, WIDGET_KEY); const selectedDuration = widgetDetails?.widget_filters.duration ?? "none"; const handleUpdateFilters = async (filters: Partial) => { if (!widgetDetails) return; await updateDashboardWidgetFilters(workspaceSlug, dashboardId, widgetDetails.id, { widgetKey: WIDGET_KEY, filters, }); const filterDates = getCustomDates(filters.duration ?? selectedDuration); fetchWidgetStats(workspaceSlug, dashboardId, { widget_key: WIDGET_KEY, ...(filterDates.trim() !== "" ? { target_date: filterDates } : {}), }); }; // fetch widget stats useEffect(() => { const filterDates = getCustomDates(selectedDuration); fetchWidgetStats(workspaceSlug, dashboardId, { widget_key: WIDGET_KEY, ...(filterDates.trim() !== "" ? { target_date: filterDates } : {}), }); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); // set active group for center metric useEffect(() => { if (!widgetStats) return; const startedCount = widgetStats?.find((item) => item?.state === "started")?.count ?? 0; const unStartedCount = widgetStats?.find((item) => item?.state === "unstarted")?.count ?? 0; const backlogCount = widgetStats?.find((item) => item?.state === "backlog")?.count ?? 0; const completedCount = widgetStats?.find((item) => item?.state === "completed")?.count ?? 0; const canceledCount = widgetStats?.find((item) => item?.state === "cancelled")?.count ?? 0; const stateGroup = startedCount > 0 ? "started" : unStartedCount > 0 ? "unstarted" : backlogCount > 0 ? "backlog" : completedCount > 0 ? "completed" : canceledCount > 0 ? "cancelled" : null; setActiveStateGroup(stateGroup); setDefaultStateGroup(stateGroup); }, [widgetStats]); if (!widgetDetails || !widgetStats) return ; const totalCount = widgetStats?.reduce((acc, item) => acc + item?.count, 0); const chartData = widgetStats?.map((item) => ({ color: STATE_GROUP_GRAPH_COLORS[item?.state as keyof typeof STATE_GROUP_GRAPH_COLORS], id: item?.state, label: item?.state, value: (item?.count / totalCount) * 100, })); const CenteredMetric = ({ dataWithArc, centerX, centerY }: any) => { const data = dataWithArc?.find((datum: any) => datum?.id === activeStateGroup); const percentage = chartData?.find((item) => item.id === activeStateGroup)?.value?.toFixed(0); return ( {percentage}% {data?.id} ); }; return (
Assigned by state handleUpdateFilters({ duration: val, }) } />
{totalCount > 0 ? (
datum.data.color} padAngle={1} enableArcLinkLabels={false} enableArcLabels={false} activeOuterRadiusOffset={5} tooltip={() => <>} margin={{ top: 0, right: 5, bottom: 0, left: 5, }} defs={STATE_GROUP_GRAPH_GRADIENTS} fill={Object.values(STATE_GROUPS).map((p) => ({ match: { id: p.key, }, id: `gradient${p.label}`, }))} onClick={(datum, e) => { e.preventDefault(); e.stopPropagation(); router.push(`/${workspaceSlug}/workspace-views/assigned/?state_group=${datum.id}`); }} onMouseEnter={(datum) => setActiveStateGroup(datum.id as TStateGroups)} onMouseLeave={() => setActiveStateGroup(defaultStateGroup)} layers={["arcs", CenteredMetric]} />
{chartData.map((item) => (
{item.label}
{item.value.toFixed(0)}%
))}
) : (
)}
); });