mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 06:39:31 +01:00
25 lines
696 B
TypeScript
25 lines
696 B
TypeScript
|
|
import { useContext } from "react";
|
||
|
|
// context
|
||
|
|
import { StoreContext } from "@/lib/store-context";
|
||
|
|
// mobx store
|
||
|
|
import { IProjectPageStore } from "@/store/pages/project-page.store";
|
||
|
|
|
||
|
|
export enum EPageStoreType {
|
||
|
|
PROJECT = "PROJECT_PAGE",
|
||
|
|
}
|
||
|
|
|
||
|
|
export type TReturnType = {
|
||
|
|
[EPageStoreType.PROJECT]: IProjectPageStore;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const usePageStore = <T extends EPageStoreType>(storeType: T): TReturnType[T] => {
|
||
|
|
const context = useContext(StoreContext);
|
||
|
|
if (context === undefined) throw new Error("usePageStore must be used within StoreProvider");
|
||
|
|
|
||
|
|
if (storeType === EPageStoreType.PROJECT) {
|
||
|
|
return context.projectPages;
|
||
|
|
}
|
||
|
|
|
||
|
|
throw new Error(`Invalid store type: ${storeType}`);
|
||
|
|
};
|