mind-map/web/src/pages/Edit/components/SidebarTrigger.vue
2025-03-03 16:39:50 +08:00

211 lines
4.1 KiB
Vue

<template>
<div
class="sidebarTriggerContainer "
@click.stop
:class="{ hasActive: show && activeSidebar, show: show, isDark: isDark }"
:style="{ maxHeight: maxHeight + 'px' }"
>
<div class="toggleShowBtn" :class="{ hide: !show }" @click="show = !show">
<span class="iconfont iconjiantouyou"></span>
</div>
<div class="trigger customScrollbar">
<div
class="triggerItem"
v-for="item in triggerList"
:key="item.value"
:class="{ active: activeSidebar === item.value }"
@click="trigger(item)"
>
<div class="triggerIcon iconfont" :class="[item.icon]"></div>
<div class="triggerName">{{ item.name }}</div>
</div>
</div>
</div>
</template>
<script>
import { mapState, mapMutations } from 'vuex'
import { sidebarTriggerList } from '@/config'
/**
* @Author: 王林
* @Date: 2021-06-24 22:54:25
* @Desc: 侧边栏触发器
*/
export default {
name: 'SidebarTrigger',
data() {
return {
show: true,
maxHeight: 0
}
},
computed: {
...mapState({
isDark: state => state.localConfig.isDark,
activeSidebar: state => state.activeSidebar,
isReadonly: state => state.isReadonly,
enableAi: state => state.localConfig.enableAi
}),
triggerList() {
let list = sidebarTriggerList[this.$i18n.locale] || sidebarTriggerList.zh
if (this.isReadonly) {
list = list.filter(item => {
return ['outline', 'shortcutKey', 'ai'].includes(item.value)
})
}
if (!this.enableAi) {
list = list.filter(item => {
return item.value !== 'ai'
})
}
return list
}
},
watch: {
isReadonly(val) {
if (val) {
this.setActiveSidebar(null)
}
}
},
created() {
window.addEventListener('resize', this.onResize)
this.updateSize()
},
beforeDestroy() {
window.removeEventListener('resize', this.onResize)
},
methods: {
...mapMutations(['setActiveSidebar']),
trigger(item) {
this.setActiveSidebar(item.value)
},
onResize() {
this.updateSize()
},
updateSize() {
const topMargin = 110
const bottomMargin = 80
this.maxHeight = window.innerHeight - topMargin - bottomMargin
}
}
}
</script>
<style lang="less" scoped>
.sidebarTriggerContainer {
position: fixed;
top: 110px;
bottom: 80px;
right: -60px;
transition: all 0.3s;
display: flex;
flex-direction: column;
justify-content: center;
&.isDark {
.trigger {
background-color: #262a2e;
.triggerItem {
color: hsla(0, 0%, 100%, 0.6);
&:hover {
background-color: hsla(0, 0%, 100%, 0.05);
}
}
}
}
&.show {
right: 0;
}
&.hasActive {
right: 305px;
}
.toggleShowBtn {
position: absolute;
left: -6px;
width: 35px;
height: 60px;
background: #409eff;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
transition: left 0.1s linear;
z-index: 0;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
display: flex;
align-items: center;
padding-left: 4px;
&.hide {
left: -8px;
span {
transform: rotateZ(180deg);
}
}
&:hover {
left: -18px;
}
span {
color: #fff;
transition: all 0.1s;
}
}
.trigger {
position: relative;
width: 60px;
border-color: #eee;
background-color: #fff;
box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
border-radius: 6px;
max-height: 100%;
overflow-y: auto;
overflow-x: hidden;
.triggerItem {
height: 60px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
color: #464646;
user-select: none;
white-space: nowrap;
&:hover {
background-color: #ededed;
}
&.active {
color: #409eff;
font-weight: bold;
}
.triggerIcon {
font-size: 18px;
margin-bottom: 5px;
}
.triggerName {
font-size: 13px;
}
}
}
}
</style>