* feat: add navigation dropdown component * chore: enhance title/ description loader and componenet modularity * chore: issue store filter update * chore: added few icons to ui package * chore: improvements for tabs componenet * chore: enhance sidebar modularity * chore: update issue and router store to add support for additional issue layouts * chore: enhanced cycle componenets modularity * feat: added project grouping header for cycles list * chore: enhanced project dropdown componenet by adding multiple selection functionality * chore: enhanced rich text editor modularity by taking members ids as props for mentions * chore: added functionality to filter disabled layouts in issue-layout dropdown * chore: added support to pass project ids as props in project card list * feat: multi select project modal * chore: seperate out project componenet for reusability * chore: command pallete store improvements * fix: build errors
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { createContext, useContext } from "react";
|
|
import { useParams } from "next/navigation";
|
|
import { EIssuesStoreType } from "@/constants/issue";
|
|
import { useIssues } from "./store";
|
|
|
|
export const IssuesStoreContext = createContext<EIssuesStoreType | undefined>(undefined);
|
|
|
|
export const useIssueStoreType = () => {
|
|
const storeType = useContext(IssuesStoreContext);
|
|
|
|
const { globalViewId, viewId, projectId, cycleId, moduleId, userId, teamId } = useParams();
|
|
|
|
// If store type exists in context, use that store type
|
|
if (storeType) return storeType;
|
|
|
|
// else check the router params to determine the issue store
|
|
if (globalViewId) return EIssuesStoreType.GLOBAL;
|
|
|
|
if (userId) return EIssuesStoreType.PROFILE;
|
|
|
|
if (viewId) return EIssuesStoreType.PROJECT_VIEW;
|
|
|
|
if (cycleId) return EIssuesStoreType.CYCLE;
|
|
|
|
if (moduleId) return EIssuesStoreType.MODULE;
|
|
|
|
if (projectId) return EIssuesStoreType.PROJECT;
|
|
|
|
if (teamId) return EIssuesStoreType.TEAM;
|
|
|
|
if (teamId && viewId) return EIssuesStoreType.TEAM_VIEW;
|
|
|
|
return EIssuesStoreType.PROJECT;
|
|
};
|
|
|
|
export const useIssuesStore = () => {
|
|
const storeType = useIssueStoreType();
|
|
|
|
return useIssues(storeType);
|
|
};
|