1. import React, { Component } from 'react'
  2. import PropTypes from 'prop-types'
  3. import { Checkbox } from './styled'
  4. import Icon from '@mdi/react'
  5. import { mdiCheckboxBlank } from '@mdi/js'
  6. /**
  7. * @component
  8. * @category LayerPanel
  9. * @since 0.5.0
  10. */
  11. class LayerPanelCheckbox extends Component {
  12. render () {
  13. const { checkboxState, handleClick, color } = this.props
  14. const checkboxDataTestId = checkboxState ? 'LayerPanel.checked' : 'LayerPanel.unchecked'
  15. if (checkboxState === 'indeterminate') {
  16. return (
  17. <Checkbox inputProps={{
  18. 'data-testid': 'LayerPanel.indeterminateCheckbox'
  19. }} indeterminateIcon={<Icon path={mdiCheckboxBlank} size={1} color={color} />}
  20. onClick={(e) => handleClick(e, true)} checked={!!checkboxState} indeterminate />
  21. )
  22. } else {
  23. return (
  24. <Checkbox inputProps={{
  25. 'data-testid': checkboxDataTestId
  26. }} onClick={(e) => handleClick(e, !checkboxState)} checked={checkboxState} />
  27. )
  28. }
  29. }
  30. }
  31. LayerPanelCheckbox.propTypes = {
  32. /** checkbox checked state, either string('indeterminate') or bool */
  33. checkboxState: PropTypes.oneOfType([
  34. PropTypes.string,
  35. PropTypes.bool
  36. ]),
  37. /** function that handles the click of checkbox. Returns the event and the state of the checkbox (bool) */
  38. handleClick: PropTypes.func.isRequired,
  39. /** string for checkbox checked color (hex) */
  40. color: PropTypes.string
  41. }
  42. LayerPanelCheckbox.defaultProps = {
  43. color: '#152357'
  44. }
  45. export default LayerPanelCheckbox