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 | import { playbookSelector } from "../../../store/features/playbook/playbookSlice.ts"; import { store } from "../../../store/index.ts"; import { StepRelation, StepRelationContract, } from "../../../types/playbooks/stepRelations.ts"; function getCurrentRelation( id: string, ): [StepRelation | StepRelationContract | undefined, string | undefined] { const { currentPlaybook } = playbookSelector(store.getState()); const relations = currentPlaybook?.step_relations ?? []; const relation = relations.find((relation) => relation.id === id); return [relation, id]; } export default getCurrentRelation; |