import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Form } from '@storybook/components'; import TypeMap from './types'; const InvalidType = () => Invalid Type; export default class PropForm extends Component { makeChangeHandler(name, type) { const { onFieldChange } = this.props; return (value = '') => { const change = { name, type, value }; onFieldChange(change); }; } render() { const { knobs, onFieldClick } = this.props; return (
{knobs.map(knob => { const changeHandler = this.makeChangeHandler(knob.name, knob.type); const InputType = TypeMap[knob.type] || InvalidType; return ( ); })}
); } } PropForm.displayName = 'PropForm'; PropForm.propTypes = { knobs: PropTypes.arrayOf( PropTypes.shape({ name: PropTypes.string, value: PropTypes.any, }) ).isRequired, onFieldChange: PropTypes.func.isRequired, onFieldClick: PropTypes.func.isRequired, };