import React from 'react' import PropTypes from 'prop-types' import Color from 'color' import classnames from 'classnames' import CopyIcon from 'react-icons/lib/md/content-copy' import VisibilityIcon from 'react-icons/lib/md/visibility' import VisibilityOffIcon from 'react-icons/lib/md/visibility-off' import DeleteIcon from 'react-icons/lib/md/delete' import LayerIcon from '../icons/LayerIcon' import LayerEditor from './LayerEditor' import {SortableElement, SortableHandle} from 'react-sortable-hoc' @SortableHandle class LayerTypeDragHandle extends React.Component { static propTypes = LayerIcon.propTypes render() { return } } class IconAction extends React.Component { static propTypes = { action: PropTypes.string.isRequired, onClick: PropTypes.func.isRequired, wdKey: PropTypes.string } renderIcon() { switch(this.props.action) { case 'duplicate': return case 'show': return case 'hide': return case 'delete': return } } render() { return } } @SortableElement class LayerListItem extends React.Component { static propTypes = { layerId: PropTypes.string.isRequired, layerType: PropTypes.string.isRequired, isSelected: PropTypes.bool, visibility: PropTypes.string, className: PropTypes.string, onLayerSelect: PropTypes.func.isRequired, onLayerCopy: PropTypes.func, onLayerDestroy: PropTypes.func, onLayerVisibilityToggle: PropTypes.func, } static defaultProps = { isSelected: false, visibility: 'visible', onLayerCopy: () => {}, onLayerDestroy: () => {}, onLayerVisibilityToggle: () => {}, } static childContextTypes = { reactIconBase: PropTypes.object } getChildContext() { return { reactIconBase: { size: 14 } } } render() { return
  • this.props.onLayerSelect(this.props.layerId)} data-wd-key={"layer-list-item:"+this.props.layerId} className={classnames({ "maputnik-layer-list-item": true, "maputnik-layer-list-item-selected": this.props.isSelected, [this.props.className]: true, })}> {this.props.layerId} this.props.onLayerDestroy(this.props.layerId)} /> this.props.onLayerCopy(this.props.layerId)} /> this.props.onLayerVisibilityToggle(this.props.layerId)} />
  • } } export default LayerListItem;