vue-breadcrumbs
Version:
Breadcrumbs for vue.js
94 lines (77 loc) • 2.72 kB
JavaScript
/*!
* vue-breadcrumbs v1.2.0
* (c) 2018 Sam Turrell
* Released under the MIT License.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.VueBreadcrumbs = factory();
}(this, function () { 'use strict';
function install(Vue, options) {
function getMatchedRoutes(routes) {
// Convert to an array if Vue 1.x
if (parseFloat(Vue.version) < 2) {
routes = Object.keys(routes).filter(function (key) {
return !isNaN(key);
}).map(function (key) {
return routes[key];
});
}
return routes;
}
// Add the $breadcrumbs property to the Vue instance
Object.defineProperty(Vue.prototype, '$breadcrumbs', {
get: function get() {
var crumbs = [];
var matched = getMatchedRoutes(this.$route.matched);
matched.forEach(function (route) {
// Backwards compatibility
var hasBreadcrumb = parseFloat(Vue.version) < 2 ? route.handler && route.handler.breadcrumb : route.meta && route.meta.breadcrumb;
if (hasBreadcrumb) {
crumbs.push(route);
}
});
return crumbs;
}
});
var defaults = {
registerComponent: true,
methods: {
// Return the correct prop data
linkProp: function linkProp(crumb) {
// If it's a named route, we'll base the route
// off of that instead
if (crumb.name || crumb.handler && crumb.handler.name) {
return {
name: crumb.name || crumb.handler.name,
params: this.$route.params
};
}
return {
path: crumb.handler && crumb.handler.fullPath ? crumb.handler.fullPath : crumb.path,
params: this.$route.params
};
}
},
filters: {
// Display the correct breadcrumb text
// depending on the Vue version
crumbText: function crumbText(crumb) {
return parseFloat(Vue.version) < 2 ? crumb.handler.breadcrumb : crumb.meta.breadcrumb;
}
},
template: '<nav class="breadcrumbs" v-if="$breadcrumbs.length"> ' + '<ul> ' + '<li v-for="crumb in $breadcrumbs"> ' + '<router-link :to="linkProp(crumb)">{{ crumb | crumbText }}</router-link> ' + '</li> ' + '</ul> ' + '</nav>'
};
options = Object.assign(defaults, options);
// Add a default breadcrumbs component
if (options.registerComponent) {
Vue.component('breadcrumbs', options);
}
}
var index = {
install: install,
version: '0.3.1'
};
return index;
}));