45 lines
997 B
Vue
45 lines
997 B
Vue
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import { $t } from '@/locales';
|
|
|
|
defineOptions({ name: 'MenuToggler' });
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
interface Props {
|
|
/** Show collapsed icon */
|
|
collapsed?: boolean;
|
|
/** Arrow style icon */
|
|
arrowIcon?: boolean;
|
|
}
|
|
|
|
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 :tooltip-content="collapsed ? $t('icon.expand') : $t('icon.collapse')" tooltip-placement="bottom-start">
|
|
<SvgIcon :icon="icon" />
|
|
</ButtonIcon>
|
|
</template>
|
|
|
|
<style scoped></style>
|