mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
* Migrate Query Source View page to React: skeleton
* Sync QueryView and QuerySource (#4430)
* Migrate schema browser to react (#4432)
* Restyle code with Prettier
* Migrate Query page to React: Save changes (#4452)
* Migrate query source to React: Set of updates (#4457)
* Migrate Query page to React: Visualization Tabs (#4453)
Co-Authored-By: Levko Kravets <levko.ne@gmail.com>
* Migrate Query Source page to React: Visualizations area (#4463)
* Migrate Query page to React: Delete visualization button (#4461)
* Migrate Query Source page to React: Visualization actions (#4467)
* Migrate Query pages to React: Execute query hook (#4470)
* Migrate Query Source page to React: Editor area (#4468)
* Migrate Query Source page to React: metadata, schedule and description blocks (#4476)
* Migrate Query page to React: Cancel query execution (#4496)
* Migrate Query Source page to React: refine code (#4499)
* Migrate Query Source page to React: alerts (#4504)
* Migrate Query Source page to React: unsaved changes alert (#4505)
* Migrate Query Source to React: resizable areas (v2) (#4503)
* Migrate Query page to React: Query View (#4455)
Co-authored-by: Levko Kravets <levko.ne@gmail.com>
* Switch React and Angular versions of pages (until Angular version removed)
* Migrate Query pages to React: fix permissions (#4506)
* Migrate Query Source page to React: don't reload when saving new query (#4507)
* Migrate Query pages to React: fix tests (#4509)
* Use skipParametersDirtyFlag in executeQuery
* Fix: cannot fork query from Query View page
* Optimize query editor: handle query text changes faster
* Revert "Optimize query editor: handle query text changes faster"
This reverts commit 2934e53be6.
* Reduce debounced time to 100
* Migrate Query pages to React: cleanup (#4512)
* Migrate Query pages to React: cleanup
* Further cleanup
* Remove unused dependencies
* Fix embed pages
* Attempt to fix flaky test
* Cleanup: explicitly register the last Angular component
* Move contents of /filters folder to /lib
* Remove unnecessary import
* Remove cy.wait from Parameters spec
Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com>
Co-authored-by: Levko Kravets <levko.ne@gmail.com>
109 lines
3.0 KiB
JavaScript
109 lines
3.0 KiB
JavaScript
import { find, isArray, map, intersection, isEqual } from "lodash";
|
|
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import Select from "antd/lib/select";
|
|
|
|
const { Option } = Select;
|
|
|
|
export default class QueryBasedParameterInput extends React.Component {
|
|
static propTypes = {
|
|
parameter: PropTypes.any, // eslint-disable-line react/forbid-prop-types
|
|
value: PropTypes.any, // eslint-disable-line react/forbid-prop-types
|
|
mode: PropTypes.oneOf(["default", "multiple"]),
|
|
queryId: PropTypes.number,
|
|
onSelect: PropTypes.func,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
static defaultProps = {
|
|
value: null,
|
|
mode: "default",
|
|
parameter: null,
|
|
queryId: null,
|
|
onSelect: () => {},
|
|
className: "",
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
options: [],
|
|
value: null,
|
|
loading: false,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this._loadOptions(this.props.queryId);
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.queryId !== prevProps.queryId) {
|
|
this._loadOptions(this.props.queryId);
|
|
}
|
|
if (this.props.value !== prevProps.value) {
|
|
this.setValue(this.props.value);
|
|
}
|
|
}
|
|
|
|
setValue(value) {
|
|
const { options } = this.state;
|
|
if (this.props.mode === "multiple") {
|
|
value = isArray(value) ? value : [value];
|
|
const optionValues = map(options, option => option.value);
|
|
const validValues = intersection(value, optionValues);
|
|
this.setState({ value: validValues });
|
|
return validValues;
|
|
}
|
|
const found = find(options, option => option.value === this.props.value) !== undefined;
|
|
value = found ? value : options[0].value;
|
|
this.setState({ value });
|
|
return value;
|
|
}
|
|
|
|
async _loadOptions(queryId) {
|
|
if (queryId && queryId !== this.state.queryId) {
|
|
this.setState({ loading: true });
|
|
const options = await this.props.parameter.loadDropdownValues();
|
|
|
|
// stale queryId check
|
|
if (this.props.queryId === queryId) {
|
|
this.setState({ options, loading: false }, () => {
|
|
const updatedValue = this.setValue(this.props.value);
|
|
if (!isEqual(updatedValue, this.props.value)) {
|
|
this.props.onSelect(updatedValue);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { className, value, mode, onSelect, ...otherProps } = this.props;
|
|
const { loading, options } = this.state;
|
|
return (
|
|
<span>
|
|
<Select
|
|
className={className}
|
|
disabled={loading || options.length === 0}
|
|
loading={loading}
|
|
mode={mode}
|
|
value={this.state.value}
|
|
onChange={onSelect}
|
|
dropdownMatchSelectWidth={false}
|
|
optionFilterProp="children"
|
|
showSearch
|
|
showArrow
|
|
notFoundContent={null}
|
|
{...otherProps}>
|
|
{options.map(option => (
|
|
<Option value={option.value} key={option.value}>
|
|
{option.name}
|
|
</Option>
|
|
))}
|
|
</Select>
|
|
</span>
|
|
);
|
|
}
|
|
}
|