2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
no-return-assign,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-19 05:02:56 -04:00
|
|
|
let PermissionsManager
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-12-15 05:23:54 -05:00
|
|
|
export default PermissionsManager = class PermissionsManager {
|
2020-05-19 05:02:56 -04:00
|
|
|
constructor(ide, $scope) {
|
|
|
|
this.ide = ide
|
|
|
|
this.$scope = $scope
|
|
|
|
this.$scope.permissions = {
|
|
|
|
read: false,
|
|
|
|
write: false,
|
|
|
|
admin: false,
|
2021-04-27 03:52:58 -04:00
|
|
|
comment: false,
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
this.$scope.$watch('permissionsLevel', permissionsLevel => {
|
|
|
|
if (permissionsLevel != null) {
|
|
|
|
if (permissionsLevel === 'readOnly') {
|
|
|
|
this.$scope.permissions.read = true
|
|
|
|
this.$scope.permissions.write = false
|
|
|
|
this.$scope.permissions.admin = false
|
|
|
|
this.$scope.permissions.comment = true
|
|
|
|
} else if (permissionsLevel === 'readAndWrite') {
|
|
|
|
this.$scope.permissions.read = true
|
|
|
|
this.$scope.permissions.write = true
|
|
|
|
this.$scope.permissions.comment = true
|
|
|
|
} else if (permissionsLevel === 'owner') {
|
|
|
|
this.$scope.permissions.read = true
|
|
|
|
this.$scope.permissions.write = true
|
|
|
|
this.$scope.permissions.admin = true
|
|
|
|
this.$scope.permissions.comment = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.$scope.anonymous) {
|
|
|
|
return (this.$scope.permissions.comment = false)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-12-15 05:23:54 -05:00
|
|
|
}
|