mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
Storing queries, split state, and time range in URL. - harmonize query serialization when generating Explore URLs in dashboards (use of `renderUrl`) - move URL parse/serialization to Wrapper - keep UI states under two keys, one for left and one for right Explore - add option to angular router to not reload page on search change - add lots of types - fix time service function that gets triggered by URL change
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
/**
|
|
* @preserve jquery-param (c) 2015 KNOWLEDGECODE | MIT
|
|
*/
|
|
|
|
import { UrlQueryMap } from 'app/types';
|
|
|
|
export function renderUrl(path: string, query: UrlQueryMap | undefined): string {
|
|
if (query && Object.keys(query).length > 0) {
|
|
path += '?' + toUrlParams(query);
|
|
}
|
|
return path;
|
|
}
|
|
|
|
export function toUrlParams(a) {
|
|
const s = [];
|
|
const rbracket = /\[\]$/;
|
|
|
|
const isArray = obj => {
|
|
return Object.prototype.toString.call(obj) === '[object Array]';
|
|
};
|
|
|
|
const add = (k, v) => {
|
|
v = typeof v === 'function' ? v() : v === null ? '' : v === undefined ? '' : v;
|
|
if (typeof v !== 'boolean') {
|
|
s[s.length] = encodeURIComponent(k) + '=' + encodeURIComponent(v);
|
|
} else {
|
|
s[s.length] = encodeURIComponent(k);
|
|
}
|
|
};
|
|
|
|
const buildParams = (prefix, obj) => {
|
|
let i, len, key;
|
|
|
|
if (prefix) {
|
|
if (isArray(obj)) {
|
|
for (i = 0, len = obj.length; i < len; i++) {
|
|
if (rbracket.test(prefix)) {
|
|
add(prefix, obj[i]);
|
|
} else {
|
|
buildParams(prefix, obj[i]);
|
|
}
|
|
}
|
|
} else if (obj && String(obj) === '[object Object]') {
|
|
for (key in obj) {
|
|
buildParams(prefix + '[' + key + ']', obj[key]);
|
|
}
|
|
} else {
|
|
add(prefix, obj);
|
|
}
|
|
} else if (isArray(obj)) {
|
|
for (i = 0, len = obj.length; i < len; i++) {
|
|
add(obj[i].name, obj[i].value);
|
|
}
|
|
} else {
|
|
for (key in obj) {
|
|
buildParams(key, obj[key]);
|
|
}
|
|
}
|
|
return s;
|
|
};
|
|
|
|
return buildParams('', a).join('&');
|
|
}
|