2020-10-09 13:26:01 +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.
|
|
|
|
*/
|
|
|
|
|
2020-10-09 23:13:11 +05:30
|
|
|
import {Navigation, Segment} from "./Navigation.js";
|
|
|
|
import {URLRouter} from "./URLRouter.js";
|
2020-10-09 13:26:01 +05:30
|
|
|
|
|
|
|
export function createNavigation() {
|
2020-10-12 21:19:06 +05:30
|
|
|
return new Navigation(allowsChild);
|
2020-10-09 13:26:01 +05:30
|
|
|
}
|
2020-10-09 23:13:11 +05:30
|
|
|
|
|
|
|
export function createRouter({history, navigation}) {
|
2020-10-12 21:19:06 +05:30
|
|
|
return new URLRouter({history, navigation, stringifyPath, parseUrlPath});
|
2020-10-09 23:13:11 +05:30
|
|
|
}
|
|
|
|
|
2020-10-12 21:19:06 +05:30
|
|
|
function allowsChild(parent, child) {
|
|
|
|
const {type} = child;
|
|
|
|
switch (parent?.type) {
|
|
|
|
case undefined:
|
|
|
|
// allowed root segments
|
|
|
|
return type === "login" || type === "session";
|
|
|
|
case "session":
|
|
|
|
return type === "room" || type === "rooms" || type === "settings";
|
|
|
|
case "rooms":
|
|
|
|
// downside of the approach: both of these will control which tile is selected
|
2021-06-04 13:15:55 +05:30
|
|
|
return type === "room" || type === "empty-grid-tile";
|
2020-10-28 22:12:18 +05:30
|
|
|
case "room":
|
2021-06-11 23:56:07 +05:30
|
|
|
return type === "lightbox" || type === "details" || type === "members";
|
2020-10-12 21:19:06 +05:30
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2020-10-09 23:13:11 +05:30
|
|
|
}
|
|
|
|
|
2021-04-21 19:03:08 +05:30
|
|
|
export function removeRoomFromPath(path, roomId) {
|
|
|
|
const rooms = path.get("rooms");
|
|
|
|
let roomIdGridIndex = -1;
|
|
|
|
// first delete from rooms segment
|
|
|
|
if (rooms) {
|
|
|
|
roomIdGridIndex = rooms.value.indexOf(roomId);
|
|
|
|
if (roomIdGridIndex !== -1) {
|
|
|
|
const idsWithoutRoom = rooms.value.slice();
|
|
|
|
idsWithoutRoom[roomIdGridIndex] = "";
|
|
|
|
path = path.replace(new Segment("rooms", idsWithoutRoom));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const room = path.get("room");
|
|
|
|
// then from room (which occurs with or without rooms)
|
|
|
|
if (room && room.value === roomId) {
|
|
|
|
if (roomIdGridIndex !== -1) {
|
|
|
|
path = path.with(new Segment("empty-grid-tile", roomIdGridIndex));
|
|
|
|
} else {
|
|
|
|
path = path.until("session");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2020-10-09 23:13:11 +05:30
|
|
|
function roomsSegmentWithRoom(rooms, roomId, path) {
|
2020-10-13 16:43:15 +05:30
|
|
|
if(!rooms.value.includes(roomId)) {
|
2020-10-09 23:13:11 +05:30
|
|
|
const emptyGridTile = path.get("empty-grid-tile");
|
2020-10-13 16:43:15 +05:30
|
|
|
const oldRoom = path.get("room");
|
|
|
|
let index = 0;
|
2020-10-09 23:13:11 +05:30
|
|
|
if (emptyGridTile) {
|
|
|
|
index = emptyGridTile.value;
|
2020-10-13 16:43:15 +05:30
|
|
|
} else if (oldRoom) {
|
|
|
|
index = rooms.value.indexOf(oldRoom.value);
|
2020-10-09 23:13:11 +05:30
|
|
|
}
|
2020-10-13 16:43:15 +05:30
|
|
|
const roomIds = rooms.value.slice();
|
|
|
|
roomIds[index] = roomId;
|
|
|
|
return new Segment("rooms", roomIds);
|
|
|
|
} else {
|
|
|
|
return rooms;
|
|
|
|
}
|
2020-10-09 23:13:11 +05:30
|
|
|
}
|
|
|
|
|
2021-05-18 17:22:13 +05:30
|
|
|
export function parseUrlPath(urlPath, currentNavPath, defaultSessionId) {
|
2020-10-12 21:19:06 +05:30
|
|
|
// substr(1) to take of initial /
|
|
|
|
const parts = urlPath.substr(1).split("/");
|
|
|
|
const iterator = parts[Symbol.iterator]();
|
|
|
|
const segments = [];
|
|
|
|
let next;
|
|
|
|
while (!(next = iterator.next()).done) {
|
|
|
|
const type = next.value;
|
|
|
|
if (type === "rooms") {
|
|
|
|
const roomsValue = iterator.next().value;
|
2020-10-13 16:43:35 +05:30
|
|
|
if (roomsValue === undefined) { break; }
|
2020-10-12 21:19:06 +05:30
|
|
|
const roomIds = roomsValue.split(",");
|
|
|
|
segments.push(new Segment(type, roomIds));
|
|
|
|
const selectedIndex = parseInt(iterator.next().value || "0", 10);
|
|
|
|
const roomId = roomIds[selectedIndex];
|
|
|
|
if (roomId) {
|
|
|
|
segments.push(new Segment("room", roomId));
|
|
|
|
} else {
|
|
|
|
segments.push(new Segment("empty-grid-tile", selectedIndex));
|
|
|
|
}
|
|
|
|
} else if (type === "open-room") {
|
|
|
|
const roomId = iterator.next().value;
|
|
|
|
if (!roomId) { break; }
|
|
|
|
const rooms = currentNavPath.get("rooms");
|
|
|
|
if (rooms) {
|
|
|
|
segments.push(roomsSegmentWithRoom(rooms, roomId, currentNavPath));
|
|
|
|
}
|
|
|
|
segments.push(new Segment("room", roomId));
|
2021-05-31 22:14:43 +05:30
|
|
|
if (currentNavPath.get("details")?.value) {
|
|
|
|
segments.push(new Segment("details"));
|
|
|
|
}
|
2021-05-18 17:22:13 +05:30
|
|
|
} else if (type === "last-session") {
|
|
|
|
let sessionSegment = currentNavPath.get("session");
|
2021-05-18 18:17:45 +05:30
|
|
|
if (typeof sessionSegment?.value !== "string" && defaultSessionId) {
|
2021-05-18 17:22:13 +05:30
|
|
|
sessionSegment = new Segment("session", defaultSessionId);
|
|
|
|
}
|
|
|
|
if (sessionSegment) {
|
|
|
|
segments.push(sessionSegment);
|
|
|
|
}
|
2020-10-09 23:13:11 +05:30
|
|
|
} else {
|
2020-10-12 21:19:06 +05:30
|
|
|
// might be undefined, which will be turned into true by Segment
|
|
|
|
const value = iterator.next().value;
|
|
|
|
segments.push(new Segment(type, value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return segments;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function stringifyPath(path) {
|
|
|
|
let urlPath = "";
|
|
|
|
let prevSegment;
|
|
|
|
for (const segment of path.segments) {
|
|
|
|
switch (segment.type) {
|
|
|
|
case "rooms":
|
|
|
|
urlPath += `/rooms/${segment.value.join(",")}`;
|
|
|
|
break;
|
|
|
|
case "empty-grid-tile":
|
|
|
|
urlPath += `/${segment.value}`;
|
|
|
|
break;
|
|
|
|
case "room":
|
|
|
|
if (prevSegment?.type === "rooms") {
|
|
|
|
const index = prevSegment.value.indexOf(segment.value);
|
|
|
|
urlPath += `/${index}`;
|
|
|
|
} else {
|
|
|
|
urlPath += `/${segment.type}/${segment.value}`;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
urlPath += `/${segment.type}`;
|
|
|
|
if (segment.value && segment.value !== true) {
|
|
|
|
urlPath += `/${segment.value}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prevSegment = segment;
|
|
|
|
}
|
|
|
|
return urlPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function tests() {
|
|
|
|
return {
|
|
|
|
"stringify grid url with focused empty tile": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("empty-grid-tile", 3)
|
|
|
|
]);
|
|
|
|
const urlPath = stringifyPath(path);
|
|
|
|
assert.equal(urlPath, "/session/1/rooms/a,b,c/3");
|
|
|
|
},
|
|
|
|
"stringify grid url with focused room": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const urlPath = stringifyPath(path);
|
|
|
|
assert.equal(urlPath, "/session/1/rooms/a,b,c/1");
|
|
|
|
},
|
|
|
|
"parse grid url path with focused empty tile": assert => {
|
|
|
|
const segments = parseUrlPath("/session/1/rooms/a,b,c/3");
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "b", "c"]);
|
|
|
|
assert.equal(segments[2].type, "empty-grid-tile");
|
|
|
|
assert.equal(segments[2].value, 3);
|
|
|
|
},
|
|
|
|
"parse grid url path with focused room": assert => {
|
|
|
|
const segments = parseUrlPath("/session/1/rooms/a,b,c/1");
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "b", "c"]);
|
|
|
|
assert.equal(segments[2].type, "room");
|
|
|
|
assert.equal(segments[2].value, "b");
|
|
|
|
},
|
2020-10-13 16:43:35 +05:30
|
|
|
"parse empty grid url": assert => {
|
|
|
|
const segments = parseUrlPath("/session/1/rooms/");
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, [""]);
|
|
|
|
assert.equal(segments[2].type, "empty-grid-tile");
|
|
|
|
assert.equal(segments[2].value, 0);
|
|
|
|
},
|
|
|
|
"parse empty grid url with focus": assert => {
|
|
|
|
const segments = parseUrlPath("/session/1/rooms//1");
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, [""]);
|
|
|
|
assert.equal(segments[2].type, "empty-grid-tile");
|
|
|
|
assert.equal(segments[2].value, 1);
|
|
|
|
},
|
2020-10-12 21:19:06 +05:30
|
|
|
"parse open-room action replacing the current focused room": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const segments = parseUrlPath("/session/1/open-room/d", path);
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "d", "c"]);
|
|
|
|
assert.equal(segments[2].type, "room");
|
|
|
|
assert.equal(segments[2].value, "d");
|
|
|
|
},
|
2020-10-13 16:43:47 +05:30
|
|
|
"parse open-room action changing focus to an existing room": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const segments = parseUrlPath("/session/1/open-room/a", path);
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "b", "c"]);
|
|
|
|
assert.equal(segments[2].type, "room");
|
|
|
|
assert.equal(segments[2].value, "a");
|
|
|
|
},
|
2021-06-04 16:01:33 +05:30
|
|
|
"parse open-room action changing focus to an existing room with details open": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b"),
|
|
|
|
new Segment("details", true)
|
|
|
|
]);
|
|
|
|
const segments = parseUrlPath("/session/1/open-room/a", path);
|
|
|
|
assert.equal(segments.length, 4);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "b", "c"]);
|
|
|
|
assert.equal(segments[2].type, "room");
|
|
|
|
assert.equal(segments[2].value, "a");
|
|
|
|
assert.equal(segments[3].type, "details");
|
|
|
|
assert.equal(segments[3].value, true);
|
|
|
|
},
|
2020-10-12 21:19:06 +05:30
|
|
|
"parse open-room action setting a room in an empty tile": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("empty-grid-tile", 4)
|
|
|
|
]);
|
|
|
|
const segments = parseUrlPath("/session/1/open-room/d", path);
|
|
|
|
assert.equal(segments.length, 3);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.equal(segments[0].value, "1");
|
|
|
|
assert.equal(segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(segments[1].value, ["a", "b", "c", , "d"]); //eslint-disable-line no-sparse-arrays
|
|
|
|
assert.equal(segments[2].type, "room");
|
|
|
|
assert.equal(segments[2].value, "d");
|
|
|
|
},
|
|
|
|
"parse session url path without id": assert => {
|
|
|
|
const segments = parseUrlPath("/session");
|
|
|
|
assert.equal(segments.length, 1);
|
|
|
|
assert.equal(segments[0].type, "session");
|
|
|
|
assert.strictEqual(segments[0].value, true);
|
2021-04-21 19:03:08 +05:30
|
|
|
},
|
|
|
|
"remove active room from grid path turns it into empty tile": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const newPath = removeRoomFromPath(path, "b");
|
|
|
|
assert.equal(newPath.segments.length, 3);
|
|
|
|
assert.equal(newPath.segments[0].type, "session");
|
|
|
|
assert.equal(newPath.segments[0].value, 1);
|
|
|
|
assert.equal(newPath.segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(newPath.segments[1].value, ["a", "", "c"]);
|
|
|
|
assert.equal(newPath.segments[2].type, "empty-grid-tile");
|
|
|
|
assert.equal(newPath.segments[2].value, 1);
|
|
|
|
},
|
|
|
|
"remove inactive room from grid path": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", "c"]),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const newPath = removeRoomFromPath(path, "a");
|
|
|
|
assert.equal(newPath.segments.length, 3);
|
|
|
|
assert.equal(newPath.segments[0].type, "session");
|
|
|
|
assert.equal(newPath.segments[0].value, 1);
|
|
|
|
assert.equal(newPath.segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(newPath.segments[1].value, ["", "b", "c"]);
|
|
|
|
assert.equal(newPath.segments[2].type, "room");
|
|
|
|
assert.equal(newPath.segments[2].value, "b");
|
|
|
|
},
|
|
|
|
"remove inactive room from grid path with empty tile": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("rooms", ["a", "b", ""]),
|
|
|
|
new Segment("empty-grid-tile", 3)
|
|
|
|
]);
|
|
|
|
const newPath = removeRoomFromPath(path, "b");
|
|
|
|
assert.equal(newPath.segments.length, 3);
|
|
|
|
assert.equal(newPath.segments[0].type, "session");
|
|
|
|
assert.equal(newPath.segments[0].value, 1);
|
|
|
|
assert.equal(newPath.segments[1].type, "rooms");
|
|
|
|
assert.deepEqual(newPath.segments[1].value, ["a", "", ""]);
|
|
|
|
assert.equal(newPath.segments[2].type, "empty-grid-tile");
|
|
|
|
assert.equal(newPath.segments[2].value, 3);
|
|
|
|
},
|
|
|
|
"remove active room": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const newPath = removeRoomFromPath(path, "b");
|
|
|
|
assert.equal(newPath.segments.length, 1);
|
|
|
|
assert.equal(newPath.segments[0].type, "session");
|
|
|
|
assert.equal(newPath.segments[0].value, 1);
|
|
|
|
},
|
|
|
|
"remove inactive room doesn't do anything": assert => {
|
|
|
|
const nav = new Navigation(allowsChild);
|
|
|
|
const path = nav.pathFrom([
|
|
|
|
new Segment("session", 1),
|
|
|
|
new Segment("room", "b")
|
|
|
|
]);
|
|
|
|
const newPath = removeRoomFromPath(path, "a");
|
|
|
|
assert.equal(newPath.segments.length, 2);
|
|
|
|
assert.equal(newPath.segments[0].type, "session");
|
|
|
|
assert.equal(newPath.segments[0].value, 1);
|
|
|
|
assert.equal(newPath.segments[1].type, "room");
|
|
|
|
assert.equal(newPath.segments[1].value, "b");
|
|
|
|
},
|
|
|
|
|
2020-10-09 23:13:11 +05:30
|
|
|
}
|
|
|
|
}
|