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

84.61% Statements 11/13
100% Branches 5/5
100% Functions 1/1
100% Lines 8/8

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              68x 68x   72x 68x   68x     12x             76x   156x    
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;
}