mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
b1575524aa
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
/*
|
|
Copyright 2018, 2020 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import * as 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: Location) {
|
|
// if we have a fragment, it will start with '#', which we need to drop.
|
|
// (if we don't, this will return '').
|
|
const 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.
|
|
const hashparts = fragment.split('?');
|
|
|
|
const result = {
|
|
location: decodeURIComponent(hashparts[0]),
|
|
params: <qs.ParsedUrlQuery>{},
|
|
};
|
|
|
|
if (hashparts.length > 1) {
|
|
result.params = qs.parse(hashparts[1]);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export function parseQs(location: Location) {
|
|
return qs.parse(location.search.substring(1));
|
|
}
|