106 lines
3.3 KiB
JavaScript
106 lines
3.3 KiB
JavaScript
/* eslint camelcase: 0 */
|
|
import React, { PropTypes } from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { Panel, Alert } from 'react-bootstrap';
|
|
import { sectionsToRender } from '../stores/visTypes';
|
|
import ControlPanelSection from './ControlPanelSection';
|
|
import ControlRow from './ControlRow';
|
|
import Control from './Control';
|
|
import controls from '../stores/controls';
|
|
import * as actions from '../actions/exploreActions';
|
|
|
|
const propTypes = {
|
|
actions: PropTypes.object.isRequired,
|
|
alert: PropTypes.string,
|
|
datasource_type: PropTypes.string.isRequired,
|
|
exploreState: PropTypes.object.isRequired,
|
|
controls: PropTypes.object.isRequired,
|
|
form_data: PropTypes.object.isRequired,
|
|
isDatasourceMetaLoading: PropTypes.bool.isRequired,
|
|
y_axis_zero: PropTypes.any,
|
|
};
|
|
|
|
class ControlPanelsContainer extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.removeAlert = this.removeAlert.bind(this);
|
|
this.getControlData = this.getControlData.bind(this);
|
|
}
|
|
getControlData(controlName) {
|
|
const mapF = controls[controlName].mapStateToProps;
|
|
if (mapF) {
|
|
return Object.assign({}, this.props.controls[controlName], mapF(this.props.exploreState));
|
|
}
|
|
return this.props.controls[controlName];
|
|
}
|
|
sectionsToRender() {
|
|
return sectionsToRender(this.props.form_data.viz_type, this.props.datasource_type);
|
|
}
|
|
removeAlert() {
|
|
this.props.actions.removeControlPanelAlert();
|
|
}
|
|
render() {
|
|
return (
|
|
<div className="scrollbar-container">
|
|
<Panel className="scrollbar-content">
|
|
{this.props.alert &&
|
|
<Alert bsStyle="warning">
|
|
{this.props.alert}
|
|
<i
|
|
className="fa fa-close pull-right"
|
|
onClick={this.removeAlert}
|
|
style={{ cursor: 'pointer' }}
|
|
/>
|
|
</Alert>
|
|
}
|
|
{this.sectionsToRender().map(section => (
|
|
<ControlPanelSection
|
|
key={section.label}
|
|
label={section.label}
|
|
tooltip={section.description}
|
|
>
|
|
{section.controlSetRows.map((controlSets, i) => (
|
|
<ControlRow
|
|
key={`controlsetrow-${i}`}
|
|
controls={controlSets.map(controlName => (
|
|
<Control
|
|
name={controlName}
|
|
key={`control-${controlName}`}
|
|
value={this.props.form_data[controlName]}
|
|
validationErrors={this.props.controls[controlName].validationErrors}
|
|
actions={this.props.actions}
|
|
{...this.getControlData(controlName)}
|
|
/>
|
|
))}
|
|
/>
|
|
))}
|
|
</ControlPanelSection>
|
|
))}
|
|
</Panel>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ControlPanelsContainer.propTypes = propTypes;
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
alert: state.controlPanelAlert,
|
|
isDatasourceMetaLoading: state.isDatasourceMetaLoading,
|
|
controls: state.controls,
|
|
exploreState: state,
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators(actions, dispatch),
|
|
};
|
|
}
|
|
|
|
export { ControlPanelsContainer };
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ControlPanelsContainer);
|