mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 19:16:37 +08:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { $t } from '@/locales';
|
|
|
|
defineOptions({ name: 'MenuToggler' });
|
|
|
|
interface Props {
|
|
/** Show collapsed icon */
|
|
collapsed?: boolean;
|
|
/** Arrow style icon */
|
|
arrowIcon?: boolean;
|
|
zIndex?: number;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
arrowIcon: false,
|
|
zIndex: 98
|
|
});
|
|
|
|
type NumberBool = 0 | 1;
|
|
|
|
const icon = computed(() => {
|
|
const icons: Record<NumberBool, Record<NumberBool, string>> = {
|
|
0: {
|
|
0: 'line-md:menu-fold-left',
|
|
1: 'line-md:menu-fold-right'
|
|
},
|
|
1: {
|
|
0: 'ph-caret-double-left-bold',
|
|
1: 'ph-caret-double-right-bold'
|
|
}
|
|
};
|
|
|
|
const arrowIcon = Number(props.arrowIcon || false) as NumberBool;
|
|
|
|
const collapsed = Number(props.collapsed || false) as NumberBool;
|
|
|
|
return icons[arrowIcon][collapsed];
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ButtonIcon
|
|
:key="String(collapsed)"
|
|
:tooltip-content="collapsed ? $t('icon.expand') : $t('icon.collapse')"
|
|
tooltip-placement="bottom-start"
|
|
:z-index="zIndex"
|
|
>
|
|
<SvgIcon :icon="icon" />
|
|
</ButtonIcon>
|
|
</template>
|
|
|
|
<style scoped></style>
|