This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Submenu.vue

50 lines
2.2 KiB
Vue

<template>
<section class="mt-4 mt-lg-0">
<div class="d-none d-md-inline-flex btn-group btn-block mb-2 w-100">
<router-link v-for="{name, icon, iconInverse, route, routesExtra, condition} in links" :key="name"
v-if="condition === undefined || condition === true"
:to="buildRoute(route)"
:class="['btn', isActiveRoute(route, routesExtra) ? 'btn-primary' : 'btn-outline-primary']">
<Icon :v="icon" :inverse="iconInverse === undefined ? false : (iconInverse || isActiveRoute(route))"/>
<T>{{name}}</T>
</router-link>
</div>
<div class="d-block d-md-none btn-group-vertical btn-block mb-2 w-100">
<router-link v-for="{name, icon, iconInverse, route, routesExtra, condition} in links" :key="name"
v-if="condition === undefined || condition === true"
:to="buildRoute(route)"
:class="['btn', isActiveRoute(route, routesExtra) ? 'btn-primary' : 'btn-outline-primary']">
<Icon :v="icon" :inverse="iconInverse === undefined ? false : (iconInverse || isActiveRoute(route))"/>
<T>{{name}}</T>
</router-link>
</div>
</section>
</template>
<script>
export default {
props: {
prefix: {'default': ''},
links: {required: true},
},
methods: {
buildRoute(route) {
return `${this.prefix}/${route}`;
},
isActiveRoute(route, routesExtra) {
if (routesExtra && this.$route.name && routesExtra.includes(this.$route.name.split(':')[0])) {
return true;
}
let current = decodeURIComponent(this.$route.fullPath).replace(/\/$/, '');
if (current.includes('#')) {
current = current.substring(0, current.indexOf('#'));
}
const expected = this.buildRoute(route).replace(/\/$/, '');
return current === expected || current.startsWith(expected + '/');
},
},
}
</script>