Fix racecondition during loading of comments
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -56,6 +56,10 @@ class ActivityController {
|
|||||||
|
|
||||||
let $target = $('.newCommentForm .message');
|
let $target = $('.newCommentForm .message');
|
||||||
this.applyAtWho($target);
|
this.applyAtWho($target);
|
||||||
|
|
||||||
|
this.activityservice.subscribe(this.$scope, function() {
|
||||||
|
self.$scope.$apply();
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
applyAtWho($target) {
|
applyAtWho($target) {
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ class ActivityService {
|
|||||||
this.$filter = $filter;
|
this.$filter = $filter;
|
||||||
this.$http = $http;
|
this.$http = $http;
|
||||||
this.$q = $q;
|
this.$q = $q;
|
||||||
|
this.$rootScope = $rootScope;
|
||||||
this.data = {};
|
this.data = {};
|
||||||
this.data[DECK_ACTIVITY_TYPE_BOARD] = {};
|
this.data[DECK_ACTIVITY_TYPE_BOARD] = {};
|
||||||
this.data[DECK_ACTIVITY_TYPE_CARD] = {};
|
this.data[DECK_ACTIVITY_TYPE_CARD] = {};
|
||||||
@@ -52,7 +53,7 @@ class ActivityService {
|
|||||||
let item = this.toEnhanceWithComments[index];
|
let item = this.toEnhanceWithComments[index];
|
||||||
item.commentModel = this.commentCollection.get(item.subject_rich[1].comment);
|
item.commentModel = this.commentCollection.get(item.subject_rich[1].comment);
|
||||||
if (typeof item.commentModel !== 'undefined') {
|
if (typeof item.commentModel !== 'undefined') {
|
||||||
this.toEnhanceWithComments = this.toEnhanceWithComments.filter(entry => entry.id !== item.id);
|
this.toEnhanceWithComments = this.toEnhanceWithComments.filter(entry => entry.activity_id !== item.activity_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -60,6 +61,7 @@ class ActivityService {
|
|||||||
if (typeof firstUnread !== 'undefined') {
|
if (typeof firstUnread !== 'undefined') {
|
||||||
this.commentCollection.updateReadMarker();
|
this.commentCollection.updateReadMarker();
|
||||||
}
|
}
|
||||||
|
this.notify();
|
||||||
}, this);
|
}, this);
|
||||||
this.commentCollection.on('add', function(model, collection, options) {
|
this.commentCollection.on('add', function(model, collection, options) {
|
||||||
// we need to update the model, because it consists of client data
|
// we need to update the model, because it consists of client data
|
||||||
@@ -76,6 +78,19 @@ class ActivityService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We need a event here to properly update scope once the external data from
|
||||||
|
* the comments backbone js code has changed
|
||||||
|
*/
|
||||||
|
subscribe(scope, callback) {
|
||||||
|
let handler = this.$rootScope.$on('notify-comment-update', callback);
|
||||||
|
scope.$on('$destroy', handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
notify() {
|
||||||
|
this.$rootScope.$emit('notify-comment-update');
|
||||||
|
}
|
||||||
|
|
||||||
static getUrl(type, id, since) {
|
static getUrl(type, id, since) {
|
||||||
if (type === DECK_ACTIVITY_TYPE_CARD) {
|
if (type === DECK_ACTIVITY_TYPE_CARD) {
|
||||||
return OC.linkToOCS('apps/activity/api/v2/activity', 2) + 'filter?format=json&object_type=deck_card&object_id=' + id + '&limit=' + this.RESULT_PER_PAGE + '&since=' + since;
|
return OC.linkToOCS('apps/activity/api/v2/activity', 2) + 'filter?format=json&object_type=deck_card&object_id=' + id + '&limit=' + this.RESULT_PER_PAGE + '&since=' + since;
|
||||||
@@ -117,13 +132,16 @@ class ActivityService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fetchMoreActivities(type, id, success) {
|
fetchMoreActivities(type, id, success) {
|
||||||
|
const self = this;
|
||||||
this.checkData(type, id);
|
this.checkData(type, id);
|
||||||
if (this.running === true) {
|
if (this.running === true) {
|
||||||
return this.runningPromise;
|
return this.runningPromise;
|
||||||
}
|
}
|
||||||
if (!this.since[type][id].finished) {
|
if (!this.since[type][id].finished) {
|
||||||
this.commentCollection.fetchNext();
|
|
||||||
this.runningPromise = this.fetchCardActivities(type, id, this.since[type][id].oldest);
|
this.runningPromise = this.fetchCardActivities(type, id, this.since[type][id].oldest);
|
||||||
|
this.runningPromise.then(function() {
|
||||||
|
self.commentCollection.fetchNext();
|
||||||
|
});
|
||||||
return this.runningPromise;
|
return this.runningPromise;
|
||||||
}
|
}
|
||||||
return Promise.reject();
|
return Promise.reject();
|
||||||
|
|||||||
Reference in New Issue
Block a user