lbry-desktop/ui/util/query-params.js

40 lines
1,018 B
JavaScript
Raw Normal View History

export function parseQueryParams(queryString) {
if (queryString === '') return {};
2017-11-24 15:31:05 +01:00
const parts = queryString
.split('?')
2017-11-24 15:31:05 +01:00
.pop()
.split('&')
.map(p => p.split('='));
2017-05-07 14:50:32 +02:00
const params = {};
parts.forEach(array => {
const [first, second] = array;
params[first] = second;
2017-06-06 23:19:12 +02:00
});
2017-05-07 14:50:32 +02:00
return params;
}
export function toQueryString(params) {
if (!params) return '';
2017-06-06 23:19:12 +02:00
const parts = [];
Object.keys(params).forEach(key => {
if (Object.prototype.hasOwnProperty.call(params, key) && params[key]) {
2017-12-13 22:36:30 +01:00
parts.push(`${key}=${params[key]}`);
}
});
return parts.join('&');
}
2019-07-17 22:49:06 +02:00
2019-07-19 16:52:42 +02:00
// https://stackoverflow.com/questions/5999118/how-can-i-add-or-update-a-query-string-parameter
2019-07-17 22:49:06 +02:00
export function updateQueryParam(uri, key, value) {
const re = new RegExp('([?&])' + key + '=.*?(&|$)', 'i');
2019-10-10 07:23:42 +02:00
const separator = uri.includes('?') ? '&' : '?';
2019-07-17 22:49:06 +02:00
if (uri.match(re)) {
return uri.replace(re, '$1' + key + '=' + value + '$2');
} else {
return uri + separator + key + '=' + value;
}
}