mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
12e6b09943
closes #2414 - Add PostsController with loadNextPage action - Collect and store pagination info from PostsRoute into PostsController - Use `store.filter` on PostsRoute model hook to auto-update posts list template as post models are added to the store - Add content list view and use it to check for scroll event - Make PostRoute only load a post that's already in the store, until we figure how to load multiple pages on refresh - Add util function from clientold that concats error messages from server response
66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
import { getRequestErrorMessage } from 'ghost/utils/ajax';
|
|
|
|
var PostsController = Ember.ArrayController.extend({
|
|
// set from PostsRoute
|
|
paginationSettings: null,
|
|
|
|
// holds the next page to load during infinite scroll
|
|
nextPage: null,
|
|
|
|
// indicates whether we're currently loading the next page
|
|
isLoading: null,
|
|
|
|
init: function () {
|
|
this._super();
|
|
|
|
var metadata = this.store.metadataFor('post');
|
|
this.set('nextPage', metadata.pagination.next);
|
|
},
|
|
|
|
/**
|
|
* Takes an ajax response, concatenates any error messages, then generates an error notification.
|
|
* @param {jqXHR} response The jQuery ajax reponse object.
|
|
* @return
|
|
*/
|
|
reportLoadError: function (response) {
|
|
var message = 'A problem was encountered while loading more posts';
|
|
|
|
if (response) {
|
|
// Get message from response
|
|
message += ': ' + getRequestErrorMessage(response);
|
|
} else {
|
|
message += '.';
|
|
}
|
|
|
|
this.notifications.showError(message);
|
|
},
|
|
|
|
actions: {
|
|
/**
|
|
* Loads the next paginated page of posts into the ember-data store. Will cause the posts list UI to update.
|
|
* @return
|
|
*/
|
|
loadNextPage: function () {
|
|
var self = this,
|
|
store = this.get('store'),
|
|
nextPage = this.get('nextPage'),
|
|
paginationSettings = this.get('paginationSettings');
|
|
|
|
if (nextPage) {
|
|
this.set('isLoading', true);
|
|
this.set('paginationSettings.page', nextPage);
|
|
store.find('post', paginationSettings).then(function () {
|
|
var metadata = store.metadataFor('post');
|
|
|
|
self.set('nextPage', metadata.pagination.next);
|
|
self.set('isLoading', false);
|
|
}, function (response) {
|
|
self.reportLoadError(response);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
export default PostsController;
|