mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
60 lines
2.2 KiB
Vue
60 lines
2.2 KiB
Vue
<template>
|
|
<section v-if="visibleLinks.length" class="mt-4 mt-lg-0 d-print-none">
|
|
<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 } in visibleLinks"
|
|
:key="name"
|
|
: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-force d-md-none btn-group-vertical btn-block mb-2 w-100">
|
|
<router-link
|
|
v-for="{ name, icon, iconInverse, route, routesExtra } in visibleLinks"
|
|
:key="name"
|
|
: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 },
|
|
extraClass: { default: '' },
|
|
},
|
|
computed: {
|
|
visibleLinks() {
|
|
return this.links.filter((l) => l.condition === undefined || l.condition === 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>
|