All files / src/hooks compounds.ts

80% Statements 8/10
60% Branches 3/5
100% Functions 1/1
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            946x 946x 946x   1032x   1111x    
import {
  CompoundListItem,
  useCoreCompoundsListQuery,
} from "@/api/apiStore.gen.ts";
import { useCurrentObjectId } from "./flowsheetObjects";
 
export function useListCompounds(): CompoundListItem[] {
  const currentObjectId = useCurrentObjectId();
  const { data: compounds } = useCoreCompoundsListQuery({
    simulationObjectId: currentObjectId,
  });
 
  return compounds || [];
}