mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import { useContext } from "react";
|
|
// mobx store
|
|
import { StoreContext } from "contexts/store-context";
|
|
// store
|
|
import { TViewStore } from "store/view/view.store";
|
|
// types
|
|
import { TViewTypes } from "@plane/types";
|
|
|
|
export const useViewDetail = (
|
|
workspaceSlug: string,
|
|
projectId: string | undefined,
|
|
viewId: string,
|
|
viewType: TViewTypes | undefined
|
|
): TViewStore | undefined => {
|
|
const context = useContext(StoreContext);
|
|
if (context === undefined) throw new Error("useViewDetail must be used within StoreProvider");
|
|
|
|
if (!workspaceSlug) throw new Error("useViewDetail hook must require workspaceSlug");
|
|
|
|
if (!viewId) throw new Error("useViewDetail hook must require viewId");
|
|
|
|
switch (viewType) {
|
|
case "WORKSPACE_YOUR_VIEWS":
|
|
return context.view.workspaceViewStore.viewById(viewId);
|
|
case "WORKSPACE_VIEWS":
|
|
return context.view.workspaceViewMeStore.viewById(viewId);
|
|
case "WORKSPACE_PROJECT_VIEWS":
|
|
return context.view.workspaceViewMeStore.viewById(viewId);
|
|
case "PROJECT_YOUR_VIEWS":
|
|
if (!projectId) throw new Error("useView hook must require projectId");
|
|
return context.view.projectViewMeStore.viewById(viewId);
|
|
case "PROJECT_VIEWS":
|
|
if (!projectId) throw new Error("useView hook must require projectId");
|
|
return context.view.projectViewStore.viewById(viewId);
|
|
default:
|
|
throw new Error("useView hook must require viewType");
|
|
}
|
|
};
|