初始化

This commit is contained in:
2026-03-26 20:18:20 +08:00
commit 120a5b4dfd
368 changed files with 35926 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
<script setup lang="ts">
import { computed } from 'vue';
import type { VNode } from 'vue';
import { useAuthStore } from '@/store/modules/auth';
import { useRouterPush } from '@/hooks/common/router';
import { useSvgIcon } from '@/hooks/common/icon';
import { $t } from '@/locales';
defineOptions({ name: 'UserAvatar' });
const authStore = useAuthStore();
const { routerPushByKey, toLogin } = useRouterPush();
const { SvgIconVNode } = useSvgIcon();
function loginOrRegister() {
toLogin();
}
type DropdownKey = 'user-center' | 'logout';
type DropdownOption = {
key: DropdownKey;
label: string;
icon?: () => VNode;
};
const options = computed(() => {
const opts: DropdownOption[] = [
{
label: $t('common.userCenter'),
key: 'user-center',
icon: SvgIconVNode({ icon: 'ph:user-circle', fontSize: 18 })
},
{
label: $t('common.logout'),
key: 'logout',
icon: SvgIconVNode({ icon: 'ph:sign-out', fontSize: 18 })
}
];
return opts;
});
function logout() {
window.$messageBox
?.confirm($t('common.logoutConfirm'), $t('common.tip'), {
confirmButtonText: $t('common.confirm'),
cancelButtonText: $t('common.cancel'),
type: 'warning'
})
.then(() => {
authStore.resetStore();
});
}
function handleDropdown(key: DropdownKey) {
if (key === 'logout') {
logout();
} else {
// If your other options are jumps from other routes, they will be directly supported here
routerPushByKey(key);
}
}
</script>
<template>
<ElButton v-if="!authStore.isLogin" text @click="loginOrRegister">
{{ $t('page.login.common.loginOrRegister') }}
</ElButton>
<ElDropdown class="px-14px" trigger="click" @command="handleDropdown">
<template #dropdown>
<ElDropdownMenu>
<ElDropdownItem
v-for="{ key, label, icon } in options"
:key="key"
class="mx-4px my-1px rounded-6px"
:icon="icon"
:command="key"
>
{{ label }}
</ElDropdownItem>
</ElDropdownMenu>
</template>
<div class="flex items-center">
<SvgIcon icon="ph:user-circle" class="mr-5px text-icon-large" />
<span class="text-16px font-medium">{{ authStore.userInfo.userName }}</span>
</div>
</ElDropdown>
</template>
<style scoped></style>