/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React from 'react'; import PropTypes from 'prop-types'; import { Col, Collapse, Label, OverlayTrigger, Row, Tooltip, Well, } from 'react-bootstrap'; import { t } from '@superset-ui/translation'; import ControlHeader from '../ControlHeader'; import ColumnOption from '../../../components/ColumnOption'; import MetricOption from '../../../components/MetricOption'; import DatasourceModal from '../../../datasource/DatasourceModal'; const propTypes = { onChange: PropTypes.func, value: PropTypes.string, datasource: PropTypes.object.isRequired, onDatasourceSave: PropTypes.func, }; const defaultProps = { onChange: () => {}, onDatasourceSave: () => {}, value: null, }; class DatasourceControl extends React.PureComponent { constructor(props) { super(props); this.state = { showEditDatasourceModal: false, loading: true, showDatasource: false, datasources: null, }; this.toggleShowDatasource = this.toggleShowDatasource.bind(this); this.toggleEditDatasourceModal = this.toggleEditDatasourceModal.bind(this); this.renderDatasource = this.renderDatasource.bind(this); } toggleShowDatasource() { this.setState(({ showDatasource }) => ({ showDatasource: !showDatasource })); } toggleEditDatasourceModal() { this.setState(({ showEditDatasourceModal }) => ({ showEditDatasourceModal: !showEditDatasourceModal, })); } renderDatasource() { const datasource = this.props.datasource; return (
{` ${datasource.database.name} `}
Columns {datasource.columns.map(col => (
))} Metrics {datasource.metrics.map(m => (
))}
); } render() { return (
{t('Click to edit the datasource')} } > {t('Expand/collapse datasource configuration')} } > {this.props.datasource.type === 'table' && {t('Explore this datasource in SQL Lab')} } > } {this.renderDatasource()}
); } } DatasourceControl.propTypes = propTypes; DatasourceControl.defaultProps = defaultProps; export default DatasourceControl;