Merge remote-tracking branch 'origin/julius-dev' into julius-dev

master
trivernis 5 years ago
commit da971a1f13

@ -52,9 +52,15 @@ export class FeedService {
content: pContent
}};
return this.http.post(environment.graphQLUrl, body).subscribe(response => {
<<<<<<< HEAD
const updatedposts = this.newPosts.getValue();
updatedposts.unshift(this.renderPost(response));
this.newPosts.next(updatedposts);
=======
const updatedPosts = this.newPosts.getValue();
updatedPosts.unshift(this.renderPost(response.json()));
this.newPosts.next(updatedPosts);
>>>>>>> julius-dev
this.setPost('NEW');
});
}
@ -89,9 +95,15 @@ export class FeedService {
id: activityId
}};
return this.http.post(environment.graphQLUrl, body).subscribe(response => {
<<<<<<< HEAD
const updatedposts = this.newPosts.getValue();
updatedposts.unshift(this.renderPost(response));
this.newPosts.next(updatedposts);
=======
const updatedPosts = this.newPosts.getValue();
updatedPosts.unshift(this.renderPost(response.json()));
this.newPosts.next(updatedPosts);
>>>>>>> julius-dev
this.setPost('NEW');
});
}
@ -163,9 +175,15 @@ export class FeedService {
headers.set('Content-Type', 'application/json');
this.http.post(environment.graphQLUrl, this.buildJson(this.activePostList, this.newOffset))
.subscribe(response => {
<<<<<<< HEAD
let updatedposts = this.newPosts.getValue();
updatedposts = updatedposts.concat(this.renderAllPosts(response));
if (this.renderAllPosts(response).length < 1) {
=======
let updatedPosts = this.newPosts.getValue();
updatedPosts = updatedPosts.concat(this.renderAllPosts(response.json()));
if (this.renderAllPosts(response.json()).length < 1) {
>>>>>>> julius-dev
this.newPostsAvailable.next(false);
}
this.newPosts.next(updatedPosts);

Loading…
Cancel
Save