ruoyi-plus-vben5/packages/business/layouts/src/widgets/preferences/blocks/layout/layout.vue

96 lines
2.3 KiB
Vue
Raw Normal View History

2024-05-19 21:20:42 +08:00
<script setup lang="ts">
2024-05-21 22:14:25 +08:00
import type { LayoutType } from '@vben/types';
2024-05-19 21:20:42 +08:00
2024-06-08 19:49:06 +08:00
import { type Component, computed } from 'vue';
2024-05-19 21:20:42 +08:00
2024-06-08 19:49:06 +08:00
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify';
import { $t } from '@vben-core/locales';
2024-06-08 19:49:06 +08:00
import { VbenTooltip } from '@vben-core/shadcn-ui';
2024-05-19 21:20:42 +08:00
import {
FullContent,
HeaderNav,
MixedNav,
2024-06-09 15:39:11 +08:00
SidebarMixedNav,
SidebarNav,
2024-05-19 21:20:42 +08:00
} from '../../icons';
interface PresetItem {
name: string;
tip: string;
type: LayoutType;
}
defineOptions({
name: 'PreferenceLayout',
});
2024-06-09 15:39:11 +08:00
const modelValue = defineModel<LayoutType>({ default: 'sidebar-nav' });
2024-05-19 21:20:42 +08:00
const components: Record<LayoutType, Component> = {
'full-content': FullContent,
'header-nav': HeaderNav,
'mixed-nav': MixedNav,
2024-06-09 15:39:11 +08:00
'sidebar-mixed-nav': SidebarMixedNav,
'sidebar-nav': SidebarNav,
2024-05-19 21:20:42 +08:00
};
const PRESET = computed((): PresetItem[] => [
{
2024-06-16 13:43:33 +08:00
name: $t('preferences.vertical'),
tip: $t('preferences.vertical-tip'),
2024-06-09 15:39:11 +08:00
type: 'sidebar-nav',
2024-05-19 21:20:42 +08:00
},
{
2024-06-16 13:43:33 +08:00
name: $t('preferences.two-column'),
tip: $t('preferences.two-column-tip'),
2024-06-09 15:39:11 +08:00
type: 'sidebar-mixed-nav',
2024-05-19 21:20:42 +08:00
},
{
2024-06-16 13:43:33 +08:00
name: $t('preferences.horizontal'),
tip: $t('preferences.vertical-tip'),
2024-05-19 21:20:42 +08:00
type: 'header-nav',
},
{
2024-06-16 13:43:33 +08:00
name: $t('preferences.mixed-menu'),
tip: $t('preferences.mixed-menu-tip'),
2024-05-19 21:20:42 +08:00
type: 'mixed-nav',
},
{
2024-06-16 13:43:33 +08:00
name: $t('preferences.full-content'),
tip: $t('preferences.full-content-tip'),
2024-05-19 21:20:42 +08:00
type: 'full-content',
},
]);
function activeClass(theme: string): string[] {
return theme === modelValue.value ? ['outline-box-active'] : [];
}
</script>
<template>
<div class="flex w-full flex-wrap gap-5">
<template v-for="theme in PRESET" :key="theme.name">
<div
class="flex w-[100px] cursor-pointer flex-col"
@click="modelValue = theme.type"
>
<div :class="activeClass(theme.type)" class="outline-box flex-center">
<component :is="components[theme.type]" />
</div>
<div
class="text-muted-foreground flex-center hover:text-foreground mt-2 text-center text-xs"
>
{{ theme.name }}
<VbenTooltip v-if="theme.tip" side="bottom">
<template #trigger>
<MdiQuestionMarkCircleOutline class="ml-1 cursor-help" />
</template>
{{ theme.tip }}
</VbenTooltip>
</div>
</div>
</template>
</div>
</template>