mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
78 lines
2.2 KiB
JavaScript
78 lines
2.2 KiB
JavaScript
import { isNull, isUndefined, isArray, isEmpty, get, map, join, has } from "lodash";
|
|
import { Query } from "@/services/query";
|
|
import { Parameter } from ".";
|
|
|
|
class QueryBasedDropdownParameter extends Parameter {
|
|
constructor(parameter, parentQueryId) {
|
|
super(parameter, parentQueryId);
|
|
this.queryId = parameter.queryId;
|
|
this.multiValuesOptions = parameter.multiValuesOptions;
|
|
this.setValue(parameter.value);
|
|
}
|
|
|
|
normalizeValue(value) {
|
|
if (isUndefined(value) || isNull(value) || (isArray(value) && isEmpty(value))) {
|
|
return null;
|
|
}
|
|
|
|
if (this.multiValuesOptions) {
|
|
value = isArray(value) ? value : [value];
|
|
} else {
|
|
value = isArray(value) ? value[0] : value;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
getExecutionValue(extra = {}) {
|
|
const { joinListValues } = extra;
|
|
if (joinListValues && isArray(this.value)) {
|
|
const separator = get(this.multiValuesOptions, "separator", ",");
|
|
const prefix = get(this.multiValuesOptions, "prefix", "");
|
|
const suffix = get(this.multiValuesOptions, "suffix", "");
|
|
const parameterValues = map(this.value, v => `${prefix}${v}${suffix}`);
|
|
return join(parameterValues, separator);
|
|
}
|
|
return this.value;
|
|
}
|
|
|
|
toUrlParams() {
|
|
const prefix = this.urlPrefix;
|
|
|
|
let urlParam = this.value;
|
|
if (this.multiValuesOptions && isArray(this.value)) {
|
|
urlParam = JSON.stringify(this.value);
|
|
}
|
|
|
|
return {
|
|
[`${prefix}${this.name}`]: !this.isEmpty ? urlParam : null,
|
|
};
|
|
}
|
|
|
|
fromUrlParams(query) {
|
|
const prefix = this.urlPrefix;
|
|
const key = `${prefix}${this.name}`;
|
|
if (has(query, key)) {
|
|
if (this.multiValuesOptions) {
|
|
try {
|
|
const valueFromJson = JSON.parse(query[key]);
|
|
this.setValue(isArray(valueFromJson) ? valueFromJson : query[key]);
|
|
} catch (e) {
|
|
this.setValue(query[key]);
|
|
}
|
|
} else {
|
|
this.setValue(query[key]);
|
|
}
|
|
}
|
|
}
|
|
|
|
loadDropdownValues() {
|
|
if (this.parentQueryId) {
|
|
return Query.associatedDropdown({ queryId: this.parentQueryId, dropdownQueryId: this.queryId }).$promise;
|
|
}
|
|
|
|
return Query.asDropdown({ id: this.queryId }).$promise;
|
|
}
|
|
}
|
|
|
|
export default QueryBasedDropdownParameter;
|