I would like to use History.js to make a fully functional page content switching method i.e:
- when a user clicks on a link, a new state is pushed to window history
- when a state is changed (History.Adapter bind trigger) js takes the data parameter from the state and then show the screen based on the data parameter
Application is moduled (meaning that has a few urls, like "?action=admin", "?action=tasks", etc). Each module is a one screen application (without any page reloading) - that means each module has several screens, which are changing upon user clicking path.
I would like to achieve a full history and when user is inside one module only it works pretty good. Problems start when I go back (in the browser) and it changes the url. Here's how I tried to do it:
- data parameter in History.getState() always is an object that has 2 properties: action (the current page inside module) and module (the address of the module).
- on state change when current module is the same as the module in pushed state only action is used to show the correct screen
- on state change when current module is different from the module in pushed state the page makes window.location = new_module_address
Basically, such scenario should work:
- user starts with main module (action: null, module: "?") - that state is replaced before binding statechange
- user clicks administration module (a state with {action: null, module: "?action=admin"} is pushed into states stack
- page is reloaded and admin manager replaces the state action: null with default action, let it be {action: "ADMIN_MENU", module: "?action=admin"}.
- on state replace (it triggers statechange) menu is shown
- user clicks on user accounts button ({action: "ADMIN_USERLIST", module: "?action=admin"} is pushed)
- user clicks tasks button ({action: null, module: "?action=tasks"} is pushed)
- page switches to tasks module, tasks module replaces action with default action and proper screen is shown (let it be {action: "TASKS_TASKLIST", module: "?action=tasks"})
So, in my opinion after those operations the stack of history should look like this:
- { action: null, module: "?" }
- { action: "ADMIN_MENU", module: "?action=admin" }
- { action: "ADMIN_USERLIST", module: "?action=admin" }
- { action: "TASKS_TASKLIST", module: "?action=tasks" }
But when on the last state i try to do back in the browser i get initially into { action: null, module: "?action=admin" } (and that changes into action: "ADMIN_MENU" by default on admin module init) and when i push the backward button one more time i get into "ADMIN_USERLIST". Replace state works wrong? The state {action: null, module: "?action=admin"} should never be in the history stack, but it is there.
Is there something wrong with my understanding of how history works? Because the code is so simple (I log every pushState and replaceState, so even without having an option to debug the stack I think I see everything clearly).