import React from 'react'; import _ from 'underscore'; import _str from 'underscore.string'; /* This component renders input controls for a subtree of the N1 config-schema and reads/writes current values using the `config` prop, which is expected to be an instance of the config provided by `ConfigPropContainer`. The config schema follows the JSON Schema standard: http://json-schema.org/ */ class ConfigSchemaItem extends React.Component { static displayName = 'ConfigSchemaItem'; static propTypes = { config: React.PropTypes.object, configSchema: React.PropTypes.object, keyName: React.PropTypes.string, keyPath: React.PropTypes.string, }; _appliesToPlatform() { if (!this.props.configSchema.platform) { return true; } else if (this.props.configSchema.platforms.indexOf(process.platform) !== -1) { return true; } return false; } _onChangeChecked = (event) => { this.props.config.toggle(this.props.keyPath); event.target.blur(); } _onChangeValue = (event) => { this.props.config.set(this.props.keyPath, event.target.value); event.target.blur(); } render() { if (!this._appliesToPlatform()) return false; // In the future, we may add an option to reveal "advanced settings" if (this.props.configSchema.advanced) return false; if (this.props.configSchema.type === 'object') { return (
{_str.humanize(this.props.keyName)}
{_.pairs(this.props.configSchema.properties).map(([key, value]) => )}
); } else if (this.props.configSchema.enum) { return (
); } else if (this.props.configSchema.type === 'boolean') { return (
); } return ( ); } } export default ConfigSchemaItem;