mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* refactor: remove barrel exports from some compoennt modules * refactor: remove barrel exports from issue components * refactor: remove barrel exports from page components * chore: update type improts * refactor: remove barrel exports from cycle components * refactor: remove barrel exports from dropdown components * refactor: remove barrel exports from ce components * refactor: remove barrel exports from some more components * refactor: remove barrel exports from profile and sidebar components * chore: update type imports * refactor: remove barrel exports from store hooks * chore: dynamically load sticky editor * fix: lint * chore: revert sticky dynamic import * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { createContext, useContext } from "react";
|
|
import { useParams } from "next/navigation";
|
|
import { EIssuesStoreType } from "@plane/types";
|
|
import { useIssues } from "./store/use-issues";
|
|
|
|
export const IssuesStoreContext = createContext<EIssuesStoreType | undefined>(undefined);
|
|
|
|
export const useIssueStoreType = () => {
|
|
const storeType = useContext(IssuesStoreContext);
|
|
const { globalViewId, viewId, projectId, cycleId, moduleId, userId, epicId, teamspaceId } = 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 (teamspaceId && viewId) return EIssuesStoreType.TEAM_VIEW;
|
|
|
|
if (teamspaceId && projectId) return EIssuesStoreType.TEAM_PROJECT_WORK_ITEMS;
|
|
|
|
if (viewId) return EIssuesStoreType.PROJECT_VIEW;
|
|
|
|
if (cycleId) return EIssuesStoreType.CYCLE;
|
|
|
|
if (moduleId) return EIssuesStoreType.MODULE;
|
|
|
|
if (epicId) return EIssuesStoreType.EPIC;
|
|
|
|
if (projectId) return EIssuesStoreType.PROJECT;
|
|
|
|
if (teamspaceId) return EIssuesStoreType.TEAM;
|
|
|
|
return EIssuesStoreType.PROJECT;
|
|
};
|
|
|
|
export const useIssuesStore = () => {
|
|
const storeType = useIssueStoreType();
|
|
|
|
return useIssues(storeType);
|
|
};
|