From 862b01968e9c6945dc6c6e2427ac592329f20d77 Mon Sep 17 00:00:00 2001 From: MattMo Date: Mon, 10 Jul 2023 08:45:09 -0700 Subject: [PATCH] Improved hash mode support and fixed some bugs. Cleaned up the code and improved the documentation. --- ignite-html-router.js | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/ignite-html-router.js b/ignite-html-router.js index 4918a42..5f02754 100644 --- a/ignite-html-router.js +++ b/ignite-html-router.js @@ -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.