Improved hash mode support and fixed some bugs. Cleaned up the code and improved the documentation.

This commit is contained in:
MattMo 2023-07-10 08:45:09 -07:00
parent 0ebd6d1ab4
commit 862b01968e

View File

@ -301,24 +301,35 @@ class Router {
if (refresh) {
if (Router.hashMode) {
//In hash mode the route can't start with / or #, we have to handle it here.
if (route.startsWith("/") || route.startsWith("#")) {
route = route.substr(1);
//In hash mode the route can't start with #
if (route.startsWith("#")) {
route = route.substring(1);
}
//If the route starts with a / set the hash to the route, otherwise append the route
if (route.startsWith("/")) {
window.location.hash = route.substring(1);
} else {
window.location.hash = window.location.hash.substring(0, window.location.hash.lastIndexOf("/") + 1) + route;
}
window.location.hash = route;
window.location.reload();
} else {
window.location.href = route;
}
} else {
if (Router.hashMode) {
//In hash mode the route can't start with / or #, we have to handle it here.
if (route.startsWith("/") || route.startsWith("#")) {
route = route.substr(1);
//In hash mode the route can't start with #
if (route.startsWith("#")) {
route = route.substring(1);
}
window.location.hash = route;
//If the route starts with a / set the hash to the route, otherwise append the route
if (route.startsWith("/")) {
window.location.hash = route.substring(1);
} else {
window.location.hash = window.location.hash.substring(0, window.location.hash.lastIndexOf("/") + 1) + route;
}
} else {
window.history.pushState(route, route, route);
}
@ -371,6 +382,7 @@ class Router {
//If hash mode is set and we have a hash location, get it and split it.
if (Router.hashMode && window.location.hash && window.location.hash.length > 0) {
//Skip the # symbol
var path = window.location.hash.substring(1);
//If the path contains ? then remove the query.