travis-web/app/controllers/top.js
Curtis Ekstrom 142a7217d4
Remove *Binding(s) from project
These bindings can be replaced wholesale with the more idiomatic
alternative: aliases.

In addition, avoid passing in user to components where it can be injected directly.

One of the perceived downsides of dependency injection can be
that it can make debugging feel more difficult because it's not
immediately clear where the value is coming from, which the explicit
variant we previously used does not suffer from. It might also be
argued that we also lose out on a seam that could be useful in the
future where a component doesn't care about the specific type of
user, just that one is passed in.

While explicitness is often a virtue, it comes at the cost of increased
noise that pervades multiple layers of components. I'd argue this makes
the parent components more difficult to understand, given they are
littered with unnecessary references to data they themselves do not
need.

This decreases the noise/ceremony around accessing
userPermissions/auth data and restricts access to that data to
the child components that actually need to know about it.

As to losing a seam, it appears 1) that this isn't
currently necessary and 2) we can use an internal computed
property should the need arise in the future.
2016-04-13 13:54:51 +02:00

117 lines
3.4 KiB
JavaScript

import Ember from 'ember';
import config from 'travis/config/environment';
const { alias } = Ember.computed;
const { service } = Ember.inject;
export default Ember.Controller.extend({
auth: service(),
store: service(),
storage: service(),
user: alias('auth.currentUser'),
userName: function() {
return this.get('user.name') || this.get('user.login');
}.property('user.login', 'user.name'),
defineTowerColor(broadcastArray) {
if (!broadcastArray) {
return '';
}
if (broadcastArray.length) {
if (broadcastArray.findBy('category', 'warning')) {
return 'warning';
} else if (broadcastArray.findBy('category', 'announcement')) {
return 'announcement';
} else {
return '';
}
}
},
broadcasts: function() {
var apiEndpoint, broadcasts, options, seenBroadcasts;
if (this.get('auth.signedIn')) {
broadcasts = Ember.ArrayProxy.create({
content: [],
lastBroadcastStatus: '',
isLoading: true
});
apiEndpoint = config.apiEndpoint;
options = {};
options.type = 'GET';
options.headers = {
Authorization: "token " + (this.auth.token())
};
seenBroadcasts = this.get('storage').getItem('travis.seen_broadcasts');
if (seenBroadcasts) {
seenBroadcasts = JSON.parse(seenBroadcasts);
} else {
seenBroadcasts = [];
}
$.ajax(apiEndpoint + "/v3/broadcasts", options).then((response) => {
var receivedBroadcasts;
if (response.broadcasts.length) {
receivedBroadcasts = response.broadcasts.filter(function(broadcast) {
if (!broadcast.expired) {
if (seenBroadcasts.indexOf(broadcast.id.toString()) === -1) {
return broadcast;
}
}
}).map(function(broadcast) {
return Ember.Object.create(broadcast);
}).reverse();
}
broadcasts.set('lastBroadcastStatus', this.defineTowerColor(receivedBroadcasts));
broadcasts.set('content', receivedBroadcasts);
return broadcasts.set('isLoading', false);
});
return broadcasts;
}
}.property('broadcasts'),
actions: {
toggleBurgerMenu() {
this.toggleProperty('is-open');
return false;
},
toggleBroadcasts() {
this.toggleProperty('showBroadcasts');
return false;
},
markBroadcastAsSeen(broadcast) {
var id, seenBroadcasts;
id = broadcast.get('id').toString();
seenBroadcasts = this.get('storage').getItem('travis.seen_broadcasts');
if (seenBroadcasts) {
seenBroadcasts = JSON.parse(seenBroadcasts);
} else {
seenBroadcasts = [];
}
seenBroadcasts.push(id);
this.get('storage').setItem('travis.seen_broadcasts', JSON.stringify(seenBroadcasts));
this.get('broadcasts.content').removeObject(broadcast);
this.set('broadcasts.lastBroadcastStatus', this.defineTowerColor(this.get('broadcasts.content')));
return false;
}
},
showCta: function() {
return !this.get('auth.signedIn') && !this.get('config.pro') && !this.get('landingPage');
}.property('auth.signedIn', 'landingPage'),
classProfile: function() {
var classes = ['profile menu'];
if (this.get('tab') === 'profile') {
classes.push('active');
}
classes.push(this.get('controller.auth.state') || 'signed-out');
return classes.join(' ');
}.property('tab', 'auth.state')
});