hydrogen-web/src/domain/navigation/URLRouter.js

109 lines
3.6 KiB
JavaScript
Raw Normal View History

2020-10-06 21:33:12 +05:30
/*
Copyright 2020 The Matrix.org Foundation C.I.C.
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.
*/
export class URLRouter {
2020-10-12 21:19:06 +05:30
constructor({history, navigation, parseUrlPath, stringifyPath}) {
this._history = history;
2020-10-06 21:33:12 +05:30
this._navigation = navigation;
2020-10-12 21:19:06 +05:30
this._parseUrlPath = parseUrlPath;
this._stringifyPath = stringifyPath;
this._subscription = null;
this._pathSubscription = null;
this._isApplyingUrl = false;
this._defaultSessionId = this._getLastSessionId();
}
_getLastSessionId() {
const urlPath = this._history.urlAsPath(this._history.getLastUrl());
const navPath = this._navigation.pathFrom(this._parseUrlPath(urlPath, this._navigation.path));
return navPath.get("session")?.value;
2020-10-06 21:33:12 +05:30
}
2020-10-09 13:26:01 +05:30
attach() {
this._subscription = this._history.subscribe(url => this._applyUrl(url));
// subscribe to path before applying initial url
// so redirects in _applyNavigationPath are reflected in url bar
this._pathSubscription = this._navigation.pathObservable.subscribe(path => this._applyNavigationPath(path));
this._applyUrl(this._history.get());
2020-10-07 13:10:51 +05:30
}
2020-10-12 21:19:06 +05:30
dispose() {
2020-10-06 21:33:12 +05:30
this._subscription = this._subscription();
this._pathSubscription = this._pathSubscription();
2020-10-06 21:33:12 +05:30
}
_applyNavigationPath(path) {
const url = this.urlForPath(path);
if (url !== this._history.get()) {
if (this._isApplyingUrl) {
// redirect
this._history.replaceUrlSilently(url);
} else {
this._history.pushUrlSilently(url);
}
}
}
_applyUrl(url) {
2020-10-12 21:19:06 +05:30
const urlPath = this._history.urlAsPath(url)
const navPath = this._navigation.pathFrom(this._parseUrlPath(urlPath, this._navigation.path, this._defaultSessionId));
// this will cause _applyNavigationPath to be called,
// so set a flag whether this request came from ourselves
// (in which case it is a redirect if the url does not match the current one)
this._isApplyingUrl = true;
2020-10-12 21:19:06 +05:30
this._navigation.applyPath(navPath);
this._isApplyingUrl = false;
2020-10-06 21:33:12 +05:30
}
pushUrl(url) {
this._history.pushUrl(url);
}
getLastUrl() {
return this._history.getLastUrl();
}
2020-10-12 21:19:06 +05:30
urlForSegments(segments) {
let path = this._navigation.path;
for (const segment of segments) {
path = path.with(segment);
if (!path) {
return;
}
2020-10-06 21:33:12 +05:30
}
2020-10-12 21:19:06 +05:30
return this.urlForPath(path);
}
urlForSegment(type, value) {
return this.urlForSegments([this._navigation.segment(type, value)]);
2020-10-06 21:33:12 +05:30
}
urlUntilSegment(type) {
return this.urlForPath(this._navigation.path.until(type));
}
2020-10-06 21:33:12 +05:30
urlForPath(path) {
return this._history.pathAsUrl(this._stringifyPath(path));
2020-10-12 21:19:06 +05:30
}
openRoomActionUrl(roomId) {
// not a segment to navigation knowns about, so append it manually
const urlPath = `${this._stringifyPath(this._navigation.path.until("session"))}/open-room/${roomId}`;
return this._history.pathAsUrl(urlPath);
2020-10-06 21:33:12 +05:30
}
}