1. import React from 'react'
  2. import PropTypes from 'prop-types'
  3. import olLayerVector from 'ol/layer/Vector'
  4. import olSourceVector from 'ol/source/Vector'
  5. import { BasemapOption, BasemapThumbnail, Label } from './styled'
  6. import { connectToContext } from 'Provider'; // eslint-disable-line
  7. /**
  8. * Blank white basemap option
  9. * @component
  10. * @category Basemap
  11. * @since 0.1.0
  12. */
  13. class BasemapBlankWhite extends React.Component {
  14. handleLayersChange = () => {
  15. this.forceUpdate()
  16. }
  17. componentDidMount () {
  18. this.props.map.getLayers().on('change', this.handleLayersChange)
  19. }
  20. componentWillUnmount () {
  21. this.props.map.getLayers().un('change', this.handleLayersChange)
  22. }
  23. onClick = () => {
  24. const { map, layerTypeID, onBasemapChanged } = this.props
  25. const layer = new olLayerVector({
  26. className: '_ol_kit_basemap_layer',
  27. [layerTypeID]: 'blankWhite', // make sure we can identify this layer as a layer that has been created from the ol-kit basemap component.
  28. source: new olSourceVector()
  29. })
  30. const layers = map.getLayers()
  31. const layerArray = layers.getArray()
  32. const hasBasemap = layerTypeID && layerArray.length ? layerArray[0].get(layerTypeID) : false
  33. if (hasBasemap) {
  34. layers.setAt(0, layer)
  35. } else {
  36. layers.insertAt(0, layer)
  37. }
  38. layers.changed() // ol.Collection insertAt and setAt do not trigger a change event so we fire one manually so that we can rerender to display the active and inactive BasemapOptions
  39. onBasemapChanged(layer)
  40. }
  41. render () {
  42. const { translations, thumbnail, map, layerTypeID } = this.props
  43. const layerArray = map.getLayers().getArray()
  44. const isActive = layerArray.length ? layerArray[0].get(layerTypeID) === 'blankWhite' : false
  45. return (
  46. <BasemapOption className='_ol_kit_basemapOption' isActive={isActive} onClick={this.onClick}>
  47. <BasemapThumbnail thumbnail={thumbnail} />
  48. <Label>{translations['_ol_kit.BlankWhite.title']}</Label>
  49. </BasemapOption>
  50. )
  51. }
  52. }
  53. BasemapBlankWhite.propTypes = {
  54. /** reference to Openlayers map object */
  55. map: PropTypes.object.isRequired,
  56. /** Object with key/value pairs for translated strings */
  57. translations: PropTypes.shape({
  58. '_ol_kit.BlankWhite.title': PropTypes.string
  59. }),
  60. /** A string containing an http url or data url to a thumbnail image */
  61. thumbnail: PropTypes.string,
  62. /** A unique string or symbol property name that will be set directly on the layer when it is created with a value containing a string identifying the type of basemap layer (e.g. '_ol_kit_basemap': 'osm'). This property should be a shared ID used to identify individual layers as 'basemap' layers. */
  63. layerTypeID: PropTypes.oneOfType([PropTypes.symbol, PropTypes.string]),
  64. /** A callback that is fired when the basemap layer has been changed. It is called with the updated layer. */
  65. onBasemapChanged: PropTypes.func
  66. }
  67. BasemapBlankWhite.defaultProps = {
  68. thumbnail: '',
  69. onBasemapChanged: () => {},
  70. layerTypeID: '_ol_kit_basemap'
  71. }
  72. export default connectToContext(BasemapBlankWhite)