[WIP] Don't wait for downloading user data when opening the app

This commit is contained in:
Piotr Sarnacki 2016-03-22 16:53:44 +01:00
parent cbd0c46e37
commit c1d6674d04
8 changed files with 107 additions and 51 deletions

View File

@ -5,6 +5,8 @@ import config from 'travis/config/environment';
export default Ember.Component.extend({
routing: Ember.inject.service('-routing'),
permissions: Ember.inject.service(),
tagName: 'li',
classNameBindings: ['build.last_build.state'],
classNames: ['branch-row', 'row-li'],
@ -54,18 +56,8 @@ export default Ember.Component.extend({
}.property(),
canTrigger: function() {
var permissions;
if (!this.get('auth.signedIn')) {
return false;
} else {
permissions = this.get('auth.currentUser.permissions');
if (permissions.contains(parseInt(this.get('build.repository.id')))) {
return true;
} else {
return false;
}
}
}.property(),
return this.get('permissions').hasPermission(this.get('build.repository'));
}.property('permissions.all', 'build.repository'),
triggerBuild: function() {
var apiEndpoint, options, repoId;

View File

@ -4,6 +4,8 @@ import config from 'travis/config/environment';
import { hasAdminPermission, hasPushPermission } from 'travis/utils/permission';
export default Ember.Component.extend({
permissions: Ember.inject.service(),
tagName: 'li',
classNameBindings: ['repo.default_branch.last_build.state'],
classNames: ['rows', 'rows--dashboard'],
@ -16,13 +18,13 @@ export default Ember.Component.extend({
return githubCommitUrl(this.get('repo.slug'), this.get('repo.default_branch.last_build.commit.sha'));
}.property('repo'),
displayMenuTofu: function() {
return hasPushPermission(this.get('currentUser'), this.get('repo.id'));
},
displayMenuTofu: Ember.computed('permissions.all', 'repo', function() {
return this.get('permissions').hasPushPermission(this.get('repo'));
}),
displayActivateLink: function() {
return hasAdminPermission(this.get('currentUser'), this.get('repo.id'));
},
displayActivateLink: Ember.computed('permissions.all', 'repo', function() {
return this.get('permissions').hasAdminPermission(this.get('repo'));
}),
actions: {
tiggerBuild(branch) {

View File

@ -60,6 +60,8 @@ Object.defineProperty(Log.Limit.prototype, 'limited', {
export default Ember.Component.extend({
popup: Ember.inject.service(),
permissions: Ember.inject.service(),
classNameBindings: ['logIsVisible:is-open'],
logIsVisible: false,
currentUserBinding: 'auth.currentUser',
@ -190,11 +192,8 @@ export default Ember.Component.extend({
}.property('job.log.id', 'job.log.token'),
hasPermission: function() {
var permissions;
if (permissions = this.get('currentUser.permissions')) {
return permissions.contains(parseInt(this.get('job.repo.id')));
}
}.property('currentUser.permissions.length', 'job.repo.id'),
return this.get('permissions').hasPermission(this.get('job.repo'));
}.property('permissions.all', 'job.repo'),
canRemoveLog: function() {
var job;

View File

@ -1,9 +1,10 @@
import Ember from 'ember';
import config from 'travis/config/environment';
import { hasPermission, hasPushPermission } from 'travis/utils/permission';
export default Ember.Component.extend({
popup: Ember.inject.service(),
permissions: Ember.inject.service(),
classNames: ['option-button'],
classNameBindings: ['isOpen:display'],
isOpen: false,
@ -24,15 +25,15 @@ export default Ember.Component.extend({
}
},
displaySettingsLink: function() {
return hasPushPermission(this.get('currentUser'), this.get('repo.id'));
}.property('currentUser.pushPermissions', 'repo.id'),
return this.get('permissions').hasPushPermission(this.get('repo'));
}.property('permissions.all', 'repo'),
displayCachesLink: function() {
return hasPushPermission(this.get('currentUser'), this.get('repo.id')) && config.endpoints.caches;
}.property('currentUser.pushPermissions', 'repo.id'),
return this.get('permissions').hasPushPermission(this.get('repo')) && config.endpoints.caches;
}.property('permissions.all', 'repo'),
displayStatusImages: function() {
return hasPermission(this.get('currentUser'), this.get('repo.id'));
}.property('currentUser.permissions', 'repo.id')
return this.get('permissions').hasPermission(this.get('repo'));
}.property('permissions.all', 'repo'),
});

View File

@ -0,0 +1,29 @@
import Ember from 'ember';
import { hasPermission, hasPushPermission, hasAdminPermission } from 'travis/utils/permission';
export default Ember.Service.extend({
auth: Ember.inject.service(),
currentUser: Ember.computed.alias('auth.currentUser'),
// This is computed property that can be used to allow any properties that
// use permissions service to add dependencies easier. So instead of depending
// on each of these things separately, we can depend on all
all: Ember.computed('currentUser.permissions', 'currentUser.permissions.[]',
'currentUser.pushPermissions', 'currentUser.pushPermissions.[]',
'currentUser.adminPermissions', 'currentUser.adminPermissions.[]',
function() {
return;
}),
hasPermission(repo) {
return hasPermission(this.get('currentUser'), repo);
},
hasPushPermission(repo) {
return hasPushPermission(this.get('currentUser'), repo);
},
hasAdminPermission(repo) {
return hasAdminPermission(this.get('currentUser'), repo);
}
});

View File

@ -1,31 +1,22 @@
var hasPermission = function(user, repoId) {
var id = parseInt(repoId);
var permissions;
if (user) {
if (permissions = user.get('permissions')) {
return permissions.contains(id);
}
var hasPermission = function(user, repo) {
let id = isNaN(repo) ? repo.get('id') : parseInt(repo);
if(user) {
return user.get('permissions').contains(id);
}
};
var hasPushPermission = function(user, repoId) {
var id = parseInt(repoId);
var permissions;
if (user) {
if (permissions = user.get('pushPermissions')) {
return permissions.contains(id);
}
var hasPushPermission = function(user, repo) {
let id = isNaN(repo) ? repo.get('id') : parseInt(repo);
if(user) {
return user.get('pushPermissions').contains(id);
}
};
var hasAdminPermission = function(user, repoId) {
var id = parseInt(repoId);
var permissions;
if (user) {
if (permissions = user.get('adminPermissions')) {
return permissions.contains(id);
}
var hasAdminPermission = function(user, repo) {
let id = isNaN(repo) ? repo.get('id') : parseInt(repo);
if(user) {
return user.get('adminPermissions').contains(id);
}
};

View File

@ -0,0 +1,12 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('service:permissions', 'Unit | Service | permissions', {
// Specify the other units that are required for this test.
// needs: ['service:foo']
});
// Replace this with your real tests.
test('it exists', function(assert) {
let service = this.subject();
assert.ok(service);
});

View File

@ -6,21 +6,51 @@ module('Unit | Utility | permission');
test('it checks permissions', function(assert) {
let user = Ember.Object.create({permissions: [1]});
assert.ok(hasPermission(user, 1));
assert.ok(!hasPermission(user, 2));
assert.ok(!hasPermission(null, 1));
});
test('it checks permissions if a repo object is given', function(assert) {
let repo1 = Ember.Object.create({ id: 1 }),
repo2 = Ember.Object.create({ id: 2 }),
user = Ember.Object.create({permissions: [1]});
assert.ok(hasPermission(user, repo1));
assert.ok(!hasPermission(user, repo2));
});
test('it checks push permissions', function(assert) {
let user = Ember.Object.create({pushPermissions: [1]});
assert.ok(hasPushPermission(user, 1));
assert.ok(!hasPushPermission(user, 2));
assert.ok(!hasPushPermission(null, 1));
});
test('it checks push permissions if a repo object is given', function(assert) {
let repo1 = Ember.Object.create({ id: 1 }),
repo2 = Ember.Object.create({ id: 2 }),
user = Ember.Object.create({pushPermissions: [1]});
assert.ok(hasPushPermission(user, repo1));
assert.ok(!hasPushPermission(user, repo2));
});
test('it checks admin permissions', function(assert) {
let user = Ember.Object.create({adminPermissions: [1]});
assert.ok(hasAdminPermission(user, 1));
assert.ok(!hasAdminPermission(user, 2));
assert.ok(!hasAdminPermission(null, 1));
});
test('it checks admin permissions if a repo object is given', function(assert) {
let repo1 = Ember.Object.create({ id: 1 }),
repo2 = Ember.Object.create({ id: 2 }),
user = Ember.Object.create({adminPermissions: [1]});
assert.ok(hasAdminPermission(user, repo1));
assert.ok(!hasAdminPermission(user, repo2));
});