mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-16 14:15:36 +07:00
Used first code snippets from ClearURLs v2: https://gitlab.com/ClearURLs/core/-/blob/master/src/utils/URLHashParams.ts
78 lines
2.1 KiB
JavaScript
78 lines
2.1 KiB
JavaScript
"use strict";
|
|
/*
|
|
* ClearURLs
|
|
* Copyright (c) 2017-2022 Kevin Röbert.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* Models a hash parameter of a given {@link URL}.
|
|
*/
|
|
class URLHashParams {
|
|
constructor(url) {
|
|
Object.defineProperty(this, "_params", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
this._params = new Multimap();
|
|
const hash = url.hash.slice(1);
|
|
const params = hash.split('&');
|
|
for (const p of params) {
|
|
const param = p.split('=');
|
|
if (!param[0])
|
|
continue;
|
|
const key = param[0];
|
|
let value = null;
|
|
if (param.length === 2 && param[1]) {
|
|
value = param[1];
|
|
}
|
|
this._params.put(key, value);
|
|
}
|
|
}
|
|
append(name, value = null) {
|
|
this._params.put(name, value);
|
|
}
|
|
delete(name) {
|
|
this._params.delete(name);
|
|
}
|
|
get(name) {
|
|
const [first] = this._params.get(name);
|
|
if (first) {
|
|
return first;
|
|
}
|
|
return null;
|
|
}
|
|
getAll(name) {
|
|
return this._params.get(name);
|
|
}
|
|
keys() {
|
|
return this._params.keys();
|
|
}
|
|
toString() {
|
|
const rtn = [];
|
|
this._params.forEach((key, value) => {
|
|
if (value) {
|
|
rtn.push(key + '=' + value);
|
|
}
|
|
else {
|
|
rtn.push(key);
|
|
}
|
|
});
|
|
return rtn.join('&');
|
|
}
|
|
}
|