All files / src/pages/flowsheet-page/flowsheet/PropertiesSidebar/PropertyPackages useCustomPropertyPackage.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 2/2
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28                71x     71x   71x     12x                 71x    
import {
  api,
  CustomPropertyPackageRead,
  useCoreCustomPropertyPackagesRetrieveQuery,
} from "../../../../../api/apiStore.gen";
import { useAppDispatch } from "../../../../../store/hooks";
 
export function useCustomPropertyPackage(customPackageId: number) {
  const { data: propertyPackage } = useCoreCustomPropertyPackagesRetrieveQuery({
    id: customPackageId,
  });
  const dispatch = useAppDispatch();
 
  const optimisticUpdate = (
    updateFn: (prev: CustomPropertyPackageRead) => void,
  ) => {
    dispatch(
      api.util.updateQueryData(
        "coreCustomPropertyPackagesRetrieve",
        { id: customPackageId },
        updateFn,
      ),
    );
  };
 
  return [propertyPackage, optimisticUpdate] as const;
}