23 lines
662 B
JavaScript
23 lines
662 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function serviceCardPermissions([params] /*, hash*/) {
|
|
if (params.Datacenter === '') {
|
|
return 'empty';
|
|
} else {
|
|
const hasPermissions = params.Intention.HasPermissions;
|
|
const allowed = params.Intention.Allowed;
|
|
const notExplicitlyDefined = params.Source === 'specific-intention' && !params.TransparentProxy;
|
|
|
|
switch (true) {
|
|
case hasPermissions:
|
|
return 'allow';
|
|
case !allowed && !hasPermissions:
|
|
return 'deny';
|
|
case allowed && notExplicitlyDefined:
|
|
return 'not-defined';
|
|
default:
|
|
return 'allow';
|
|
}
|
|
}
|
|
});
|