Created
February 10, 2017 04:26
-
-
Save tshafer/10d03e65f757b0347af3b805f6c2d1cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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