mirror of
https://github.com/apache/superset.git
synced 2026-04-10 03:45:22 +00:00
* make react-virtualized table work use dynamic sizing for cell width enable filtering require height prop for result set component * fix tests and linting * move some state to props * move getTextWidth to visUtils * make striped rows optional * fix striped proptype * update name to FilterableTable * add basic test and fix linting * accept array of columns keys rather than an array of objects that needs to be mapped * move container div inside the component * rename styles * fit table component to width if it's smaller than parent container * move stylesheet to javascript folder otherwise it throws an error on npm run prod * move css to index.jsx * fix result set spec * fix linting and test * fix result set props * keep list immutable
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import { Modal } from 'react-bootstrap';
|
|
|
|
import * as Actions from '../actions';
|
|
import ResultSet from './ResultSet';
|
|
|
|
const propTypes = {
|
|
queries: React.PropTypes.object,
|
|
actions: React.PropTypes.object,
|
|
showDataPreviewModal: React.PropTypes.bool,
|
|
dataPreviewQueryId: React.PropTypes.string,
|
|
};
|
|
|
|
class DataPreviewModal extends React.PureComponent {
|
|
hide() {
|
|
this.props.actions.hideDataPreview();
|
|
}
|
|
render() {
|
|
if (this.props.showDataPreviewModal && this.props.dataPreviewQueryId) {
|
|
const query = this.props.queries[this.props.dataPreviewQueryId];
|
|
return (
|
|
<Modal
|
|
show={this.props.showDataPreviewModal}
|
|
onHide={this.hide.bind(this)}
|
|
bsStyle="lg"
|
|
>
|
|
<Modal.Header closeButton>
|
|
<Modal.Title>
|
|
Data preview for <strong>{query.tableName}</strong>
|
|
</Modal.Title>
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<ResultSet
|
|
query={query}
|
|
visualize={false}
|
|
csv={false}
|
|
actions={this.props.actions}
|
|
height={400}
|
|
/>
|
|
</Modal.Body>
|
|
</Modal>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
DataPreviewModal.propTypes = propTypes;
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
queries: state.queries,
|
|
showDataPreviewModal: state.showDataPreviewModal,
|
|
dataPreviewQueryId: state.dataPreviewQueryId,
|
|
};
|
|
}
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators(Actions, dispatch),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(DataPreviewModal);
|