1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00
appwrite/public/scripts/permissions-matrix.js

116 lines
4.3 KiB
JavaScript
Raw Normal View History

2022-08-13 21:07:07 +12:00
(function (window) {
2022-08-10 22:23:53 +12:00
document.addEventListener('alpine:init', () => {
Alpine.data('permissionsMatrix', () => ({
permissions: [],
rawPermissions: [],
load(permissions) {
2022-08-13 18:33:11 +12:00
if (permissions === undefined) {
return;
}
2022-08-13 21:07:07 +12:00
this.rawPermissions = permissions;
permissions.map(p => {
2022-08-13 21:07:07 +12:00
let {type, role} = this.parsePermission(p);
type = this.parseInputPermission(type);
let index = -1;
let existing = this.permissions.find((p, idx) => {
if (p.role === role) {
index = idx;
return true;
}
})
if (existing === undefined) {
this.permissions.push({
role,
[type]: true,
});
}
if (index !== -1) {
existing[type] = true;
this.permissions[index] = existing;
}
});
},
2022-08-13 21:07:07 +12:00
addPermission(formId, role, permissions) {
if (!document.getElementById(formId).reportValidity()) {
return;
}
Object.entries(permissions).forEach(entry => {
let [type, enabled] = entry;
type = this.parseOutputPermission(type);
if (enabled) {
this.rawPermissions.push(`${type}(${role})`);
}
});
this.permissions.push({
role,
2022-08-13 21:07:07 +12:00
...permissions,
});
this.reset();
},
updatePermission(index) {
// Because the x-model does not update before the click event,
// we setTimeout to give Alpine enough time to update the model.
setTimeout(() => {
const permission = this.permissions[index];
2022-08-13 21:07:07 +12:00
Object.keys(permission).forEach(key => {
if (key === 'role') {
2022-08-13 21:07:07 +12:00
return;
}
const parsedKey = this.parseOutputPermission(key);
if (permission[key]) {
if (!this.rawPermissions.includes(`${parsedKey}(${permission.role})`)) {
this.rawPermissions.push(`${parsedKey}(${permission.role})`);
}
} else {
this.rawPermissions = this.rawPermissions.filter(p => {
return !p.includes(`${parsedKey}(${permission.role})`);
});
}
2022-08-13 21:07:07 +12:00
});
});
2022-08-10 22:23:53 +12:00
},
removePermission(index) {
let row = this.permissions.splice(index, 1);
2022-08-12 12:26:58 +12:00
if (row.length === 1) {
this.rawPermissions = this.rawPermissions.filter(p => !p.includes(row[0].role));
}
},
parsePermission(permission) {
let parts = permission.split('(');
let type = parts[0];
let role = parts[1].replace(')', '').replace(' ', '');
2022-08-13 21:07:07 +12:00
return {type, role};
},
parseInputPermission(key) {
// Can't bind to a property named delete
if (key === 'delete') {
return 'xdelete';
}
return key;
},
parseOutputPermission(key) {
// Can't bind to a property named delete
if (key === 'xdelete') {
return 'delete';
}
return key;
}
}));
Alpine.data('permissionsRow', () => ({
role: '',
read: false,
create: false,
update: false,
xdelete: false,
reset() {
this.role = '';
this.read = this.create = this.update = this.xdelete = false;
2022-08-10 22:23:53 +12:00
}
}));
2022-08-10 22:23:53 +12:00
});
})(window);