KawAnime/router/index.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

import Vue from 'vue'
import Router from 'vue-router'
// The meta data for your routes
const meta = require('./meta.js')
// Function to create routes
// Is default lazy but can be changed
function route (path, view) {
return {
path: path,
meta: meta[path],
component: resolve => import(`pages/${view}.vue`).then(resolve)
}
}
Vue.use(Router)
export function createRouter () {
const router = new Router({
base: __dirname,
mode: 'history',
scrollBehavior: () => ({ y: 0 }),
routes: [
route('/', 'index'),
route('/downloader', 'downloader'),
route('/seasons', 'seasons'),
route('/news', 'news'),
route('/localPage', 'localPage'),
route('/watchList', 'watchList'),
// Global redirect for 404
{ path: '*', redirect: '/' } // TODO: make a custom 404 page
]
})
// Send a pageview to Google Analytics
router.beforeEach((to, from, next) => {
if (typeof ga !== 'undefined') {
ga('set', 'page', to.path)
ga('send', 'pageview')
}
next()
})
return router
}