All files / src/utils/conditionals addStepRuleToRelationByIndex.ts

0% Statements 0/14
0% Branches 0/7
0% Functions 0/1
0% Lines 0/12

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 29 30 31 32 33 34                                                                   
import { store } from "../../store/index.ts";
import {
  currentPlaybookSelector,
  setCurrentPlaybookKey,
} from "../../store/features/playbook/playbookSlice.ts";
import setNestedValue from "../common/setNestedValue.ts";
 
const playbookKey = "step_relations";
 
export function addStepRuleToRelationByIndex(
  key: string,
  value: any,
  index: number,
  ruleIndex: number,
  ruleSetIndex: number = 0,
) {
  const currentPlaybook = currentPlaybookSelector(store.getState());
  const relations = currentPlaybook?.[playbookKey];
  const edges = structuredClone(relations ?? []);
  Iif (edges.length === 0) return;
  Iif (!edges[index] || !edges[index].condition) return;
  setNestedValue(
    edges[index]?.condition?.rule_sets?.[ruleSetIndex]?.step_rules?.[ruleIndex],
    key,
    value,
  );
  store.dispatch(
    setCurrentPlaybookKey({
      key: playbookKey,
      value: edges,
    }),
  );
}