Radarr/UI/History/Collection.js

38 lines
972 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(['app', 'History/Model', 'backbone.pageable'], function (App, HistoryModel, PageableCollection) {
NzbDrone.History.Collection = PageableCollection.extend({
2013-05-03 06:53:32 +00:00
url : NzbDrone.Constants.ApiRoot + '/history',
model : NzbDrone.History.Model,
state: {
2013-05-24 00:57:34 +00:00
pageSize: 15,
2013-06-22 06:24:24 +00:00
sortKey: 'date',
2013-05-03 06:53:32 +00:00
order: 1
},
queryParams: {
totalPages: null,
totalRecords: null,
pageSize: 'pageSize',
2013-06-22 06:24:24 +00:00
sortKey: 'sortKey',
order: 'sortDir',
2013-05-03 06:53:32 +00:00
directions: {
2013-06-22 06:24:24 +00:00
'-1': 'asc',
'1': 'desc'
2013-05-03 06:53:32 +00:00
}
},
parseState: function (resp, queryParams, state) {
return {totalRecords: resp.totalRecords};
},
parseRecords: function (resp) {
if (resp) {
return resp.records;
}
return resp;
}
});
});