maputnik/src/components/layers/LayerEditor.jsx

112 lines
2.8 KiB
React
Raw Normal View History

2016-09-10 14:10:25 +02:00
import React from 'react'
2016-09-10 16:53:58 +02:00
2016-09-15 09:13:23 +02:00
import Toolbar from 'rebass/dist/Toolbar'
import NavItem from 'rebass/dist/NavItem'
2016-12-20 11:44:22 +01:00
import SourceEditor from './SourceEditor'
import FilterEditor from '../filter/FilterEditor'
import PropertyGroup from '../fields/PropertyGroup'
2016-12-19 15:40:11 +01:00
2016-12-20 11:44:22 +01:00
import ScrollContainer from '../ScrollContainer'
import layout from '../../config/layout.json'
import theme from '../../config/rebass.js'
2016-12-17 20:19:01 +01:00
2016-09-10 14:10:25 +02:00
class UnsupportedLayer extends React.Component {
2016-12-17 15:44:42 +01:00
render() {
return <div></div>
}
2016-09-10 14:10:25 +02:00
}
/** Layer editor supporting multiple types of layers. */
2016-12-20 11:44:22 +01:00
export default class LayerEditor extends React.Component {
2016-12-17 15:44:42 +01:00
static propTypes = {
layer: React.PropTypes.object.isRequired,
2016-12-20 16:08:49 +01:00
sources: React.PropTypes.object,
vectorLayers: React.PropTypes.object,
2016-12-17 15:44:42 +01:00
onLayerChanged: React.PropTypes.func,
}
static defaultProps = {
onLayerChanged: () => {},
onLayerDestroyed: () => {},
}
static childContextTypes = {
reactIconBase: React.PropTypes.object
}
constructor(props) {
super(props);
}
getChildContext () {
return {
reactIconBase: {
size: theme.fontSizes[4],
color: theme.colors.lowgray,
}
}
}
/** A {@property} in either the paint our layout {@group} has changed
* to a {@newValue}.
*/
onPropertyChange(group, property, newValue) {
const changedLayer = {
...this.props.layer,
[group]: {
...this.props.layer[group],
[property]: newValue
}
}
2016-12-17 15:44:42 +01:00
this.props.onLayerChanged(changedLayer)
}
onFilterChange(newValue) {
const changedLayer = {
...this.props.layer,
filter: newValue
}
2016-12-19 14:56:10 +01:00
this.props.onLayerChanged(changedLayer)
}
2016-12-17 15:44:42 +01:00
render() {
const layerType = this.props.layer.type
const groups = layout[layerType].groups
const propertyGroups = groups.map(group => {
return <PropertyGroup
2016-12-20 11:44:22 +01:00
key={this.props.group}
layer={this.props.layer}
2016-12-20 16:08:49 +01:00
groupFields={group.fields}
onChange={this.onPropertyChange.bind(this)}
/>
})
2016-12-17 15:44:42 +01:00
return <div style={{
padding: theme.scale[0],
}}>
2016-12-17 16:09:37 +01:00
<Toolbar>
2016-12-17 15:44:42 +01:00
<NavItem style={{fontWeight: 400}}>
{this.props.layer.id}
2016-12-17 15:44:42 +01:00
</NavItem>
</Toolbar>
{propertyGroups}
2016-12-20 16:08:49 +01:00
{this.props.layer.type !== 'background' && <div>
2016-12-19 15:40:11 +01:00
<FilterEditor
filter={this.props.layer.filter}
2016-12-20 16:08:49 +01:00
properties={this.props.vectorLayers[this.props.layer['source-layer']]}
onChange={f => this.onFilterChange(f)}
2016-12-19 15:40:11 +01:00
/>
2016-12-20 16:08:49 +01:00
<SourceEditor
source={this.props.layer.source}
sourceLayer={this.props.layer['source-layer']}
sources={this.props.sources}
onSourceChange={console.log}
onSourceLayerChange={console.log}
/>
</div>}
2016-12-17 15:44:42 +01:00
</div>
}
2016-09-10 14:10:25 +02:00
}