import React from 'react' import PropTypes from 'prop-types' import StringInput from './StringInput' import NumberInput from './NumberInput' class ArrayInput extends React.Component { static propTypes = { value: PropTypes.array, type: PropTypes.string, length: PropTypes.number, default: PropTypes.array, onChange: PropTypes.func, } changeValue(idx, newValue) { console.log(idx, newValue) const values = this.values.slice(0) values[idx] = newValue this.props.onChange(values) } get values() { return this.props.value || this.props.default || [] } render() { const inputs = this.values.map((v, i) => { if(this.props.type === 'number') { return } else { return } }) return
{inputs}
} } export default ArrayInput