1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2026-01-23 08:00:22 +08:00

style: lint

This commit is contained in:
zclzone
2024-06-06 18:05:36 +08:00
parent 98f9d5893a
commit a67510fe34
72 changed files with 542 additions and 389 deletions

View File

@@ -6,9 +6,9 @@
* Copyright © 2023 Ronnie Zhang(大脸怪) | https://isme.top
**********************************/
import { isExternal } from '@/utils'
import { hyphenate } from '@vueuse/core'
import { defineStore } from 'pinia'
import { isExternal } from '@/utils'
export const usePermissionStore = defineStore('permission', {
state: () => ({
@@ -20,15 +20,17 @@ export const usePermissionStore = defineStore('permission', {
setPermissions(permissions) {
this.permissions = permissions
this.menus = this.permissions
.filter((item) => item.type === 'MENU')
.map((item) => this.getMenuItem(item))
.filter((item) => !!item)
.filter(item => item.type === 'MENU')
.map(item => this.getMenuItem(item))
.filter(item => !!item)
.sort((a, b) => a.order - b.order)
},
getMenuItem(item, parent) {
const route = this.generateRoute(item, item.show ? null : parent?.key)
if (item.enable && route.path && !route.path.startsWith('http')) this.accessRoutes.push(route)
if (!item.show) return null
if (item.enable && route.path && !route.path.startsWith('http'))
this.accessRoutes.push(route)
if (!item.show)
return null
const menuItem = {
label: route.meta.title,
key: route.name,
@@ -37,18 +39,19 @@ export const usePermissionStore = defineStore('permission', {
icon: () => h('i', { class: `${route.meta.icon} text-16` }),
order: item.order ?? 0,
}
const children = item.children?.filter((item) => item.type === 'MENU') || []
const children = item.children?.filter(item => item.type === 'MENU') || []
if (children.length) {
menuItem.children = children
.map((child) => this.getMenuItem(child, menuItem))
.filter((item) => !!item)
.map(child => this.getMenuItem(child, menuItem))
.filter(item => !!item)
.sort((a, b) => a.order - b.order)
if (!menuItem.children.length) delete menuItem.children
if (!menuItem.children.length)
delete menuItem.children
}
return menuItem
},
generateRoute(item, parentKey) {
let originPath = undefined
let originPath
if (isExternal(item.path)) {
originPath = item.path
item.component = '/src/views/iframe/index.vue'
@@ -61,14 +64,14 @@ export const usePermissionStore = defineStore('permission', {
component: item.component,
meta: {
originPath,
icon: item.icon + '?mask',
icon: `${item.icon}?mask`,
title: item.name,
layout: item.layout,
keepAlive: !!item.keepAlive,
parentKey,
btns: item.children
?.filter((item) => item.type === 'BUTTON')
.map((item) => ({ code: item.code, name: item.name })),
?.filter(item => item.type === 'BUTTON')
.map(item => ({ code: item.code, name: item.name })),
},
}
},