ai-manus/chat-client/library/components/VabSideBar/index.vue

210 lines
5.0 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script lang="ts" setup>
import { useRoutesStore } from '@/store/modules/routes'
import { useSettingsStore } from '@/store/modules/settings'
import variables from '@vab/styles/variables/variables.module.scss'
import { defaultOpeneds, uniqueOpened } from '@/config'
const props = defineProps({
layout: {
type: String,
default: 'vertical',
},
})
const settingsStore = useSettingsStore()
const { collapse, hasMenu } = storeToRefs(settingsStore)
const routesStore = useRoutesStore()
const { updatehasMenu } = settingsStore
const { getRoutes: routes, getActiveMenu: activeMenu, getPartialRoutes: partialRoutes } = storeToRefs(routesStore)
const handleRoutes = computed(() => {
const _route =
props.layout === 'comprehensive' || props.layout === 'hv'
? partialRoutes.value
: routes.value.flatMap((route: any) => (route.meta.levelHidden && route.children ? [...route.children] : route))
if (props.layout === 'hv' && _route.length <= 1 && _route[0]?.meta.hidden) {
console.log(1)
updatehasMenu(false)
} else {
updatehasMenu(true)
}
return _route
})
</script>
<template>
<el-scrollbar
class="vab-side-bar"
:class="{ 'is-collapse': collapse, 'side-bar-common': layout === 'common', 'side-top': layout === 'hv', 'is-hasMenu': !hasMenu }"
>
<vab-logo v-if="layout === 'vertical' || layout === 'comprehensive' || layout === 'float'" />
<el-menu
:active-text-color="variables['menu-color-active']"
:background-color="variables['menu-background']"
:collapse="collapse"
:collapse-transition="false"
:default-active="activeMenu.data"
:default-openeds="defaultOpeneds"
menu-trigger="click"
mode="vertical"
:text-color="variables['menu-color']"
:unique-opened="uniqueOpened"
>
<template v-for="(item, index) in handleRoutes" :key="index + item.name">
<vab-menu v-if="!item.meta.hidden" :item="item" />
</template>
</el-menu>
</el-scrollbar>
</template>
<style lang="scss" scoped>
@mixin active {
&:hover {
color: var(--el-color-white);
background-color: $base-menu-active;
}
&.is-active {
color: var(--el-color-white);
background-color: $base-menu-active;
}
}
.vab-side-bar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: $base-z-index + 1;
width: var(--el-left-menu-width);
height: 100vh;
overflow: hidden;
background: $base-menu-background;
box-shadow: $base-box-shadow;
transition: $base-transition;
&.side-bar-common {
top: $base-header-height;
height: calc(100vh - #{$base-header-height});
}
&.is-collapse {
width: $base-left-menu-width-min;
border-right: 0;
:deep() {
.el-menu--collapse.el-menu {
> .el-menu-item,
> .el-sub-menu {
text-align: center;
.el-tag {
display: none;
}
}
}
.el-menu-item,
.el-sub-menu {
text-align: left;
}
.el-menu--collapse {
border-right: 0;
.el-sub-menu__icon-arrow {
right: 10px;
margin-top: -3px;
}
}
}
}
&.is-hasMenu {
width: 0px;
}
:deep() {
.el-scrollbar__wrap {
overflow-x: hidden;
}
.el-menu-item,
.el-sub-menu__title {
height: $base-menu-item-height;
overflow: hidden;
line-height: $base-menu-item-height;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
i {
color: inherit;
}
}
.el-menu-item {
@include active;
}
}
}
.side-top {
top: $base-logo-height;
}
</style>
<!--由于element-plus
bug使用teleported=false会导致多级路由无法显示故所有菜单必须生成至body下样式必须放到body下-->
<style lang="scss">
@mixin menuActiveHover {
&:hover,
&.is-active {
i {
color: var(--el-color-white);
}
color: var(--el-color-white);
background: var(--el-color-primary);
.el-sub-menu__title {
i {
color: var(--el-color-white);
}
color: var(--el-color-white);
background: var(--el-color-primary);
}
}
}
.el-menu {
border-right: 0;
}
.el-popper {
.el-menu--vertical {
.el-menu-item,
.el-sub-menu {
height: $base-menu-item-height;
line-height: $base-menu-item-height;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
@include menuActiveHover;
i {
color: inherit;
}
.el-sub-menu__title {
height: $base-menu-item-height;
line-height: $base-menu-item-height;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: middle;
@include menuActiveHover;
}
}
}
}
</style>