Skip to content
Snippets Groups Projects
Commit 34b54761 authored by Esko Ikkala's avatar Esko Ikkala
Browse files

Hide elements when there is no results

parent 9342b274
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,6 @@ const styles = theme => ({ ...@@ -62,7 +62,6 @@ const styles = theme => ({
}, },
map: { map: {
marginLeft: theme.spacing.unit, marginLeft: theme.spacing.unit,
//marginBotto: theme.spacing.unit * 3,
height: '65%' height: '65%'
}, },
statistics: { statistics: {
...@@ -74,7 +73,7 @@ let MapApp = (props) => { ...@@ -74,7 +73,7 @@ let MapApp = (props) => {
const { classes, error, analysisView, heatMap } = props; const { classes, error, analysisView, heatMap } = props;
let map = ''; let map = '';
if (heatMap) { if (props.results.length > 0 && heatMap) {
map = ( map = (
<GMap <GMap
results={props.results} results={props.results}
...@@ -84,7 +83,7 @@ let MapApp = (props) => { ...@@ -84,7 +83,7 @@ let MapApp = (props) => {
mapElement={<div style={{ height: `100%` }} />} mapElement={<div style={{ height: `100%` }} />}
/> />
); );
} else { } else if (props.results.length > 0) {
map = ( map = (
<LeafletMap <LeafletMap
sliderValue={100} sliderValue={100}
...@@ -129,9 +128,11 @@ let MapApp = (props) => { ...@@ -129,9 +128,11 @@ let MapApp = (props) => {
/> />
</Grid> </Grid>
<Grid item xs={12} sm={analysisView ? 4 : 8}> <Grid item xs={12} sm={analysisView ? 4 : 8}>
<Paper className={classes.map}> {props.results.length > 0 &&
{map} <Paper className={classes.map}>
</Paper> {map}
</Paper>
}
<div className={classes.statistics}> <div className={classes.statistics}>
<Pie data={props.results} groupBy={props.search.groupBy} query={props.search.query} /> <Pie data={props.results} groupBy={props.search.groupBy} query={props.search.query} />
</div> </div>
......
...@@ -7,7 +7,7 @@ import { ...@@ -7,7 +7,7 @@ import {
const DEFAULT_LANGUAGE = 'en'; const DEFAULT_LANGUAGE = 'en';
const DEFAULT_ANALYSIS_VIEW = true; const DEFAULT_ANALYSIS_VIEW = true;
const DEFAULT_HEATMAP = true; const DEFAULT_HEATMAP = false;
const DEFAULT_RESULT_FORMAT = 'table'; const DEFAULT_RESULT_FORMAT = 'table';
export const INITIAL_STATE = { export const INITIAL_STATE = {
......
...@@ -50,8 +50,8 @@ export const INITIAL_STATE = { ...@@ -50,8 +50,8 @@ export const INITIAL_STATE = {
suggestions: [], suggestions: [],
suggestionsQuery: '', suggestionsQuery: '',
fetchingSuggestions: false, fetchingSuggestions: false,
//results: [], results: [],
results: sampleResults, // results: sampleResults,
resultsFilter: { resultsFilter: {
'label': new Set(), 'label': new Set(),
'modifier': new Set(), 'modifier': new Set(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment