2017-05-04 15:20:41 +00:00
|
|
|
/* @flow */
|
|
|
|
|
|
|
|
/**
|
2017-07-27 18:50:09 +00:00
|
|
|
* Parses the query/search or fragment/hash parameters out of a specific URL and
|
|
|
|
* returns them as a JS object.
|
2017-05-04 15:20:41 +00:00
|
|
|
*
|
2017-05-26 22:11:33 +00:00
|
|
|
* @param {string} url - The URL to parse.
|
2017-07-27 18:50:09 +00:00
|
|
|
* @param {boolean} dontParse - If falsy, some transformations (for parsing the
|
|
|
|
* value as JSON) will be executed.
|
|
|
|
* @param {string} source - If {@code 'search'}, the parameters will parsed out
|
|
|
|
* of {@code url.search}; otherwise, out of {@code url.hash}.
|
2017-05-04 15:20:41 +00:00
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
export default function parseURLParams(
|
|
|
|
url: URL,
|
|
|
|
dontParse: boolean = false,
|
|
|
|
source: string = 'hash'): Object {
|
|
|
|
const paramStr = source === 'search' ? url.search : url.hash;
|
|
|
|
const params = {};
|
|
|
|
|
|
|
|
// eslint-disable-next-line newline-per-chained-call
|
|
|
|
paramStr && paramStr.substr(1).split('&').forEach(part => {
|
|
|
|
const param = part.split('=');
|
|
|
|
const key = param[0];
|
|
|
|
|
|
|
|
if (!key) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let value;
|
|
|
|
|
|
|
|
try {
|
|
|
|
value = param[1];
|
|
|
|
if (!dontParse) {
|
|
|
|
value
|
|
|
|
= JSON.parse(decodeURIComponent(value).replace(/\\&/, '&'));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
const msg = `Failed to parse URL parameter value: ${String(value)}`;
|
|
|
|
|
|
|
|
console.warn(msg, e);
|
|
|
|
window.onerror && window.onerror(msg, null, null, null, e);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
params[key] = value;
|
|
|
|
});
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|