48935e2168
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
61 lines
1.2 KiB
Vue
61 lines
1.2 KiB
Vue
<template>
|
|
<li
|
|
class="setting-menu-item"
|
|
:class="{
|
|
'cursor-pointer bg-mbz-yellow-alt-500 dark:bg-mbz-purple-500': isActive,
|
|
'bg-mbz-yellow-alt-100 hover:bg-mbz-yellow-alt-200 dark:bg-mbz-purple-300 dark:hover:bg-mbz-purple-400 dark:text-white':
|
|
!isActive,
|
|
}"
|
|
>
|
|
<router-link v-if="to" :to="to">
|
|
<span>{{ title }}</span>
|
|
</router-link>
|
|
<span v-else>{{ title }}</span>
|
|
</li>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
|
|
const props = defineProps<{
|
|
title?: string;
|
|
to: { name: string; params?: Record<string, any> };
|
|
}>();
|
|
|
|
const route = useRoute();
|
|
|
|
const isActive = computed((): boolean => {
|
|
if (props.to.name === route.name) {
|
|
if (props.to.params) {
|
|
return props.to.params.identityName === route.params.identityName;
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
li.setting-menu-item {
|
|
font-size: 1.05rem;
|
|
// background-color: #fff1de;
|
|
margin: auto;
|
|
|
|
span {
|
|
padding: 5px 15px;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
color: inherit;
|
|
}
|
|
|
|
&:hover,
|
|
&.active {
|
|
cursor: pointer;
|
|
// background-color: lighten(#fea72b, 10%);
|
|
}
|
|
}
|
|
</style>
|