mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
499 B
TypeScript
14 lines
499 B
TypeScript
|
import { useContext } from "react";
|
||
|
// mobx store
|
||
|
import { StoreContext } from "@/lib/store-context";
|
||
|
// mobx store
|
||
|
import { IEstimate } from "@/store/estimates/estimate";
|
||
|
|
||
|
export const useEstimate = (estimateId: string | undefined): IEstimate => {
|
||
|
const context = useContext(StoreContext);
|
||
|
if (context === undefined) throw new Error("useEstimate must be used within StoreProvider");
|
||
|
if (!estimateId) return {} as IEstimate;
|
||
|
|
||
|
return context.projectEstimate.estimates?.[estimateId] ?? {};
|
||
|
};
|