fixed failing scenario: If parent is not set to true but some sub toggles are set to true a user should be able to set the parent toggle to true and make all subs true (with intervention)

This commit is contained in:
codebyalex 2019-03-18 20:56:24 -04:00
parent f6aa867c4a
commit 7d2e962966

View File

@ -171,16 +171,31 @@ class HighlightToggle extends Component<ToggleProps, {}> {
}
onToggle(): void {
for (let element of this.props.elementsToHighlight) {
const targetElement = getTargetElement(element.target[0]);
this.higlightRuleLocation(targetElement, !this.props.isToggledOn);
if (this.props.highlightedElementsMap.get(targetElement)) {
this.saveElementDataToMap(
targetElement,
!this.props.highlightedElementsMap.get(targetElement).isHighlighted,
this.props.highlightedElementsMap.get(targetElement).originalOutline,
this.props.type
);
if(this.props.isToggledOn){
for (let element of this.props.elementsToHighlight) {
const targetElement = getTargetElement(element.target[0]);
if(this.props.highlightedElementsMap.get(targetElement) && this.props.highlightedElementsMap.get(targetElement).isHighlighted){
this.higlightRuleLocation(targetElement, false);
this.saveElementDataToMap(
targetElement,
false,
this.props.highlightedElementsMap.get(targetElement).originalOutline,
this.props.type
);
}
}
} else {
for (let element of this.props.elementsToHighlight) {
const targetElement = getTargetElement(element.target[0]);
if(this.props.highlightedElementsMap.get(targetElement) && !this.props.highlightedElementsMap.get(targetElement).isHighlighted){
this.higlightRuleLocation(targetElement, true);
this.saveElementDataToMap(
targetElement,
true,
this.props.highlightedElementsMap.get(targetElement).originalOutline,
this.props.type
);
}
}
}
}