Radarr/UI/Missing/Collection.js

38 lines
977 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(['app', 'Series/EpisodeModel', 'backbone.pageable'], function (app, EpisodeModel, PagableCollection) {
2013-06-24 02:31:02 +00:00
return PagableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/missing',
model: NzbDrone.Series.EpisodeModel,
2013-05-01 07:34:05 +00:00
state: {
2013-05-24 00:57:34 +00:00
pageSize: 15,
2013-06-22 06:24:24 +00:00
sortKey : 'airDate',
order : 1
2013-05-01 07:34:05 +00:00
},
queryParams: {
totalPages : null,
2013-05-01 07:34:05 +00:00
totalRecords: null,
pageSize : 'pageSize',
2013-06-22 06:24:24 +00:00
sortKey : 'sortKey',
order : 'sortDir',
directions : {
2013-06-22 06:24:24 +00:00
'-1': 'asc',
'1' : 'desc'
2013-05-01 07:34:05 +00:00
}
2013-05-02 05:50:34 +00:00
},
parseState: function (resp, queryParams, state) {
return {totalRecords: resp.totalRecords};
},
parseRecords: function (resp) {
if (resp) {
return resp.records;
}
return resp;
2013-03-21 03:02:57 +00:00
}
});
});