Files
ss-tiku-manage-web/src/directives/permission/hasRole.ts
2025-05-12 14:11:54 +08:00

28 lines
742 B
TypeScript

import type { App } from 'vue'
import { CACHE_KEY } from '@/hooks/web/useCache'
import cache from '@/plugins/cache'
const { t } = useI18n() // 国际化
export function hasRole(app: App<Element>) {
app.directive('hasRole', (el, binding) => {
const { value } = binding
const super_admin = 'admin'
const roles = cache.local.get(CACHE_KEY.USER).roles
if (value && value instanceof Array && value.length > 0) {
const roleFlag = value
const hasRole = roles.some((role: string) => {
return super_admin === role || roleFlag.includes(role)
})
if (!hasRole) {
el.parentNode && el.parentNode.removeChild(el)
}
} else {
throw new Error(t('permission.hasRole'))
}
})
}