2016-09-10 14:10:25 +02:00
|
|
|
import React from 'react'
|
2016-09-10 16:53:58 +02:00
|
|
|
import Immutable from 'immutable'
|
|
|
|
|
2016-09-15 09:13:23 +02:00
|
|
|
import Toolbar from 'rebass/dist/Toolbar'
|
|
|
|
import NavItem from 'rebass/dist/NavItem'
|
|
|
|
import Space from 'rebass/dist/Space'
|
|
|
|
|
|
|
|
import Collapse from 'react-collapse'
|
2016-09-10 14:10:25 +02:00
|
|
|
import theme from '../theme.js'
|
|
|
|
import FillLayer from './fill.jsx'
|
|
|
|
import LineLayer from './line.jsx'
|
2016-09-15 09:13:23 +02:00
|
|
|
import SymbolLayer from './symbol.jsx'
|
2016-09-10 14:10:25 +02:00
|
|
|
import BackgroundLayer from './background.jsx'
|
2016-12-18 18:58:33 +01:00
|
|
|
import SourceEditor from './source.jsx'
|
2016-12-18 19:43:01 +01:00
|
|
|
import FilterEditor from '../filter/editor.jsx'
|
2016-09-10 14:10:25 +02:00
|
|
|
|
2016-09-10 14:47:06 +02:00
|
|
|
import MdVisibility from 'react-icons/lib/md/visibility'
|
|
|
|
import MdVisibilityOff from 'react-icons/lib/md/visibility-off'
|
|
|
|
import MdDelete from 'react-icons/lib/md/delete'
|
2016-09-10 21:35:21 +02:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-09-10 14:47:06 +02:00
|
|
|
|
2016-12-17 20:19:01 +01:00
|
|
|
import ScrollContainer from '../scrollcontainer.jsx'
|
|
|
|
|
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. */
|
|
|
|
export class LayerEditor extends React.Component {
|
2016-12-17 15:44:42 +01:00
|
|
|
static propTypes = {
|
|
|
|
layer: React.PropTypes.object.isRequired,
|
2016-12-18 18:58:33 +01:00
|
|
|
sources: React.PropTypes.instanceOf(Immutable.Map),
|
2016-12-17 15:44:42 +01:00
|
|
|
onLayerChanged: React.PropTypes.func,
|
|
|
|
onLayerDestroyed: React.PropTypes.func,
|
|
|
|
}
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
onLayerChanged: () => {},
|
|
|
|
onLayerDestroyed: () => {},
|
|
|
|
}
|
|
|
|
|
|
|
|
static childContextTypes = {
|
|
|
|
reactIconBase: React.PropTypes.object
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.shouldComponentUpdate = PureRenderMixin.shouldComponentUpdate.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
getChildContext () {
|
|
|
|
return {
|
|
|
|
reactIconBase: {
|
|
|
|
size: theme.fontSizes[4],
|
|
|
|
color: theme.colors.lowgray,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onPaintChanged(property, newValue) {
|
|
|
|
let layer = this.props.layer
|
|
|
|
//TODO: by using immutable records we can avoid this checking if object exists
|
2016-12-17 21:25:00 +01:00
|
|
|
//
|
2016-12-17 15:44:42 +01:00
|
|
|
if(!layer.has('paint')) {
|
|
|
|
layer = layer.set('paint', Immutable.Map())
|
|
|
|
}
|
|
|
|
|
|
|
|
const changedLayer = layer.setIn(['paint', property], newValue)
|
|
|
|
this.props.onLayerChanged(changedLayer)
|
|
|
|
}
|
|
|
|
|
|
|
|
onLayoutChanged(property, newValue) {
|
|
|
|
let layer = this.props.layer
|
|
|
|
//TODO: by using immutable records we can avoid this checking if object exists
|
|
|
|
if(!layer.has('layout')) {
|
|
|
|
layer = layer.set('layout', Immutable.Map())
|
|
|
|
}
|
|
|
|
|
|
|
|
const changedLayer = layer.setIn(['layout', property], newValue)
|
|
|
|
this.props.onLayerChanged(changedLayer)
|
|
|
|
}
|
|
|
|
|
|
|
|
layerFromType(type) {
|
|
|
|
if (type === "fill") {
|
|
|
|
return <FillLayer
|
|
|
|
layer={this.props.layer}
|
|
|
|
onPaintChanged={this.onPaintChanged.bind(this)}
|
|
|
|
onLayoutChanged={this.onLayoutChanged.bind(this)}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === "background") {
|
|
|
|
return <BackgroundLayer
|
|
|
|
layer={this.props.layer}
|
|
|
|
onPaintChanged={this.onPaintChanged.bind(this)}
|
|
|
|
onLayoutChanged={this.onLayoutChanged.bind(this)}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === "line") {
|
|
|
|
return <LineLayer
|
|
|
|
layer={this.props.layer}
|
|
|
|
onPaintChanged={this.onPaintChanged.bind(this)}
|
|
|
|
onLayoutChanged={this.onLayoutChanged.bind(this)}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === "symbol") {
|
|
|
|
return <SymbolLayer
|
|
|
|
layer={this.props.layer}
|
|
|
|
onPaintChanged={this.onPaintChanged.bind(this)}
|
|
|
|
onLayoutChanged={this.onLayoutChanged.bind(this)}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
|
|
|
|
return <UnsupportedLayer />
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleVisibility() {
|
|
|
|
if(this.props.layer.has('layout') && this.props.layer.getIn(['layout', 'visibility']) === 'none') {
|
|
|
|
this.onLayoutChanged('visibility', 'visible')
|
|
|
|
} else {
|
|
|
|
this.onLayoutChanged('visibility', 'none')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let visibleIcon = <MdVisibilityOff />
|
|
|
|
if(this.props.layer.has('layout') && this.props.layer.getIn(['layout', 'visibility']) === 'none') {
|
|
|
|
visibleIcon = <MdVisibility />
|
|
|
|
}
|
|
|
|
|
|
|
|
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.get('id')}
|
|
|
|
</NavItem>
|
|
|
|
<Space auto x={1} />
|
|
|
|
<NavItem onClick={this.toggleVisibility.bind(this)}>
|
|
|
|
{visibleIcon}
|
|
|
|
</NavItem>
|
|
|
|
<NavItem onClick={(e) => this.props.onLayerDestroyed(this.props.layer)}>
|
|
|
|
<MdDelete />
|
|
|
|
</NavItem>
|
|
|
|
</Toolbar>
|
2016-12-18 19:43:01 +01:00
|
|
|
<FilterEditor
|
2016-12-19 12:59:04 +01:00
|
|
|
filter={this.props.layer.get('filter', Immutable.List()).toJSON()}
|
2016-12-19 14:52:28 +01:00
|
|
|
onChange={f => console.log('filter changed', f)}
|
2016-12-18 19:43:01 +01:00
|
|
|
/>
|
2016-12-18 18:58:33 +01:00
|
|
|
{this.props.layer.get('type') !== 'background' && <SourceEditor
|
|
|
|
source={this.props.layer.get('source')}
|
|
|
|
sourceLayer={this.props.layer.get('source-layer')}
|
|
|
|
sources={this.props.sources}
|
|
|
|
onSourceChange={console.log}
|
|
|
|
onSourceLayerChange={console.log}
|
|
|
|
/>}
|
2016-12-17 20:19:01 +01:00
|
|
|
<div style={{padding: theme.scale[2], paddingRight: 0, backgroundColor: theme.colors.black}}>
|
|
|
|
{this.layerFromType(this.props.layer.get('type'))}
|
|
|
|
</div>
|
2016-12-17 15:44:42 +01:00
|
|
|
</div>
|
|
|
|
}
|
2016-09-10 14:10:25 +02:00
|
|
|
}
|
|
|
|
|