1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* @flow */
-
- import { reportError } from '../util';
-
- /**
- * Parses the query/search or fragment/hash parameters out of a specific URL and
- * returns them as a JS object.
- *
- * @param {string} url - The URL to parse.
- * @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}.
- * @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 = {};
- const paramParts = (paramStr && paramStr.substr(1).split('&')) || [];
-
- // Detect and ignore hash params for hash routers.
- if (source === 'hash' && paramParts.length === 1) {
- const firstParam = paramParts[0];
-
- if (firstParam.startsWith('/') && firstParam.split('&').length === 1) {
- return params;
- }
- }
-
- paramParts.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) {
- reportError(
- e, `Failed to parse URL parameter value: ${String(value)}`);
-
- return;
- }
- params[key] = value;
- });
-
- return params;
- }
|