UNPKG

sparnatural

Version:

Visual client-side SPARQL query builder and knowledge graph exploration tool

32 lines (28 loc) 1.43 kB
import GroupWrapper from "../../components/builder-section/groupwrapper/GroupWrapper"; import ActionStore from "../ActionStore"; import { DraggableComponentState } from "../../components/variables-section/variableorder/DraggableComponent"; import { SelectedVal } from "../../components/SelectedVal"; /* Fired when a variable name got changed in the DraggableComponent traverse through Sparnatural and change the var names in the StartGrp and EndGrp */ export default function updateVarName( actionStore: ActionStore, variableState: DraggableComponentState, previousVarName: SelectedVal ) { // traversePreOrder through components and calculate background / linkAndBottoms / for them actionStore.sparnatural.BgWrapper.componentsList.rootGroupWrapper.traversePreOrder( (grpWrapper: GroupWrapper) => { let startGrp = grpWrapper.CriteriaGroup.StartClassGroup; let endGrp = grpWrapper.CriteriaGroup.EndClassGroup; if (startGrp.getVarName() === previousVarName.variable) startGrp.setVarName(variableState.selectedVariable.variable); if (endGrp.getVarName() === previousVarName.variable) endGrp.setVarName(variableState.selectedVariable.variable); } ); //add variables list in actionstore // actionStore.variables = actionStore.sparnatural.variableSection.listVariables(); actionStore.sparnatural.html[0].dispatchEvent( new CustomEvent("redrawBackgroundAndLinks") ); }