You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.1 KiB

2 years ago
<template>
<div :class="getClass" :style="getDragBarStyle"></div>
</template>
<script lang="ts" setup name="DargBar">
import { computed, unref } from 'vue'
import { useDesign } from '@/hooks/web/useDesign'
import { useMenuSetting } from '@/hooks/setting/useMenuSetting'
const props = {
mobile: Boolean
}
const { getMiniWidthNumber, getCollapsed, getCanDrag } = useMenuSetting()
const { prefixCls } = useDesign('darg-bar')
const getDragBarStyle = computed(() => {
if (unref(getCollapsed)) {
return { left: `${unref(getMiniWidthNumber)}px` }
}
return {}
})
const getClass = computed(() => {
return [
prefixCls,
{
[`${prefixCls}--hide`]: !unref(getCanDrag) || props.mobile
}
]
})
</script>
<style lang="less" scoped>
@prefix-cls: ~'@{namespace}-darg-bar';
.@{prefix-cls} {
position: absolute;
top: 0;
right: -2px;
z-index: @side-drag-z-index;
width: 2px;
height: 100%;
cursor: col-resize;
border-top: none;
border-bottom: none;
&--hide {
display: none;
}
&:hover {
background-color: @primary-color;
box-shadow: 0 0 4px 0 rgb(28 36 56 / 15%);
}
}
</style>