feat(auth): 侧边栏改为根据返回路由动态渲染

BREAKING CHANGE:
未完成
This commit is contained in:
‘chen.home’ 2022-08-14 00:23:42 +08:00
parent 5ce9290ca5
commit ba443b4a39
6 changed files with 90 additions and 60 deletions

View File

@ -16,14 +16,60 @@ const userInfo = {
permissions: [
{
label: '主控台',
value: 'dashboard_console',
key: 'dashboard_console',
icon: 'icon-park-outline:alarm',
},
{
label: '监控页',
value: 'dashboard_monitor',
key: 'dashboard_monitor',
icon: 'icon-park-outline:anchor',
},
{
label: 'test1',
key: '/test1',
icon: 'icon-park-outline:alarm',
},
{
label: 'test2',
key: '/test2',
icon: 'icon-park-outline:pic',
},
{
label: 'test3',
key: '/test3',
icon: 'icon-park-outline:tool',
},
{
label: '舞,舞,舞',
key: 'dance-dance-dance',
icon: 'icon-park-outline:command',
children: [
{
label: '饮品',
key: 'beverage',
children: [
{
label: '威士忌',
key: 'whisky',
},
],
},
{
label: '食物',
key: 'food',
children: [
{
label: '三明治',
key: 'sandwich',
},
],
},
{
label: '过去增多,未来减少',
key: 'the-past-increases-the-future-recedes',
},
],
},
],
};

View File

@ -4,7 +4,7 @@
:collapsed-width="64"
:collapsed-icon-size="24"
:indent="20"
:options="menuOptions"
:options="routesStore.menus"
@update:value="handleClickMenu"
/>
</template>
@ -12,64 +12,15 @@
<script setup lang="ts">
import { useAppStore } from '@/store';
import { useAppRouter } from '@/hook';
import type { MenuOption } from 'naive-ui';
import { renderIcon } from '@/utils/icon';
import { useRouteStore } from '~/src/store/modules/route';
const { routerPush } = useAppRouter();
const appStore = useAppStore();
const routesStore = useRouteStore();
const handleClickMenu = (key: string) => {
routerPush(key);
};
const menuOptions: MenuOption[] = [
{
label: 'test1',
key: '/test1',
icon: renderIcon('icon-park-outline:alarm'),
},
{
label: 'test2',
key: '/test2',
icon: renderIcon('icon-park-outline:tool'),
},
{
label: 'test3',
key: '/test3',
icon: renderIcon('icon-park-outline:pic'),
},
{
label: '舞,舞,舞',
key: 'dance-dance-dance',
icon: renderIcon('icon-park-outline:command'),
children: [
{
label: '饮品',
key: 'beverage',
// icon: renderIcon(WineIcon),
children: [
{
label: '威士忌',
key: 'whisky',
},
],
},
{
label: '食物',
key: 'food',
children: [
{
label: '三明治',
key: 'sandwich',
},
],
},
{
label: '过去增多,未来减少',
key: 'the-past-increases-the-future-recedes',
},
],
},
];
</script>
<style scoped></style>

View File

@ -4,6 +4,7 @@ import { setUserInfo, getUserInfo, getToken, setToken, clearAuthStorage } from '
import { router } from '@/router';
import { useAppRouter } from '@/hook';
import { unref } from 'vue';
import { useRouteStore } from './route';
export const useAuthStore = defineStore('auth-store', {
state: () => {
@ -49,7 +50,7 @@ export const useAuthStore = defineStore('auth-store', {
// 等待数据写入完成
const catchSuccess = await this.catchUserInfo(data);
// 初始化侧边菜单
await this.setRouterStore(data.permissions);
// 登录写入信息成功
if (catchSuccess) {
// 进行重定向跳转
@ -81,5 +82,11 @@ export const useAuthStore = defineStore('auth-store', {
return catchSuccess;
},
/* 将路由表等信息推送到routeStore */
async setRouterStore(permissions: Auth.UserInfoPermissions[]) {
const { setMenus } = useRouteStore();
setMenus(permissions);
},
},
});

View File

@ -1,15 +1,28 @@
import { defineStore } from 'pinia';
import { renderIcon } from '@/utils/icon';
interface RuutesStatus {
menus: any;
}
export const useRouteStore = defineStore('route-store', {
state: () => {
state: (): RuutesStatus => {
return {
menus: [],
};
},
actions: {
setMenus(data: any) {
// TODO不应为any
this.menus = data;
setMenus(data: Auth.UserInfoPermissions[]) {
this.menus = this.transformAuthRoutesToMenus(data);
},
// 将返回的路由表渲染成侧边栏
transformAuthRoutesToMenus(data: Auth.UserInfoPermissions[]) {
return data.map((item) => {
item.icon = renderIcon(item.icon);
if (item.children) {
this.transformAuthRoutesToMenus(item.children);
}
return item;
});
},
},
});

View File

@ -26,6 +26,12 @@ declare namespace Auth {
/* token */
token: string;
/* 权限路由 */
permissions: [];
permissions: UserInfoPermissions[];
}
interface UserInfoPermissions {
label: string;
key: string;
icon: any;
children: UserInfoPermissions[];
}
}

View File

@ -12,3 +12,10 @@ declare namespace Service {
successCode: number | string;
}
}
/** 菜单项配置 */
type GlobalMenuOption = import('naive-ui').MenuOption & {
key: string;
label: string;
icon?: () => import('vue').VNodeChild;
children?: GlobalMenuOption[];
};