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

Loading…
Cancel
Save