Mailspring/internal_packages/preferences/lib/tabs/config-schema-item.jsx
Jackie Luo 6e07dce03c 🎨(preferences): Updates preferences to look prettier
Summary:
Adds new redesigned preferences with horizontal tab bar and refactored code.

Converts Preferences, Plugins, and a few components to ES6.

Test Plan: Tested locally.

Reviewers: evan, bengotow

Reviewed By: bengotow

Subscribers: juan

Differential Revision: https://phab.nylas.com/D2818
2016-04-01 14:01:26 -07:00

90 lines
2.7 KiB
JavaScript

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 (
<section>
<h6>{_str.humanize(this.props.keyName)}</h6>
{_.pairs(this.props.configSchema.properties).map(([key, value]) =>
<ConfigSchemaItem
key={key}
keyName={key}
keyPath={`${this.props.keyPath}.${key}`}
configSchema={value}
config={this.props.config}
/>
)}
</section>
);
} else if (this.props.configSchema.enum) {
return (
<div className="item">
<label htmlFor={this.props.keyPath}>{this.props.configSchema.title}:</label>
<select onChange={this._onChangeValue} value={this.props.config.get(this.props.keyPath)}>
{_.zip(this.props.configSchema.enum, this.props.configSchema.enumLabels).map(([value, label]) =>
<option key={value} value={value}>{label}</option>
)}
</select>
</div>
);
} else if (this.props.configSchema.type === 'boolean') {
return (
<div className="item">
<input id={this.props.keyPath} type="checkbox" onChange={this._onChangeChecked} checked={ this.props.config.get(this.props.keyPath) }/>
<label htmlFor={this.props.keyPath}>{this.props.configSchema.title}</label>
</div>
);
}
return (
<span></span>
);
}
}
export default ConfigSchemaItem;