2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-10 11:25:10 -05:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class SettingText extends React.PureComponent {
|
2017-01-10 11:25:10 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
settings: ImmutablePropTypes.map.isRequired,
|
|
|
|
settingKey: PropTypes.array.isRequired,
|
|
|
|
label: PropTypes.string.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
onChange: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleChange = (e) => {
|
2017-05-20 11:31:47 -04:00
|
|
|
this.props.onChange(this.props.settingKey, e.target.value);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-01-10 11:25:10 -05:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { settings, settingKey, label } = this.props;
|
|
|
|
|
|
|
|
return (
|
2017-07-27 18:54:48 -04:00
|
|
|
<label>
|
|
|
|
<span style={{ display: 'none' }}>{label}</span>
|
|
|
|
<input
|
|
|
|
className='setting-text'
|
|
|
|
value={settings.getIn(settingKey)}
|
|
|
|
onChange={this.handleChange}
|
|
|
|
placeholder={label}
|
|
|
|
/>
|
|
|
|
</label>
|
2017-01-10 11:25:10 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|