mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
31 lines
929 B
JavaScript
31 lines
929 B
JavaScript
import qs from 'querystring';
|
|
|
|
// We want to support some name / value pairs in the fragment
|
|
// so we're re-using query string like format
|
|
//
|
|
// returns {location, params}
|
|
export function parseQsFromFragment(location) {
|
|
// if we have a fragment, it will start with '#', which we need to drop.
|
|
// (if we don't, this will return '').
|
|
var fragment = location.hash.substring(1);
|
|
|
|
// our fragment may contain a query-param-like section. we need to fish
|
|
// this out *before* URI-decoding because the params may contain ? and &
|
|
// characters which are only URI-encoded once.
|
|
var hashparts = fragment.split('?');
|
|
|
|
var result = {
|
|
location: decodeURIComponent(hashparts[0]),
|
|
params: {}
|
|
};
|
|
|
|
if (hashparts.length > 1) {
|
|
result.params = qs.parse(hashparts[1]);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export function parseQs(location) {
|
|
return qs.parse(location.search.substring(1));
|
|
}
|