A set of helpers for
vue-router
to working with google webcache and similar
- Install
- Compatibility caches
- Compatibility Vue
- Nuxt basic usage
- Nuxt advanced usage
- Vue-router usage
- Api
- How it work
- Examples
- URL
yarn add vue-router-webcache # npm i vue-router-webcache
From the box this package support https://webcache.googleusercontent.com/ and https://yandexwebcache.net caches for SPA/SSR. If you need more cache types, you always can reassign the cacheList
by add cache to any of helpers as second arg.
import { isCacheUrl, defaultCacheUrls } from 'vue-router-webcache';
const additionalCacheUrls = [
{
hostname: 'localhost',
pathname: '/search',
getRealUrl: (url) => url,
},
];
const isCache = isCacheUrl(window.location.href, [
...defaultCacheUrls,
...additionalCacheUrls,
]);
getRealUrl
- is optional prop, to extract realUrl
for SPA apps or for SSR without vuex-router-sync
.
Current package support Vue 2 (vue-router@3
) and Vue 3 (vue-router@4
).
- Install package
- Install
@nuxtjs/router
- Add
vue-router-webcache/nuxt
and@nuxtjs/router
tonuxt.config.js
- Add
router.js
to.gitignore
export default {
buildModules: [
'vue-router-webcache/nuxt',
['@nuxtjs/router', {
keepDefaultRouter: true,
}],
]
};
After first build, package create router.js
in root of project nuxt-community/router-module#107
If you change generated
router.js
, don't forget remove first two lines
By default vue-router-webcache/nuxt
use nuxt-vuex-router-sync
to get real url
Example in test/fixtures/nuxt
If you use custom router or you need more caches, you can customize options or use only helpers without module
export default {
buildModules: [
['vue-router-webcache/nuxt', {
cacheList: [{
hostname: '',
pathname: '',
getRealUrl: (url) => url,
}],
replacePush: true,
forceVuexRouterSync: false,
urlGetter: () => '',
}],
['@nuxtjs/router', {
keepDefaultRouter: true,
}],
]
};
cacheList
- list of caches, checks work through URL
replacePush
- default @nuxtjs/router
replace router.push
, you can disable it
urlGetter
- function that return fullPath
or current real url, serialized by Function.toString
, exec in browser
forceVuexRouterSync
- option to force add module nuxt-vuex-router-sync
and use urlGetter
for it. Can be enabled automatically if some of cache's in cacheList
hasn't getRealUrl
and you don't reassign urlGetter
Default vue-router-webcache/nuxt
config
Full example in test/fixtures/nuxt-custom
If you don't change urlGetter
, but add some cache without getRealUrl
, vue-router-webcache/nuxt
add nuxt-vuex-router-sync
module to save realUrl
in store.state
- Install package
- Create
Router
by helper
import createRouter from 'vue-router-webcache';
const router = createRouter(routerOptions);
- Check if
window.location.href
is url of some caches - Change mode of router to
abstract
- Get real url of cached page
- Nuxt, add
nuxt-vuex-router-sync
(or analogs) and getwindow.__NUXT__.state.route.fullPath
- Vue, get url from window.location.query for example
- Nuxt, add
- After
Router
created, set current route- Nuxt, mock first
router.resolve
call patchNuxtRouter - Call
router.replace(realUrl)
- Nuxt, mock first
Helper that create
vue-router
instance withrouterOptions
, but change mode toabstract
and callrouter.replace
if page in caches list
import createRouter from 'vue-router-webcache';
const router = createRouter(routerOptions, [
{
hostname: '',
pathname: '',
getRealUrl: (url) => url,
},
]);
routerOptions
- simple vue-router
options
additionalCacheList
- caches that will be added to the defaults (optional)
Array of default cache urls
import { defaultCacheUrls } from 'vue-router-webcache';
Get cache by fullUrl
import { getCache } from 'vue-router-webcache';
const cache = getCache(window.location.href, [
{
hostname: '',
pathname: '',
getRealUrl: (url) => url,
},
]);
fullUrl
- url of checked page
cacheList
- list of caches to check (optional)
Url checker
import { isCacheUrl } from 'vue-router-webcache';
const isCache = isCacheUrl(window.location.href, [
{
hostname: '',
pathname: '',
},
]);
fullUrl
- url of checked page
cacheList
- list of caches to check (optional)
Helper trying to get realUrl from cached url (use
getRealUrl
functions fromcacheList
)
import { getRealUrl } from 'vue-router-webcache';
const realUrl = getRealUrl(window.location.href, [
{
hostname: '',
pathname: '',
getRealUrl: (url) => url,
},
]);
fullUrl
- url of checked page
cacheList
- list of caches to check (optional)
Helper extract
fullPath
from realUrl and cutbase
(second argument)
import { getFullPath } from 'vue-router-webcache';
const fullPath = getFullPath('http://example.com/foo/bar', '/foo');
// /bar
fullUrl
- url for extracting
base
- base url of your app (default=/
)
Router patcher for nuxt, mock first
router.resolve
import { patchNuxtRouter } from 'vue-router-webcache';
...
patchNuxtRouter(router, realUrl);
router
- instance of vue-router
href
- real url of current page
All usage examples you can see in test/fixtures
Helpers use URL
constructor to parse url's. Mb you need install polyfill to use it.