2022-11-02 16:57:43 +08:00

131 lines
4.0 KiB
Vue

<script lang="ts" setup>
import { computed } from "vue"
import { useRouter } from "vue-router"
import { useAppStore } from "@/store/modules/app"
import { useSettingsStore } from "@/store/modules/settings"
import { useUserStore } from "@/store/modules/user"
import { UserFilled } from "@element-plus/icons-vue"
import Breadcrumb from "../Breadcrumb/index.vue"
import Hamburger from "../Hamburger/index.vue"
import ThemeSwitch from "@/components/ThemeSwitch/index.vue"
import Screenfull from "@/components/Screenfull/index.vue"
import Notify from "@/components/Notify/index.vue"
const router = useRouter()
const appStore = useAppStore()
const settingsStore = useSettingsStore()
const userStore = useUserStore()
const sidebar = computed(() => {
return appStore.sidebar
})
const showNotify = computed(() => {
return settingsStore.showNotify
})
const showThemeSwitch = computed(() => {
return settingsStore.showThemeSwitch
})
const showScreenfull = computed(() => {
return settingsStore.showScreenfull
})
const toggleSidebar = () => {
appStore.toggleSidebar(false)
}
const logout = () => {
userStore.logout()
router.push("/login")
}
</script>
<template>
<div class="navigation-bar">
<Hamburger :is-active="sidebar.opened" class="hamburger" @toggle-click="toggleSidebar" />
<Breadcrumb class="breadcrumb" />
<div class="right-menu">
<Screenfull v-if="showScreenfull" class="right-menu-item" />
<ThemeSwitch v-if="showThemeSwitch" class="right-menu-item" />
<Notify v-if="showNotify" class="right-menu-item" />
<el-dropdown class="right-menu-item">
<div class="right-menu-avatar">
<el-avatar :icon="UserFilled" :size="30" />
<span>{{ userStore.username }}</span>
</div>
<template #dropdown>
<el-dropdown-menu>
<a target="_blank" href="https://juejin.cn/post/7089377403717287972">
<el-dropdown-item>V3-Admin-Vite 中文文档</el-dropdown-item>
</a>
<a target="_blank" href="https://github.com/un-pany/v3-admin-vite">
<el-dropdown-item>V3-Admin-Vite GitHub</el-dropdown-item>
</a>
<a target="_blank" href="https://gitee.com/un-pany/v3-admin-vite">
<el-dropdown-item>V3-Admin-Vite Gitee</el-dropdown-item>
</a>
<a target="_blank" href="https://juejin.cn/post/6963876125428678693">
<el-dropdown-item divided>V3-Admin 中文文档</el-dropdown-item>
</a>
<a target="_blank" href="https://github.com/un-pany/v3-admin/blob/master/README.en.md">
<el-dropdown-item>V3-Admin English Docs</el-dropdown-item>
</a>
<a target="_blank" href="https://github.com/un-pany/v3-admin">
<el-dropdown-item>V3-Admin GitHub</el-dropdown-item>
</a>
<a target="_blank" href="https://gitee.com/un-pany/v3-admin">
<el-dropdown-item>V3-Admin Gitee</el-dropdown-item>
</a>
<el-dropdown-item divided @click="logout">
<span style="display: block">退出登录</span>
</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
</div>
</div>
</template>
<style lang="scss" scoped>
.navigation-bar {
height: var(--v3-navigationbar-height);
overflow: hidden;
background: #fff;
.hamburger {
display: flex;
align-items: center;
height: 100%;
float: left;
padding: 0 15px;
cursor: pointer;
}
.breadcrumb {
float: left;
// 参考 Bootstrap 的响应式设计 WIDTH = 576
@media screen and (max-width: 576px) {
display: none;
}
}
.right-menu {
float: right;
margin-right: 10px;
height: 100%;
display: flex;
align-items: center;
color: #606266;
.right-menu-item {
padding: 0 10px;
cursor: pointer;
.right-menu-avatar {
display: flex;
align-items: center;
.el-avatar {
margin-right: 10px;
}
span {
font-size: 16px;
}
}
}
}
}
</style>