Ben Lin
2024-12-28 f9eb1a419834f97a3ab0124b132de4f977b1973b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * Global authority directive
 * Used for fine-grained control of component permissions
 * @Example v-auth="RoleEnum.TEST"
 */
import type { App, Directive, DirectiveBinding } from 'vue';
 
import { usePermission } from '@/hooks/web/usePermission';
import { RoleEnum } from '@/enums/roleEnum';
 
function isAuth(el: Element, binding: any) {
  const { hasPermission } = usePermission();
 
  const value = binding.value;
  if (!value) return;
  if (!hasPermission(value)) {
    el.parentNode?.removeChild(el);
  }
}
 
const mounted = (el: Element, binding: DirectiveBinding<string | string[] | RoleEnum[]>) => {
  isAuth(el, binding);
};
 
const authDirective: Directive = {
  mounted,
};
 
export function setupPermissionDirective(app: App) {
  app.directive('auth', authDirective);
}
 
export default authDirective;