refactor: ♻️ layout 布局代码重构优化,精简重复的css代码

This commit is contained in:
ray
2025-02-20 18:41:47 +08:00
parent a076e2eaa5
commit 60a4d28162

View File

@@ -1,44 +1,41 @@
<template> <template>
<div class="wh-full" :class="classObj"> <div class="layout" :class="layoutClass">
<!-- 遮罩层 --> <!-- 移动端遮罩层 -->
<div <div v-if="isMobile && isSidebarOpen" class="layout__overlay" @click="handleCloseSidebar" />
v-if="isMobile && isOpenSidebar"
class="wh-full fixed-lt z-999 bg-black bg-opacity-30"
@click="handleOutsideClick"
/>
<!-- 公用侧边栏 --> <!-- 侧边栏 -->
<Sidebar class="sidebar-container" /> <Sidebar class="layout__sidebar" />
<!-- 混合布局 --> <!-- 混合布局 -->
<div v-if="layout === LayoutEnum.MIX" class="mix-container"> <div v-if="layout === LayoutEnum.MIX" class="layout__container">
<div class="mix-container-sidebar"> <!-- 左侧菜单栏 -->
<div class="layout__sidebar--left">
<el-scrollbar> <el-scrollbar>
<SidebarMenu :data="mixedLayoutLeftRoutes" :base-path="activeTopMenuPath" /> <SidebarMenu :data="mixedLayoutLeftRoutes" :base-path="activeTopMenuPath" />
</el-scrollbar> </el-scrollbar>
<div class="sidebar-toggle"> <div class="layout__sidebar-toggle">
<hamburger :is-active="appStore.sidebar.opened" @toggle-click="toggleSidebar" /> <hamburger :is-active="appStore.sidebar.opened" @toggle-click="handleToggleSidebar" />
</div> </div>
</div> </div>
<!-- 主内容区域 -->
<div :class="{ hasTagsView: isShowTagsView }" class="main-container"> <div :class="{ hasTagsView: isShowTagsView }" class="layout__main">
<TagsView v-if="isShowTagsView" /> <TagsView v-if="isShowTagsView" />
<AppMain /> <AppMain />
<Settings v-if="defaultSettings.showSettings" /> <Settings v-if="defaultSettings.showSettings" />
<!-- 返回顶部 --> <!-- 返回顶部按钮 -->
<el-backtop target=".app-main"> <el-backtop target=".app-main">
<div class="i-svg:backtop w-6 h-6" /> <div class="i-svg:backtop w-6 h-6" />
</el-backtop> </el-backtop>
</div> </div>
</div> </div>
<!-- 左侧顶部布局 --> <!-- 左侧顶部布局的主内容区 -->
<div v-else :class="{ hasTagsView: isShowTagsView }" class="main-container"> <div v-else :class="{ hasTagsView: isShowTagsView }" class="layout__main">
<NavBar v-if="layout === LayoutEnum.LEFT" /> <NavBar v-if="layout === LayoutEnum.LEFT" />
<TagsView v-if="isShowTagsView" /> <TagsView v-if="isShowTagsView" />
<AppMain /> <AppMain />
<Settings v-if="defaultSettings.showSettings" /> <Settings v-if="defaultSettings.showSettings" />
<!-- 返回顶部 --> <!-- 返回顶部按钮 -->
<el-backtop target=".app-main"> <el-backtop target=".app-main">
<div class="i-svg:backtop w-6 h-6" /> <div class="i-svg:backtop w-6 h-6" />
</el-backtop> </el-backtop>
@@ -47,11 +44,17 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
// 状态管理
import { useAppStore, useSettingsStore, usePermissionStore } from "@/store"; import { useAppStore, useSettingsStore, usePermissionStore } from "@/store";
// 配置
import defaultSettings from "@/settings"; import defaultSettings from "@/settings";
// 枚举
import { DeviceEnum } from "@/enums/DeviceEnum"; import { DeviceEnum } from "@/enums/DeviceEnum";
import { LayoutEnum } from "@/enums/LayoutEnum"; import { LayoutEnum } from "@/enums/LayoutEnum";
// 组件
import NavBar from "./components/NavBar/index.vue"; import NavBar from "./components/NavBar/index.vue";
const appStore = useAppStore(); const appStore = useAppStore();
@@ -59,59 +62,83 @@ const settingsStore = useSettingsStore();
const permissionStore = usePermissionStore(); const permissionStore = usePermissionStore();
const width = useWindowSize().width; const width = useWindowSize().width;
const WIDTH_DESKTOP = 992; // 响应式布局容器固定宽度 大屏(>=1200px 中屏(>=992px 小屏(>=768px // 常量
const isMobile = computed(() => appStore.device === DeviceEnum.MOBILE); const WIDTH_DESKTOP = 992; // 响应式布局容器固定宽度(大屏 >=1200px中屏 >=992px小屏 >=768px
const isOpenSidebar = computed(() => appStore.sidebar.opened);
const isShowTagsView = computed(() => settingsStore.tagsView); // 是否显示tagsView
const layout = computed(() => settingsStore.layout); // 布局模式 left top mix
const activeTopMenuPath = computed(() => appStore.activeTopMenuPath); // 顶部菜单激活path
const mixedLayoutLeftRoutes = computed(() => permissionStore.mixedLayoutLeftRoutes); // 混合布局左侧菜单
// 计算属性
const isMobile = computed(() => appStore.device === DeviceEnum.MOBILE); // 是否为移动设备
const isSidebarOpen = computed(() => appStore.sidebar.opened); // 侧边栏是否展开
const isShowTagsView = computed(() => settingsStore.tagsView); // 是否显示标签视图
const layout = computed(() => settingsStore.layout); // 当前布局模式left、top、mix
const activeTopMenuPath = computed(() => appStore.activeTopMenuPath); // 顶部菜单激活路径
const mixedLayoutLeftRoutes = computed(() => permissionStore.mixedLayoutLeftRoutes); // 混合布局左侧菜单路由
// 监听顶部菜单激活路径变化,更新混合布局左侧菜单路由
watch( watch(
() => activeTopMenuPath.value, () => activeTopMenuPath.value,
(newVal: string) => { (newVal: string) => {
permissionStore.setMixedLayoutLeftRoutes(newVal); permissionStore.setMixedLayoutLeftRoutes(newVal);
}, },
{ { deep: true, immediate: true }
deep: true,
immediate: true,
}
); );
const classObj = computed(() => ({ // 监听窗口宽度变化,调整设备类型和侧边栏状态
hideSidebar: !appStore.sidebar.opened,
openSidebar: appStore.sidebar.opened,
mobile: appStore.device === DeviceEnum.MOBILE,
[`layout-${settingsStore.layout}`]: true,
}));
watchEffect(() => { watchEffect(() => {
appStore.toggleDevice(width.value < WIDTH_DESKTOP ? DeviceEnum.MOBILE : DeviceEnum.DESKTOP); const isDesktop = width.value >= WIDTH_DESKTOP;
if (width.value >= WIDTH_DESKTOP) { appStore.toggleDevice(isDesktop ? DeviceEnum.DESKTOP : DeviceEnum.MOBILE);
if (isDesktop) {
appStore.openSideBar(); appStore.openSideBar();
} else { } else {
appStore.closeSideBar(); appStore.closeSideBar();
} }
}); });
function handleOutsideClick() { // 监听路由变化,如果是移动设备且侧边栏展开,则关闭侧边栏
appStore.closeSideBar();
}
function toggleSidebar() {
appStore.toggleSidebar();
}
const route = useRoute(); const route = useRoute();
watch(route, () => { watch(route, () => {
if (isMobile.value && isOpenSidebar.value) { if (isMobile.value && isSidebarOpen.value) {
appStore.closeSideBar(); appStore.closeSideBar();
} }
}); });
</script>
// 计算属性:布局样式
const layoutClass = computed(() => ({
hideSidebar: !appStore.sidebar.opened,
openSidebar: appStore.sidebar.opened,
mobile: appStore.device === DeviceEnum.MOBILE,
[`layout-${settingsStore.layout}`]: true,
}));
/**
* 处理遮罩层点击事件,关闭侧边栏
*/
function handleCloseSidebar() {
appStore.closeSideBar();
}
/**
* 处理切换侧边栏的展开/收起状态
*/
function handleToggleSidebar() {
appStore.toggleSidebar();
}
</script>
<style lang="scss" scoped> <style lang="scss" scoped>
.sidebar-container { .layout {
width: 100%;
height: 100%;
&__overlay {
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
&__sidebar {
position: fixed; position: fixed;
top: 0; top: 0;
bottom: 0; bottom: 0;
@@ -126,7 +153,7 @@ watch(route, () => {
} }
} }
.main-container { &__main {
position: relative; position: relative;
height: 100%; height: 100%;
margin-left: $sidebar-width; margin-left: $sidebar-width;
@@ -140,12 +167,10 @@ watch(route, () => {
transition: width 0.28s; transition: width 0.28s;
} }
} }
}
.layout-top { // 占位符选择器
.sidebar-container { %layout__sidebar--horizontal {
position: sticky;
z-index: 999;
display: flex;
width: 100% !important; width: 100% !important;
height: $navbar-height; height: $navbar-height;
@@ -160,53 +185,38 @@ watch(route, () => {
height: $navbar-height; height: $navbar-height;
line-height: $navbar-height; line-height: $navbar-height;
} }
:deep(.el-menu--collapse) {
width: 100%;
}
} }
.main-container { .layout-top {
.layout__sidebar {
position: sticky;
display: flex;
@extend %layout__sidebar--horizontal;
}
.layout__main {
height: calc(100vh - $navbar-height); height: calc(100vh - $navbar-height);
margin-left: 0; margin-left: 0;
} }
} }
.layout-mix { .layout-mix {
.sidebar-container { .layout__sidebar {
width: 100% !important; @extend %layout__sidebar--horizontal;
height: $navbar-height;
:deep(.el-scrollbar) {
flex: 1;
height: $navbar-height;
} }
:deep(.el-menu-item), .layout__container {
:deep(.el-sub-menu__title),
:deep(.el-menu--horizontal) {
height: $navbar-height;
line-height: $navbar-height;
}
:deep(.el-menu--horizontal.el-menu) {
border: none;
}
}
.mix-container {
display: flex; display: flex;
height: 100%; height: 100%;
padding-top: $navbar-height; padding-top: $navbar-height;
.mix-container-sidebar { .layout__sidebar--left {
position: relative; position: relative;
width: $sidebar-width; width: $sidebar-width;
height: 100%; height: 100%;
background-color: var(--menu-background); background-color: var(--menu-background);
:deep(.el-scrollbar) { :deep(.el-scrollbar) {
// 50px 是底部收缩按钮的高度
height: calc(100vh - $navbar-height - 50px); height: calc(100vh - $navbar-height - 50px);
} }
@@ -215,7 +225,7 @@ watch(route, () => {
border: none; border: none;
} }
.sidebar-toggle { .layout__sidebar-toggle {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
display: flex; display: flex;
@@ -224,19 +234,10 @@ watch(route, () => {
width: 100%; width: 100%;
height: 50px; height: 50px;
line-height: 50px; line-height: 50px;
box-shadow: 0 0 6px -2px var(--el-color-primary);
div:hover {
background-color: var(--menu-background);
}
:deep(svg) {
color: var(--el-color-primary) !important;
}
} }
} }
.main-container { .layout__main {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
margin-left: 0; margin-left: 0;
@@ -246,24 +247,24 @@ watch(route, () => {
.hideSidebar { .hideSidebar {
&.layout-left { &.layout-left {
.main-container { .layout__main {
margin-left: $sidebar-width-collapsed; margin-left: $sidebar-width-collapsed;
} }
} }
&.layout-top { &.layout-top {
.main-container { .layout__main {
margin-left: 0; margin-left: 0;
} }
} }
&.layout-mix { &.layout-mix {
.sidebar-container { .layout__sidebar {
width: 100% !important; width: 100% !important;
} }
.mix-container { .layout__container {
&-sidebar { .layout__sidebar--left {
width: $sidebar-width-collapsed; width: $sidebar-width-collapsed;
} }
} }
@@ -271,22 +272,22 @@ watch(route, () => {
} }
.layout-left.hideSidebar { .layout-left.hideSidebar {
.sidebar-container { .layout__sidebar {
width: $sidebar-width-collapsed !important; width: $sidebar-width-collapsed !important;
} }
.main-container { .layout__main {
margin-left: $sidebar-width-collapsed; margin-left: $sidebar-width-collapsed;
} }
&.mobile { &.mobile {
.sidebar-container { .layout__sidebar {
pointer-events: none; pointer-events: none;
transform: translate3d(-$sidebar-width, 0, 0); transform: translate3d(-$sidebar-width, 0, 0);
transition-duration: 0.3s; transition-duration: 0.3s;
} }
.main-container { .layout__main {
margin-left: 0; margin-left: 0;
} }
} }