Files
superset2/superset/assets/javascripts/dashboard/components/RefreshIntervalModal.jsx
Maxime Beauchemin 15b67b2c6c [WiP] rename project from Caravel to Superset (#1576)
* Change in files

* Renamin files and folders

* cleaning up a single piece of lint

* Removing boat picture from docs

* add superset word mark

* Update rename note in docs

* Fixing images

* Pinning datatables

* Fixing issues with mapbox-gl

* Forgot to rename one file

* Linting

* v0.13.0

* adding pyyaml to dev-reqs
2016-11-09 23:08:22 -08:00

59 lines
1.4 KiB
JavaScript

import React from 'react';
import ModalTrigger from '../../components/ModalTrigger';
import Select from 'react-select';
const propTypes = {
triggerNode: React.PropTypes.node.isRequired,
initialRefreshFrequency: React.PropTypes.number,
onChange: React.PropTypes.func,
};
const defaultProps = {
initialRefreshFrequency: 0,
onChange: () => {},
};
const options = [
[0, "Don't refresh"],
[10, '10 seconds'],
[30, '30 seconds'],
[60, '1 minute'],
[300, '5 minutes'],
].map(o => ({ value: o[0], label: o[1] }));
class RefreshIntervalModal extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
refreshFrequency: props.initialRefreshFrequency,
};
}
render() {
return (
<ModalTrigger
triggerNode={this.props.triggerNode}
isButton
modalTitle="Refresh Interval"
modalBody={
<div>
Choose the refresh frequency for this dashboard
<Select
options={options}
value={this.state.refreshFrequency}
onChange={(opt) => {
this.setState({ refreshFrequency: opt.value });
this.props.onChange(opt.value);
}}
/>
</div>
}
/>
);
}
}
RefreshIntervalModal.propTypes = propTypes;
RefreshIntervalModal.defaultProps = defaultProps;
export default RefreshIntervalModal;