Skip to content

Instantly share code, notes, and snippets.

@tshafer
Created February 10, 2017 04:26
Show Gist options
  • Save tshafer/10d03e65f757b0347af3b805f6c2d1cc to your computer and use it in GitHub Desktop.
Save tshafer/10d03e65f757b0347af3b805f6c2d1cc to your computer and use it in GitHub Desktop.
foreach ($this->teams($user) as $team) {
$permissions[$team->id] = array_dot(app(RoleRepository::class)->permissions($user->roleOn($team)));
}
Vue.directive('permission', function (el, binding) {
let idPermission = binding.value.split('_');
let team = idPermission[0];
let permission = idPermission[1];
if (team != "null") {
if (window.store.hasPerm(team, permission)) {
el.style.display = 'visible'
}
if (!window.store.hasPerm(team, permission)) {
el.style.display = 'none';
}
}
});
window.store = {
hasPerm: function (team, permission) {
let perms = Dispatch.state.permissions;
if (perms && _.has(perms, team)) {
let currentPerms = _.get(perms, team);
let hasPerm = _.has(currentPerms, permission);
return (hasPerm);
}
return false
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment