mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
24 lines
656 B
TypeScript
24 lines
656 B
TypeScript
import { useContext } from "react";
|
|
// mobx store
|
|
import { StoreContext } from "@/lib/store-context";
|
|
// plane web hooks
|
|
import { EPageStoreType, usePageStore } from "@/plane-web/hooks/store";
|
|
|
|
export type TArgs = {
|
|
pageId: string;
|
|
storeType: EPageStoreType;
|
|
};
|
|
|
|
export const usePage = (args: TArgs) => {
|
|
const { pageId, storeType } = args;
|
|
// context
|
|
const context = useContext(StoreContext);
|
|
// store hooks
|
|
const pageStore = usePageStore(storeType);
|
|
|
|
if (context === undefined) throw new Error("usePage must be used within StoreProvider");
|
|
if (!pageId) throw new Error("pageId is required");
|
|
|
|
return pageStore.getPageById(pageId);
|
|
};
|