mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-08 11:30:52 +01:00
44 lines
990 B
JavaScript
44 lines
990 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import AutocompleteInput from './AutocompleteInput'
|
|
|
|
class FontInput extends React.Component {
|
|
static propTypes = {
|
|
value: PropTypes.array.isRequired,
|
|
default: PropTypes.array,
|
|
fonts: PropTypes.array,
|
|
style: PropTypes.object,
|
|
onChange: PropTypes.func.isRequired,
|
|
}
|
|
|
|
static defaultProps = {
|
|
fonts: []
|
|
}
|
|
|
|
get values() {
|
|
return this.props.value || this.props.default.slice(1) || []
|
|
}
|
|
|
|
changeFont(idx, newValue) {
|
|
const changedValues = this.values.slice(0)
|
|
changedValues[idx] = newValue
|
|
this.props.onChange(changedValues)
|
|
}
|
|
|
|
render() {
|
|
const inputs = this.values.map((value, i) => {
|
|
return <AutocompleteInput
|
|
key={i}
|
|
value={value}
|
|
options={this.props.fonts.map(f => [f, f])}
|
|
onChange={this.changeFont.bind(this, i)}
|
|
/>
|
|
})
|
|
|
|
return <div className="maputnik-font">
|
|
{inputs}
|
|
</div>
|
|
}
|
|
}
|
|
|
|
export default FontInput
|