Usage
Signature:
class CoreRouter< D extends Record<string, any> = Record<string, any>, P = CoreRouter.Parameters, ParentD extends Record<string, any> = Record<string, any>, ParentP = CoreRouter.Parameters>
Generic Parameters
Parameter Description D Detail object for the router state P Parameters object for the router state ParentD Detail object for the parent router state ParentP Parameters object for the parent router state
Typescript Import Format
//This class is exported directly as module. To import it
import CoreRouter= require("ojs/ojcorerouter");
For additional information visit:
Constructor
new CoreRouter(routes, options, parentRouter)
Parameters:
Name | Type | Argument | Description |
---|---|---|---|
routes |
Array.<CoreRouter.DetailedRouteConfig<D> | CoreRouter.RedirectedRouteConfig> | An array of routes that this router will recognize | |
options |
CoreRouter.CreateOptions.<P> |
<optional> |
The configuration options for this router. |
parentRouter |
CoreRouter.<ParentD, ParentP> |
<optional> |
A parent router, if creating a child router, or null/undefined if this is the root router. |
Fields
-
beforeStateChange :CoreRouter.Observable.<CoreRouter.VetoableState.<D, P>>
-
An observable which publishes state changes that are about to be set as the current state for the router. Subscribers can choose to listen to these publishes to guard against the router navigating out of the current state.
The published value given to the subscriber is a CoreRouter.VetoableState, and it can be used to prevent navigation out of the current state.
The value returned can be a boolean or Promiserouter.beforeStateChange.subscribe(function (args) { var state = args.state; var accept = args.accept; // If we don't want to leave, block navigation if (currentViewmodel.isDirty) { accept(Promise.reject('model is dirty')); } });
. -
childRouter :CoreRouter
-
The current child router for this router's active state, if one exists. Child routers can be created with CoreRouter#createChildRouter.
-
currentState :CoreRouter.Observable.<CoreRouter.ActionableState.<D, P>>
-
An observable which publishes the change to the current router state. Subscribers can listen to these publishes to react to the state change and perform other work, such as loading modules.
The published value given to the subscriber is a CoreRouter.ActionableState, and it can be used to report back to the router any issues or asynchronous activity that must be completed before the transition is finalized.
Subscribers listening to the change to perform asynchronous work, such as loading modules, can return the Promises from those operations through therouter.currentState.subscribe(function (args) { var state = args.state; var name = state.path; var complete = args.complete; // Load the module and return Promise to CoreRouter complete( Promise.all([ ModuleUtils.createView({ viewPath: 'views/' + name + '.html' }), ModuleUtils.createViewModel({ viewModelPath: 'viewModels/' + name }) ]) ); });
complete
callback. Any errors or Promise rejections returned will cause the transition to fail, and the rejection will be returned to the caller that attempted the transition. The returned value must be a Promise.
Methods
-
createChildRouter<ChildD extends Record<string, any> = Record<string, any>, ChildP = CoreRouter.Parameters>(routes, options) : {CoreRouter.<ChildD, ChildP>}
-
Create a child router from the current router. The child will be associated with the parent router's state, therefore, the parent must be in a current state (by calling CoreRouter#go or CoreRouter#sync). Calling this method from a parent without a current state will result in an error.
Only one child router will be active per parent router, and only in the parent router's current state. When the parent router changes states, and the previous state had a child router, it will be disposed of. This means that child routers should always be recreated each time the state is activated. This is typically done in the viewmodel's constructor/initialize functions.
Calling this method multiple times to create history-tracking child routers (while remaining on the same state) will result in an error. However, multiple non-history-tracking routers are allowed.
this.initialize = function (args) { this.childRouter = args.parentRouter.createChildRouter([ { path: 'child-path' } ]); }.bind(this);
Parameters:
Name Type Argument Description routes
Array.<CoreRouter.DetailedRouteConfig<ChildD> | CoreRouter.RedirectedRouteConfig> The routes to configure for the child router. options
CoreRouter.CreateOptions.<ChildP> <optional>
Options to pass to the creation of the router. Currently, the support options are: - history: "skip"
- See:
-
- CoreRouter.createRouter
Returns:
The child router instance for the current state
- Type
- CoreRouter.<ChildD, ChildP>
-
destroy
-
Destroys the router instance and removes the browser navigation listener (Back/Forward). Note that this function only applies to the root router instance; calling it on child routers will have no effect.
-
getUrlForNavigation(routes)
-
Create a full URL for the given routes. The parameters are the same as those to CoreRouter#go, and relative to the current router on which it's called.
Parameters:
Name Type Description routes
CoreRouter.Route<P>[] The route(s) from which to generate the URL - Since:
- 18.0.0
Returns:
The full URL to the given routes, i.e. "https://host[:port]/
..." -
go(routes) : {Promise<CoreRouter.CoreRouterState<D, P>>}
-
Navigate the router to a new path. Each argument to this function should be of type CoreRouter.Route.
Navigate to a page
Navigate to a page simply by supplying the path matching the route as an array of strings. This method, like CoreRouter#sync returns a Promiseto indicate if the transition was successful. You can chain the Promise to do post-processing if you choose. router.go({path: 'dashboard'}) .then(function () { this.navigated = true; }) // URL "/dashboard"
Navigate passing dynamic state parameters
Paths are any string within the array to go(), and parameters are any objects in the array. Parameters are always associated with the previous path segment (in this case, "dashboard"), and must have scalar values.
These parameters are made available via the CoreRouterState#params object.router.go({path: 'dashboard', params: {name: 'Dashboard'}}) // URL "/dashboard;name=Dashboard"
Navigate to a nested path
Nested paths are simply another string in the array passed to go(). When an entry in the array is a complex object, it's associated with the previous path entry.
In this example, formatted for clarity, "employee" is the path which will receive the parameters object containing "id" value.router.go( {path: 'employee', params: {id: 456}}, {path: 'contacts'} ]) // URL "/employee;id=456/contacts"
Catching navigation errors
Errors encountered during navigation are returned as Promise rejections, and can be caught with the catch() method.
The types of errors that can occur are:- No matching state
- State change veto'd
- Downstream state change listener errors
router.go({path: 'home'}) .catch(function (error) { console.error('Routing problem "' + error + '"'); });
Parameters:
Name Type Description routes
CoreRouter.Route<P>[] The route(s) to navigate. Pass multiple routes as separate arguments. Returns:
A Promise which will resolve with the state to which the router transitioned, if successful. If the transition fails, the Promise will be rejected.
- Type
- Promise<CoreRouter.CoreRouterState<D, P>>
-
reconfigure(routeConfigs, navigateTo?) : {Promise<CoreRouter.CoreRouterState<D, P>>}
-
Reconfigure the router with new routes. This method will first check that the current state can be exited by pre-publishing the new state to CoreRouter#beforeStateChange. If no listeners veto the navigation, then the router will reconfigure the routes and navigate to the new route. If any listener rejects the navigation, the rejection will be returned to the caller and the routes will remain as-is.
Parameters:
Name Type Description routeConfigs
Array.<(CoreRouter.DetailedRouteConfig|CoreRouter.RedirectedRouteConfig)> The new route configurations to apply. navigateTo?
CoreRouter.Route.<P> | CoreRouter.Route<P>[] The new routes to where the router (and its child routers) will navigate after reconfigure. If no routes are given, the current ones will be used. If the routes cannot be navigated to (i.e., they don't exist), the returned Promise will be rejected, the previous route configuration restored, and the router states will remain unchanged. Returns:
A Promise which, when resolved, indicates that the reconfiguration and navigation were successful. A Promise rejection indicates that the reconfigure and navigation failed, and the previous configuration will be restored. Depending on the failure, an error message may be returned describing the reason for the rejection.
- Type
- Promise<CoreRouter.CoreRouterState<D, P>>
-
sync : {Promise<CoreRouter.CoreRouterState<D, P>>}
-
Synchronize the router with the current URL. This method tells the router that it should set its internal state to match the values in the URL. Each router at each level sychronizes only the parts of the URL in which it's interested.
The top-most root router's "base" is defined by the
baseUrl
option passed to UrlPathAdapter, if it's used. If using UrlParamAdapter, the base is document.location.pathname.sync() is normally called immediately after the router is created so that the default state can be made current. Much like CoreRouter#go, sync() returns a Promise indicating if the synchronization was successful. A failure could mean that the router doesn't have a default state (see examples in CoreRouter) or the state being synchronized is invalid for the current router.
Synchronize the default state of a root router. This assumes that the baseUrl is
"/"
and the user is visiting the root of the application.var root = new CoreRouter([ { path: '', redirect: 'home' }, { path: 'home' } ]); root.sync() .catch(function (error) { console.error('CoreRouter.sync failed "' + error + '"'); })
Synchronize a child router. This assumes that the parent's current state is
browse
and the user is visitingbrowse/department
.var child = new CoreRouter( [ { path: 'department' } ], null, parentRouter ); child.sync() .then(function (success) { if (success) { console.log('Child router synchronized'); } }) .catch(function (error) { console.error('Child router.sync error "' + error + '"'); })
Returns:
A Promise which, when resolved, indicates that the sync was successful. A Promise rejection indicates that the sync failed. An error message may be returned describing the reason for the rejection.
- Type
- Promise<CoreRouter.CoreRouterState<D, P>>
Type Definitions
-
ActionableState<D extends Record<string, any> = Record<string, any>, P = CoreRouter.Parameters>
-
A wrapper object which contains a state and a
complete
callback that can be used by the subscriber to return a Promise for its asynchronous operations.Properties:
Name Type Description complete
function(Promise<any>): null The callback function the subscriber can use to return a Promise for its asynchronous activities. Invoking this callback is optional, but allows for the subscriber to delay the completion of the router state transition until its own asynchronous activities are done. state
CoreRouterState.<D, P> The CoreRouterState object -
CreateOptions<P = CoreRouter.Parameters>
-
An object describing configuration options during the creation of a root CoreRouter instance.
Properties:
Name Type Argument Description history
'skip' <optional>
Indicate if history tracking should be skipped. By default, the router will add a new history entry each time CoreRouter#go is called. Setting this option to 'skip' will disable that. urlAdapter
UrlAdapter.<P> <optional>
The adapter which handles reading and writing router states from/to the browser URL. If not specified, this will default to UrlPathAdapter. -
DetailedRouteConfig<D extends Record<string, any> = Record<string, any>>
-
A route config object configures a path and associated information to which a router can navigate, and is used to build the CoreRouterState during transitions. This route config type can specify a detail object which can be referenced in the state.
Properties:
Name Type Argument Description detail
D <optional>
An optional detail object which is passed to the route when it is navigated to. path
string | RegExp The path of the route. This may be an exact- match string, or a regular expression. -
Observable<T>
-
An Observable which can receive subscriptions for new Observers
Properties:
Name Type Description subscribe
function(function(T): void): CoreRouter.Observer Subscribe to the observable to get notifications when the value changse. The subscriber callback will receive the value as its single argument. Calling subscribe will return the subscriber object, which can be used to unsubscribe from the observable. -
Observer
-
An Observer is the result of subscribing to an Observable, and can be used to unsubscribe.
Properties:
Name Type Description unsubscribe
function(): void Unsubscribe the observable from further modifications to the value. -
Parameters
-
A type describing the parameters that can be passed to CoreRouter's go() method
Signature:
Record<string, bigint|boolean|number|string|undefined>
-
RedirectedRouteConfig
-
A RouteConfig object configures a path and associated information to which a router can navigate, and is used to build the CoreRouterState during transitions. This route config type can specify a redirect to another route.
Properties:
Name Type Argument Description path
string | RegExp The path of the route. This may be an exact- match string, or a regular expression. redirect
string <optional>
An optional name of a route to which paths matching this route will redirect. The redirected route's path must be of type string. -
VetoableState<D extends Record<string, any> = Record<string, any>, P = CoreRouter.Parameters>
-
A wrapper object which contains a state and an
accept
callback that can be used by the subscriber to return a Promise for its acceptance or rejection of the state transition.Properties:
Name Type Description accept
function(Promise<any>): null The callback function the subscriber can use to return a Promise indicating whether the state transition ought to be accepted (true) or rejected (false). A Promise rejection will veto the state transition; any Promise resolution (or not invoking the callback at all) will accept the transition. state
CoreRouterState.<D, P> The CoreRouterState object