mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 14:57:46 +08:00
36 lines
898 B
JavaScript
36 lines
898 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
import { default as computed, observes } from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.ArrayController.extend({
|
|
needs: ['application'],
|
|
|
|
@observes('model.canLoadMore')
|
|
_showFooter() {
|
|
this.set("controllers.application.showFooter", !this.get("model.canLoadMore"));
|
|
},
|
|
|
|
@computed('model.content.length')
|
|
hasNotifications(length) {
|
|
return length > 0;
|
|
},
|
|
|
|
@computed('model.content.@each.read')
|
|
allNotificationsRead() {
|
|
return !this.get('model.content').some((notification) => !notification.get('read'));
|
|
},
|
|
|
|
currentPath: Em.computed.alias('controllers.application.currentPath'),
|
|
|
|
actions: {
|
|
resetNew() {
|
|
ajax('/notifications/mark-read', { method: 'PUT' }).then(() => {
|
|
this.setEach('read', true);
|
|
});
|
|
},
|
|
|
|
loadMore() {
|
|
this.get('model').loadMore();
|
|
}
|
|
}
|
|
});
|