112 lines
2.6 KiB
Vue
112 lines
2.6 KiB
Vue
<script lang="ts" setup>
|
|
import { computed, onBeforeMount, watch } from 'vue';
|
|
import { useRouter } from 'vue-router';
|
|
|
|
import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
|
|
import { useWatermark } from '@vben/hooks';
|
|
import { BasicLayout, LockScreen, UserDropdown } from '@vben/layouts';
|
|
import { preferences } from '@vben/preferences';
|
|
import { useAccessStore, useTabbarStore, useUserStore } from '@vben/stores';
|
|
|
|
import { $t } from '#/locales';
|
|
import { useAuthStore } from '#/store';
|
|
import LoginForm from '#/views/_core/authentication/login.vue';
|
|
|
|
const { setMenuList } = useTabbarStore();
|
|
setMenuList([
|
|
'close',
|
|
'affix',
|
|
'maximize',
|
|
'reload',
|
|
'open-in-new-window',
|
|
'close-left',
|
|
'close-right',
|
|
'close-other',
|
|
'close-all',
|
|
]);
|
|
|
|
const userStore = useUserStore();
|
|
const authStore = useAuthStore();
|
|
const accessStore = useAccessStore();
|
|
const router = useRouter();
|
|
const { destroyWatermark, updateWatermark } = useWatermark();
|
|
|
|
const avatar = computed(() => {
|
|
return userStore.userInfo?.avatar || preferences.app.defaultAvatar;
|
|
});
|
|
|
|
const userDropdownMenus = computed(() => [
|
|
{
|
|
handler: handleOpenProfile,
|
|
icon: 'lucide:user',
|
|
text: $t('page.auth.profile'),
|
|
},
|
|
]);
|
|
|
|
async function handleOpenProfile() {
|
|
await router.push({ name: 'Profile' });
|
|
}
|
|
|
|
async function handleLogout() {
|
|
await authStore.logout(false);
|
|
}
|
|
|
|
function handleClickLogo() {}
|
|
|
|
watch(
|
|
() => ({
|
|
enable: preferences.app.watermark,
|
|
content: preferences.app.watermarkContent,
|
|
}),
|
|
async ({ enable, content }) => {
|
|
if (enable) {
|
|
await updateWatermark({
|
|
content:
|
|
content ||
|
|
`${userStore.userInfo?.username} - ${userStore.userInfo?.realName}`,
|
|
});
|
|
} else {
|
|
destroyWatermark();
|
|
}
|
|
},
|
|
{
|
|
immediate: true,
|
|
},
|
|
);
|
|
|
|
onBeforeMount(() => {
|
|
if (preferences.app.watermark) {
|
|
destroyWatermark();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<BasicLayout
|
|
@clear-preferences-and-logout="handleLogout"
|
|
@click-logo="handleClickLogo"
|
|
>
|
|
<template #user-dropdown>
|
|
<UserDropdown
|
|
:avatar
|
|
:description="userStore.userInfo?.username"
|
|
:menus="userDropdownMenus"
|
|
:text="userStore.userInfo?.realName"
|
|
trigger="both"
|
|
@logout="handleLogout"
|
|
/>
|
|
</template>
|
|
<template #extra>
|
|
<AuthenticationLoginExpiredModal
|
|
v-model:open="accessStore.loginExpired"
|
|
:avatar
|
|
>
|
|
<LoginForm />
|
|
</AuthenticationLoginExpiredModal>
|
|
</template>
|
|
<template #lock-screen>
|
|
<LockScreen :avatar @to-login="handleLogout" />
|
|
</template>
|
|
</BasicLayout>
|
|
</template>
|