mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
import { isString } from '@vueuse/core' |
|
import { createSharedComposable, rolePermissions, useGlobal, useRoles } from '#imports' |
|
import type { Permission, ProjectRole, Role } from '~/lib' |
|
|
|
const hasPermission = (role: Role | ProjectRole, hasRole: boolean, permission: Permission | string) => { |
|
const rolePermission = rolePermissions[role] |
|
|
|
if (!hasRole || !rolePermission) return false |
|
|
|
if (isString(rolePermission) && rolePermission === '*') return true |
|
|
|
if ('include' in rolePermission && rolePermission.include) { |
|
return !!rolePermission.include[permission as keyof typeof rolePermission.include] |
|
} |
|
|
|
if ('exclude' in rolePermission && rolePermission.exclude) { |
|
return !rolePermission.exclude[permission as keyof typeof rolePermission.exclude] |
|
} |
|
|
|
return rolePermission[permission as keyof typeof rolePermission] |
|
} |
|
|
|
export const useUIPermission = createSharedComposable(() => { |
|
const { previewAs } = useGlobal() |
|
const { allRoles } = useRoles() |
|
|
|
const isUIAllowed = (permission: Permission | string, skipPreviewAs = false) => { |
|
if (previewAs.value && !skipPreviewAs) { |
|
return hasPermission(previewAs.value, true, permission) |
|
} |
|
|
|
return Object.entries(allRoles.value).some(([role, hasRole]) => |
|
hasPermission(role as Role | ProjectRole, hasRole, permission), |
|
) |
|
} |
|
|
|
return { isUIAllowed } |
|
})
|
|
|