mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
9e84bc4387
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
74 lines
1.4 KiB
JavaScript
74 lines
1.4 KiB
JavaScript
|
|
export function getJoiner (url) {
|
|
url = url || '';
|
|
return url.indexOf('?') === -1 ? '?' : '&';
|
|
}
|
|
|
|
export function joinURL (url, qs) {
|
|
if (!qs) {
|
|
return url;
|
|
}
|
|
url = url || '';
|
|
return url + getJoiner(url) + qs;
|
|
}
|
|
|
|
export function build (param, strict = true) {
|
|
// Skip non-name ones in strict mode
|
|
if (strict && !param.name) {
|
|
return '';
|
|
}
|
|
|
|
if (!strict || param.value) {
|
|
return encodeURIComponent(param.name) + '=' + encodeURIComponent(param.value);
|
|
} else {
|
|
return encodeURIComponent(param.name);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param parameters
|
|
* @param strict allow empty names and values
|
|
* @returns {string}
|
|
*/
|
|
export function buildFromParams (parameters, strict = true) {
|
|
let items = [];
|
|
for (var i = 0; i < parameters.length; i++) {
|
|
let built = build(parameters[i], strict);
|
|
|
|
if (!built) {
|
|
continue;
|
|
}
|
|
|
|
items.push(built);
|
|
}
|
|
|
|
return items.join('&');
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param qs
|
|
* @param strict allow empty names and values
|
|
* @returns {Array}
|
|
*/
|
|
export function deconstructToParams (qs, strict = true) {
|
|
const stringPairs = qs.split('&');
|
|
const pairs = [];
|
|
|
|
for (let stringPair of stringPairs) {
|
|
const tmp = stringPair.split('=');
|
|
|
|
const name = decodeURIComponent(tmp[0] || '');
|
|
const value = decodeURIComponent(tmp[1] || '');
|
|
|
|
if (strict && !name) {
|
|
continue;
|
|
}
|
|
|
|
pairs.push({name, value});
|
|
}
|
|
|
|
return pairs;
|
|
}
|