129 lines
3.2 KiB
Vue
129 lines
3.2 KiB
Vue
<script lang="ts" setup>
|
|
import type { NotificationItem } from '@vben/layouts';
|
|
|
|
import { computed, ref, watch } from 'vue';
|
|
|
|
import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
|
|
import { useWatermark } from '@vben/hooks';
|
|
import {
|
|
BasicLayout,
|
|
LockScreen,
|
|
Notification,
|
|
UserDropdown,
|
|
} from '@vben/layouts';
|
|
import { preferences } from '@vben/preferences';
|
|
import { useAccessStore, useUserStore } from '@vben/stores';
|
|
|
|
import { useAuthStore } from '#/store';
|
|
import LoginForm from '#/views/_core/authentication/login.vue';
|
|
|
|
const notifications = ref<NotificationItem[]>([
|
|
{
|
|
avatar: 'https://avatar.vercel.sh/vercel.svg?text=VB',
|
|
date: '3小时前',
|
|
isRead: true,
|
|
message: '描述信息描述信息描述信息',
|
|
title: '收到了 14 份新周报',
|
|
},
|
|
{
|
|
avatar: 'https://avatar.vercel.sh/1',
|
|
date: '刚刚',
|
|
isRead: false,
|
|
message: '描述信息描述信息描述信息',
|
|
title: '朱偏右 回复了你',
|
|
},
|
|
{
|
|
avatar: 'https://avatar.vercel.sh/1',
|
|
date: '2024-01-01',
|
|
isRead: false,
|
|
message: '描述信息描述信息描述信息',
|
|
title: '曲丽丽 评论了你',
|
|
},
|
|
{
|
|
avatar: 'https://avatar.vercel.sh/satori',
|
|
date: '1天前',
|
|
isRead: false,
|
|
message: '描述信息描述信息描述信息',
|
|
title: '代办提醒',
|
|
},
|
|
]);
|
|
|
|
const userStore = useUserStore();
|
|
const authStore = useAuthStore();
|
|
const accessStore = useAccessStore();
|
|
const { destroyWatermark, updateWatermark } = useWatermark();
|
|
const showDot = computed(() =>
|
|
notifications.value.some((item) => !item.isRead),
|
|
);
|
|
|
|
const menus = computed(() => []);
|
|
|
|
const avatar = computed(() => {
|
|
return userStore.userInfo?.avatar ?? preferences.app.defaultAvatar;
|
|
});
|
|
const roleDescription = computed(() => {
|
|
const roles = userStore.userInfo?.roles;
|
|
return roles && roles.length > 0 ? roles[0] : '--';
|
|
});
|
|
|
|
async function handleLogout() {
|
|
await authStore.logout();
|
|
}
|
|
|
|
function handleNoticeClear() {
|
|
notifications.value = [];
|
|
}
|
|
|
|
function handleMakeAll() {
|
|
notifications.value.forEach((item) => (item.isRead = true));
|
|
}
|
|
watch(
|
|
() => preferences.app.watermark,
|
|
async (enable) => {
|
|
if (enable) {
|
|
await updateWatermark({
|
|
content: `${userStore.userInfo?.username} - ${userStore.userInfo?.realName}`,
|
|
});
|
|
} else {
|
|
destroyWatermark();
|
|
}
|
|
},
|
|
{
|
|
immediate: true,
|
|
},
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<BasicLayout @clear-preferences-and-logout="handleLogout">
|
|
<template #user-dropdown>
|
|
<UserDropdown
|
|
:avatar
|
|
:menus
|
|
:text="userStore.userInfo?.realName"
|
|
:description="roleDescription"
|
|
@logout="handleLogout"
|
|
/>
|
|
</template>
|
|
<template #notification>
|
|
<Notification
|
|
:dot="showDot"
|
|
:notifications="notifications"
|
|
@clear="handleNoticeClear"
|
|
@make-all="handleMakeAll"
|
|
/>
|
|
</template>
|
|
<template #extra>
|
|
<AuthenticationLoginExpiredModal
|
|
v-model:open="accessStore.loginExpired"
|
|
:avatar
|
|
>
|
|
<LoginForm />
|
|
</AuthenticationLoginExpiredModal>
|
|
</template>
|
|
<template #lock-screen>
|
|
<LockScreen :avatar @to-login="handleLogout" />
|
|
</template>
|
|
</BasicLayout>
|
|
</template>
|