mirror of
https://github.com/maputnik/editor.git
synced 2025-12-15 18:50:01 +00:00
28 lines
696 B
JavaScript
28 lines
696 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import styleSpec from '@mapbox/mapbox-gl-style-spec/style-spec'
|
|
import InputBlock from '../inputs/InputBlock'
|
|
import StringInput from '../inputs/StringInput'
|
|
|
|
class LayerIdBlock extends React.Component {
|
|
static propTypes = {
|
|
value: PropTypes.string.isRequired,
|
|
wdKey: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
}
|
|
|
|
render() {
|
|
return <InputBlock label={"ID"} doc={styleSpec.latest.layer.id.doc}
|
|
data-wd-key={this.props.wdKey}
|
|
>
|
|
<StringInput
|
|
value={this.props.value}
|
|
onChange={this.props.onChange}
|
|
/>
|
|
</InputBlock>
|
|
}
|
|
}
|
|
|
|
export default LayerIdBlock
|