mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 19:00:09 -04:00
* Migrate router and <app-view> to React: skeleton * Update layout on route change * Start moving page routes from angular to react * Move page routes to react except of public dashboard and visualization embed) * Move public dashboard and visualization embed routes to React * Replace $route/$routeParams usages * Some cleanup * Replace AngularJS $location service with implementation based on history library * Minor fix to how ApplicationView handles route change * Explicitly use global layout for each page instead of handling related stuff in ApplicationArea component * Error handling * Remove AngularJS and related dependencies * Move Parameter factory method to a separate file * Fix CSS (replace custom components with classes) * Fix: keep other url parts when updating location partially; refine code * Fix tests * Make router work in multi-org mode (respect <base> tag) * Optimzation: don't resolve route if path didn't change * Fix search input in header; error handling improvement (handle more errors in pages; global error handler for unhandled errors; dialog dismiss 'unhandled rejection' errors) * Fix page keys; fix navigateTo calls (third parameter not available) * Use relative links * Router: ignore location REPLACE events, resolve only on PUSH/POP * Fix tests * Remove unused jQuery reference * Show error from backend when creating Destination * Remove route.resolve where not necessary (used constant values) * New Query page: keep state on saving, reload when creating another new query * Use currentRoute.key instead of hard-coded keys for page components * Tidy up Router * Tidy up location service * Fix tests * Don't add parameters changes to browser's history * Fix test (improved fix) Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com>
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 "./Parameter";
|
|
|
|
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 });
|
|
}
|
|
|
|
return Query.asDropdown({ id: this.queryId });
|
|
}
|
|
}
|
|
|
|
export default QueryBasedDropdownParameter;
|