All files / javascripts/dashboard/components RefreshIntervalModal.jsx

88.24% Statements 15/17
50% Branches 1/2
66.67% Functions 4/6
88.24% Lines 15/17
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 591x   1x 1x   1x           1x   1x     1x           5x     3x   1x       1x 1x                     1x                     1x 1x      
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;