mirror of
https://github.com/maputnik/editor.git
synced 2026-02-07 05:00:01 +00:00
27 lines
829 B
JavaScript
27 lines
829 B
JavaScript
import React from 'react'
|
|
import Collapser from './Collapser'
|
|
|
|
export default class LayerEditorGroup extends React.Component {
|
|
static propTypes = {
|
|
title: React.PropTypes.string.isRequired,
|
|
children: React.PropTypes.element.isRequired,
|
|
isActive: React.PropTypes.bool.isRequired,
|
|
onActiveToggle: React.PropTypes.func.isRequired
|
|
}
|
|
|
|
render() {
|
|
return <div className="maputnik-layer-list-group">
|
|
<div className="maputnik-layer-list-group-header"
|
|
onClick={e => this.props.onActiveToggle(!this.props.isActive)}
|
|
>
|
|
<span className="maputnik-layer-list-group-title">{this.props.title}</span>
|
|
<span className="maputnik-space" />
|
|
<Collapser
|
|
style={{ height: 14, width: 14 }}
|
|
isCollapsed={this.props.isActive}
|
|
/>
|
|
</div>
|
|
</div>
|
|
}
|
|
}
|