The state service manages the application state registration and routing logic.
Add a new state to the app states list. When a the app init or when a URL changes the match method will check all states to find a state that matches the current URL.
Param | Type | Description |
---|---|---|
path | string | State URL path |
view | object | State view object |
Returns state object instance.
state.add('/contact-us', {
'template': '/templates/contact-us.html',
'repeat': false,
});
Change app current state. Use the replace param to control whether the new state should replace current state in History API or added as a new state. This mainly affects the behaviour of the browser back button.
Param | Type | Description |
---|---|---|
url | string | New state URL |
replace | boolean | Add new state or replace current one |
Returns state object instance.
state.change('/new-view', false);
The reload method reload current app state and re-render the ls-scope view component
Returns state object instance.
state.reload();
The match method iterate over all the states that has been registered to the state service with the add method and find the current state against the location object received in the method call.
Param | Type | Description |
---|---|---|
location | object | location object |
Returns matching state or null if no state was found.
state.change('/new-view', false);
Get current app state object.
Returns current app state object.
state.getCurrent();
Get previous app state object.
Returns previous app state object.
state.getPrevious();