| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /**
- * @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 encodeURIComponentAsAngularJS(val, pctEncodeSpaces) {
- return encodeURIComponent(val).
- replace(/%40/gi, '@').
- replace(/%3A/gi, ':').
- replace(/%24/g, '$').
- replace(/%2C/gi, ',').
- replace(/%3B/gi, ';').
- replace(/%20/g, (pctEncodeSpaces ? '%20' : '+'));
- }
- 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] = encodeURIComponentAsAngularJS(k, true) + '=' + encodeURIComponentAsAngularJS(v, true);
- } else {
- s[s.length] = encodeURIComponentAsAngularJS(k, true);
- }
- };
- 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('&');
- }
|