Link interceptor for router5.
npm install router5-link-interceptor
npm install --save router5-link-interceptor
`API
`javascript
router.usePlugin(linkInterceptor(opts, [callback]));
`
Register a plugin to intercept all click events of links and call the Router5 navigate method. Query string of the link will be parsed into routeParams.###### Arguments
1.
opts (Object or Function): The opts argument of Router5 navigate method. If you pass a Function, it will be called with fn(routeName, routeParams).
2. [callback] (Function): The callback argument of Router5 navigate method.###### Start and stop
The plugin only intercepts links when your router instance is started.
Usage
#### Basic
`javascript
var linkInterceptor = require('router5-link-interceptor');
var router = getRouter5InstanceSomehow();function callback(err) {
if (err) console.error(err);
}
router.usePlugin(linkInterceptor({}, callback));
`#### With opts object
`javascript
var linkInterceptor = require('router5-link-interceptor');
var router = getRouter5InstanceSomehow();function callback(err) {
if (err) console.error(err);
}
router.usePlugin(linkInterceptor({reload: true}, callback));
`#### With opts function
`javascript
var linkInterceptor = require('router5-link-interceptor');
var router = getRouter5InstanceSomehow();function opts(routeName, routeParams) {
if (routeName === 'home') {
return {reload: true};
}
return {};
}
function callback(err) {
if (err) console.error(err);
}
router.usePlugin(linkInterceptor(opts, callback));
``- 3.0.0 - Make the link interceptor as a router5 plugin(d380fb2, #1).