Showing 9 of 9 total issues
Function componentDidMount
has 118 lines of code (exceeds 25 allowed). Consider refactoring. Open
componentDidMount() { const map = new mapboxgl.Map({ container: this.mapContainer, style: 'mapbox://styles/mapbox/streets-v9', center: [this.state.lng, this.state.lat],
Similar blocks of code found in 2 locations. Consider refactoring. Open
<Section title="Region vulnerabilities"> <InputGroup type="checkbox" name="region" group={[ { value: 'hdi', label: 'Human Development Index' }, { value: 'pop',
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
<Section title="Region threats"> <InputGroup type="checkbox" name="region" group={[ { value: 'threats_index', label: 'Natural Disasters Index' }, { value: 'violence_index',
- Read upRead up
Function render
has 58 lines of code (exceeds 25 allowed). Consider refactoring. Open
render() { return ( <div className="App"> <div> <div ref={el => this.mapContainer = el} className="mainMap" />
Similar blocks of code found in 2 locations. Consider refactoring. Open
<a onClick={(e) => { this.ControlPanel.classList.add('controlPanel--hide') }} className="controlPanel__header__toggleButton"> <i className="fas fa-bars" /> </a>
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
<a onClick={(e) => { this.ControlPanel.classList.remove('controlPanel--hide') }} className="controlPanel__header__toggleButton controlPanel__header__toggleButton--closed"> <i className="fas fa-bars" /> </a>
- Read upRead up
Function createChart
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
createChart() { let ctx = this.canvasEl.getContext("2d"); let totals = this.formatTotals(this.props.totals); let chart = new Chart(ctx,{ type: 'pie',
Similar blocks of code found in 2 locations. Consider refactoring. Open
Promise.all([schoolsPromise, mapLoadPromise]).then(([geojson, map]) => { map.getSource('schools').setData(geojson) })
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
Promise.all([shapesPromise, mapLoadPromise]).then(([geojson, map]) => { map.getSource('regions').setData(geojson) })
- Read upRead up