import React from 'react';
import PropTypes from 'prop-types';
import FormGroup from 'react-bootstrap/es/FormGroup';
import FormControl from 'react-bootstrap/es/FormControl';
import ControlLabel from 'react-bootstrap/es/ControlLabel';
export default class ThemeSelector extends React.Component {
constructor(props) {
super(props);
this.availableThemes = [
'elegant', 'neo', 'mdn-like', 'material', 'monokai', 'twilight'
]
this.onChange = this.onChange.bind(this);
}
componentDidMount() {
this.init(this.props.value || this.availableThemes[0]);
}
init(value) {
this.inputEl.value = value;
}
onChange() {
if (this.props.onChange != null) {
this.props.onChange(this.inputEl.value);
}
}
render() {
const options = this.availableThemes.map((theme) => {
return ;
});
return (
Theme:
this.inputEl=el }>
{options}
)
}
}
ThemeSelector.propTypes = {
value: PropTypes.string,
onChange: PropTypes.func,
};