()
| 10683 | p.then(()=>this.render()); |
| 10684 | } |
| 10685 | render() { |
| 10686 | const hasRefinedData = this.dataScope.hasFilteredData(); |
| 10687 | const renderProps = { |
| 10688 | language: this.language, |
| 10689 | actionHandler: (action)=>this.handleAction(action), |
| 10690 | selectionHandler: (columnName, value)=>this.selectByNameValue(columnName, value), |
| 10691 | count: this.state.userSelection && this.state.userSelection.included.length, |
| 10692 | hasRefinedData, |
| 10693 | item: this.state.userSelection && this.state.userSelection.included[this.state.index], |
| 10694 | remapColorHandler: (remap)=>this.remapChanged(remap), |
| 10695 | hasColorMaps: this.hasColorMaps() && hasRefinedData, |
| 10696 | remapColor: this.state.remapColor |
| 10697 | }; |
| 10698 | const a = _vegaDeckGl.util.getActiveElementInfo(); |
| 10699 | _vegaDeckGl.util.mount(renderDetails(renderProps), this.element); |
| 10700 | _vegaDeckGl.util.setActiveElement(a); |
| 10701 | } |
| 10702 | } |
| 10703 | const renderDetails = (props)=>{ |
| 10704 | const controlButtons = [ |
no test coverage detected