mirror of
https://github.com/maputnik/editor.git
synced 2025-12-28 00:50:00 +00:00
Fixed lint errors
This commit is contained in:
@@ -5,6 +5,7 @@ class MessagePanel extends React.Component {
|
||||
static propTypes = {
|
||||
errors: PropTypes.array,
|
||||
infos: PropTypes.array,
|
||||
mapStyle: PropTypes.object,
|
||||
}
|
||||
|
||||
render() {
|
||||
@@ -15,7 +16,7 @@ class MessagePanel extends React.Component {
|
||||
const {mapStyle} = this.props;
|
||||
content = (
|
||||
<>
|
||||
Layer <span>'{mapStyle.layers[parsed.data.index].id}'</span>: {parsed.data.message}
|
||||
Layer <span>'{mapStyle.layers[parsed.data.index].id}'</span>: {parsed.data.message}
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -62,6 +62,7 @@ export default class FunctionSpecProperty extends React.Component {
|
||||
onChange: PropTypes.func.isRequired,
|
||||
fieldName: PropTypes.string.isRequired,
|
||||
fieldSpec: PropTypes.object.isRequired,
|
||||
error: PropTypes.object,
|
||||
|
||||
value: PropTypes.oneOfType([
|
||||
PropTypes.object,
|
||||
|
||||
@@ -40,6 +40,7 @@ export default class PropertyGroup extends React.Component {
|
||||
groupFields: PropTypes.array.isRequired,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
spec: PropTypes.object.isRequired,
|
||||
errors: PropTypes.array,
|
||||
}
|
||||
|
||||
onPropertyChange = (property, newValue) => {
|
||||
|
||||
@@ -48,6 +48,7 @@ export default class DataProperty extends React.Component {
|
||||
PropTypes.bool,
|
||||
PropTypes.array
|
||||
]),
|
||||
error: PropTypes.object,
|
||||
}
|
||||
|
||||
state = {
|
||||
@@ -202,7 +203,6 @@ export default class DataProperty extends React.Component {
|
||||
<InputBlock
|
||||
error={this.props.error}
|
||||
fieldSpec={this.props.fieldSpec}
|
||||
fieldSpec={this.props.fieldSpec}
|
||||
label={labelFromFieldName(this.props.fieldName)}
|
||||
>
|
||||
<div className="maputnik-data-spec-property-group">
|
||||
|
||||
@@ -19,7 +19,10 @@ export default class ExpressionProperty extends React.Component {
|
||||
static propTypes = {
|
||||
onDelete: PropTypes.func,
|
||||
fieldName: PropTypes.string,
|
||||
fieldSpec: PropTypes.object
|
||||
fieldSpec: PropTypes.object,
|
||||
value: PropTypes.object,
|
||||
error: PropTypes.object,
|
||||
onChange: PropTypes.func,
|
||||
}
|
||||
|
||||
constructor (props) {
|
||||
|
||||
@@ -13,7 +13,10 @@ export default class SpecProperty extends React.Component {
|
||||
onZoomClick: PropTypes.func.isRequired,
|
||||
onDataClick: PropTypes.func.isRequired,
|
||||
fieldName: PropTypes.string,
|
||||
fieldSpec: PropTypes.object
|
||||
fieldSpec: PropTypes.object,
|
||||
value: PropTypes.any,
|
||||
error: PropTypes.object,
|
||||
onExpressionClick: PropTypes.func,
|
||||
}
|
||||
|
||||
render() {
|
||||
@@ -28,7 +31,6 @@ export default class SpecProperty extends React.Component {
|
||||
return <InputBlock
|
||||
error={this.props.error}
|
||||
fieldSpec={this.props.fieldSpec}
|
||||
fieldSpec={this.props.fieldSpec}
|
||||
label={labelFromFieldName(this.props.fieldName)}
|
||||
action={functionBtn}
|
||||
>
|
||||
|
||||
@@ -44,6 +44,7 @@ export default class ZoomProperty extends React.Component {
|
||||
onAddStop: PropTypes.func,
|
||||
fieldName: PropTypes.string,
|
||||
fieldSpec: PropTypes.object,
|
||||
error: PropTypes.object,
|
||||
value: PropTypes.oneOfType([
|
||||
PropTypes.object,
|
||||
PropTypes.string,
|
||||
|
||||
@@ -27,6 +27,7 @@ export default class CombiningFilterEditor extends React.Component {
|
||||
/** Properties of the vector layer and the available fields */
|
||||
properties: PropTypes.object,
|
||||
filter: PropTypes.array,
|
||||
errors: PropTypes.array,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
}
|
||||
|
||||
|
||||
@@ -18,6 +18,8 @@ class InputBlock extends React.Component {
|
||||
style: PropTypes.object,
|
||||
onChange: PropTypes.func,
|
||||
fieldSpec: PropTypes.object,
|
||||
wideMode: PropTypes.bool,
|
||||
error: PropTypes.object,
|
||||
}
|
||||
|
||||
constructor (props) {
|
||||
|
||||
@@ -12,6 +12,7 @@ class StringInput extends React.Component {
|
||||
multi: PropTypes.bool,
|
||||
required: PropTypes.bool,
|
||||
disabled: PropTypes.bool,
|
||||
spellCheck: PropTypes.bool,
|
||||
}
|
||||
|
||||
static defaultProps = {
|
||||
|
||||
@@ -24,10 +24,15 @@ class JSONEditor extends React.Component {
|
||||
maxHeight: PropTypes.number,
|
||||
onChange: PropTypes.func,
|
||||
lineNumbers: PropTypes.bool,
|
||||
lineWrapping: PropTypes.bool,
|
||||
getValue: PropTypes.func,
|
||||
gutters: PropTypes.array,
|
||||
className: PropTypes.string,
|
||||
}
|
||||
|
||||
static defaultProps = {
|
||||
lineNumbers: true,
|
||||
lineWrapping: false,
|
||||
gutters: ["CodeMirror-lint-markers"],
|
||||
getValue: (data) => {
|
||||
return JSON.stringify(data, null, 2)
|
||||
|
||||
@@ -58,6 +58,7 @@ export default class LayerEditor extends React.Component {
|
||||
isFirstLayer: PropTypes.bool,
|
||||
isLastLayer: PropTypes.bool,
|
||||
layerIndex: PropTypes.number,
|
||||
errors: PropTypes.array,
|
||||
}
|
||||
|
||||
static defaultProps = {
|
||||
|
||||
@@ -11,6 +11,7 @@ class LayerTypeBlock extends React.Component {
|
||||
value: PropTypes.string.isRequired,
|
||||
wdKey: PropTypes.string,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
error: PropTypes.object,
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
@@ -9,6 +9,7 @@ class MaxZoomBlock extends React.Component {
|
||||
static propTypes = {
|
||||
value: PropTypes.number,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
error: PropTypes.object,
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
@@ -9,6 +9,7 @@ class MinZoomBlock extends React.Component {
|
||||
static propTypes = {
|
||||
value: PropTypes.number,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
error: PropTypes.object,
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
Reference in New Issue
Block a user