Skip to content
Snippets Groups Projects
Commit f7b3b96f authored by esikkala's avatar esikkala
Browse files

LeafletMap: add popup to component state

parent 5723eaaf
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ const theme = createMuiTheme({ ...@@ -8,7 +8,7 @@ const theme = createMuiTheme({
main: '#212121' main: '#212121'
}, },
secondary: { secondary: {
main: '#f44336' main: '#f44336'
} }
}, },
overrides: { overrides: {
......
...@@ -3,7 +3,7 @@ import PropTypes from 'prop-types' ...@@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
import { withStyles } from '@material-ui/core/styles' import { withStyles } from '@material-ui/core/styles'
import intl from 'react-intl-universal' import intl from 'react-intl-universal'
import L from 'leaflet' import L from 'leaflet'
import { has, isEqual } from 'lodash' import { has } from 'lodash'
import CircularProgress from '@material-ui/core/CircularProgress' import CircularProgress from '@material-ui/core/CircularProgress'
import { purple } from '@material-ui/core/colors' import { purple } from '@material-ui/core/colors'
import history from '../../History' import history from '../../History'
...@@ -105,7 +105,10 @@ class LeafletMap extends React.Component { ...@@ -105,7 +105,10 @@ class LeafletMap extends React.Component {
prevZoomLevel: null, prevZoomLevel: null,
enlargedBounds: null, enlargedBounds: null,
mapMode: props.mapMode, mapMode: props.mapMode,
showBuffer: true showBuffer: true,
popupID: null,
popupOpen: false,
popupBinded: false
} }
} }
...@@ -182,17 +185,32 @@ class LeafletMap extends React.Component { ...@@ -182,17 +185,32 @@ class LeafletMap extends React.Component {
}) })
} }
// check if instance have changed // check if should open a popup
if ((this.props.instance !== null) && !isEqual(prevProps.instance, this.props.instance)) { if (this.props.instance && this.state.popupOpen && !this.state.popupBinded &&
this.markers[this.props.instance.id] this.props.instance.id === this.state.popupID) {
.bindPopup(this.props.createPopUpContent({ const marker = this.markers[this.props.instance.id]
data: this.props.instance, marker
resultClass: this.props.resultClass .bindPopup(
}), { this.props.createPopUpContent({
...(this.props.popupMaxHeight && { maxHeight: this.props.popupMaxHeight }), data: this.props.instance,
...(this.props.popupMinWidth && { minWidth: this.props.popupMinWidth }) resultClass: this.props.resultClass
}) }),
{
closeButton: true,
...(this.props.popupMaxHeight && { maxHeight: this.props.popupMaxHeight }),
...(this.props.popupMaxWidth && { maxWidth: this.props.popupMaxWidth }),
...(this.props.popupMinWidth && { minWidth: this.props.popupMinWidth })
})
.openPopup() .openPopup()
.on('popupclose', () => {
marker.unbindPopup()
this.setState({
popupID: null,
popupOpen: false,
popupBinded: false
})
})
this.setState({ popupBinded: true })
} }
if (this.props.showExternalLayers && if (this.props.showExternalLayers &&
...@@ -959,10 +977,15 @@ class LeafletMap extends React.Component { ...@@ -959,10 +977,15 @@ class LeafletMap extends React.Component {
} }
markerOnClickFacetResults = event => { markerOnClickFacetResults = event => {
const { id } = event.target.options
this.setState({
popupID: id,
popupOpen: true
})
this.props.fetchByURI({ this.props.fetchByURI({
resultClass: this.props.resultClass, resultClass: this.props.resultClass,
facetClass: this.props.facetClass, facetClass: this.props.facetClass,
uri: event.target.options.id uri: id
}) })
}; };
......
...@@ -31,6 +31,14 @@ const Perspective1 = props => { ...@@ -31,6 +31,14 @@ const Perspective1 = props => {
const layerControlExpanded = screenSize === 'md' || const layerControlExpanded = screenSize === 'md' ||
screenSize === 'lg' || screenSize === 'lg' ||
screenSize === 'xl' screenSize === 'xl'
let popupMaxHeight = 320
let popupMinWidth = 280
let popupMaxWidth = 280
if (screenSize === 'xs' || screenSize === 'sm') {
popupMaxHeight = 200
popupMinWidth = 150
popupMaxWidth = 150
}
return ( return (
<> <>
<PerspectiveTabs <PerspectiveTabs
...@@ -82,8 +90,9 @@ const Perspective1 = props => { ...@@ -82,8 +90,9 @@ const Perspective1 = props => {
mapMode='cluster' mapMode='cluster'
instance={props.perspectiveState.instanceTableData} instance={props.perspectiveState.instanceTableData}
createPopUpContent={createPopUpContentMMM} createPopUpContent={createPopUpContentMMM}
popupMaxHeight={320} popupMaxHeight={popupMaxHeight}
popupMinWidth={280} popupMinWidth={popupMinWidth}
popupMaxWidth={popupMaxWidth}
fetchResults={props.fetchResults} fetchResults={props.fetchResults}
fetchGeoJSONLayers={props.fetchGeoJSONLayers} fetchGeoJSONLayers={props.fetchGeoJSONLayers}
clearGeoJSONLayers={props.clearGeoJSONLayers} clearGeoJSONLayers={props.clearGeoJSONLayers}
...@@ -99,12 +108,6 @@ const Perspective1 = props => { ...@@ -99,12 +108,6 @@ const Perspective1 = props => {
layerConfigs={layerConfigs} layerConfigs={layerConfigs}
infoHeaderExpanded={props.perspectiveState.facetedSearchHeaderExpanded} infoHeaderExpanded={props.perspectiveState.facetedSearchHeaderExpanded}
layoutConfig={props.layoutConfig} layoutConfig={props.layoutConfig}
// activeLayers={[
// 'WFS_MV_KulttuuriymparistoSuojellut:Muinaisjaannokset_alue',
// 'WFS_MV_KulttuuriymparistoSuojellut:Muinaisjaannokset_piste',
// 'WFS_MV_Kulttuuriymparisto:Arkeologiset_kohteet_alue',
// 'WFS_MV_Kulttuuriymparisto:Arkeologiset_kohteet_piste'
// ]}
/>} />}
/> />
<Route <Route
...@@ -146,8 +149,9 @@ const Perspective1 = props => { ...@@ -146,8 +149,9 @@ const Perspective1 = props => {
showMapModeControl={false} showMapModeControl={false}
instance={props.perspectiveState.instanceTableData} instance={props.perspectiveState.instanceTableData}
createPopUpContent={createPopUpContentMMM} createPopUpContent={createPopUpContentMMM}
popupMaxHeight={320} popupMaxHeight={popupMaxHeight}
popupMinWidth={280} popupMinWidth={popupMinWidth}
popupMaxWidth={popupMaxWidth}
fetchResults={props.fetchResults} fetchResults={props.fetchResults}
fetchGeoJSONLayers={props.fetchGeoJSONLayers} fetchGeoJSONLayers={props.fetchGeoJSONLayers}
clearGeoJSONLayers={props.clearGeoJSONLayers} clearGeoJSONLayers={props.clearGeoJSONLayers}
......
...@@ -53,7 +53,7 @@ a, a:visited, a:hover, a:active { ...@@ -53,7 +53,7 @@ a, a:visited, a:hover, a:active {
} }
.leaflet-popup-content p { .leaflet-popup-content p {
margin: 0px; margin: 0px !important;
} }
.leaflet-popup-content h3 { .leaflet-popup-content h3 {
...@@ -69,6 +69,15 @@ a, a:visited, a:hover, a:active { ...@@ -69,6 +69,15 @@ a, a:visited, a:hover, a:active {
margin-left: 3px; margin-left: 3px;
} }
.leaflet-popup-scrolled {
border-top: none !important;
border-bottom: none !important;
}
.leaflet-control-layers-list {
max-width: 270px;
}
@media screen and (min-width: 1440px) { @media screen and (min-width: 1440px) {
.leaflet-control-layers { .leaflet-control-layers {
font-size: 14px; font-size: 14px;
...@@ -77,6 +86,10 @@ a, a:visited, a:hover, a:active { ...@@ -77,6 +86,10 @@ a, a:visited, a:hover, a:active {
transform: scale(1.5); transform: scale(1.5);
margin: 6px; margin: 6px;
} }
.leaflet-control-layers-list {
/* min-width: 450px; */
max-width: 450px;
}
} }
.carousel .control-dots { .carousel .control-dots {
......
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