1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-29 02:57:15 +02:00
Sonarr/src/UI/History/HistoryCollection.js

52 lines
1.3 KiB
JavaScript
Raw Normal View History

2013-07-24 04:15:58 +03:00
'use strict';
define(
[
'History/HistoryModel',
'backbone.pageable'
2013-07-24 04:15:58 +03:00
], function (HistoryModel, PageableCollection) {
return PageableCollection.extend({
2013-09-14 10:10:19 +03:00
url : window.NzbDrone.ApiRoot + '/history',
model: HistoryModel,
2013-05-03 09:53:32 +03:00
state: {
pageSize: 15,
sortKey : 'date',
order : 1
},
2013-05-03 09:53:32 +03:00
queryParams: {
totalPages : null,
totalRecords: null,
pageSize : 'pageSize',
sortKey : 'sortKey',
order : 'sortDir',
directions : {
'-1': 'asc',
'1' : 'desc'
}
},
2013-05-03 09:53:32 +03:00
initialize: function (options) {
delete this.queryParams.episodeId;
if (options) {
if (options.episodeId) {
this.queryParams.episodeId = options.episodeId;
}
}
},
parseState: function (resp) {
return { totalRecords: resp.totalRecords };
},
2013-05-03 09:53:32 +03:00
parseRecords: function (resp) {
if (resp) {
return resp.records;
}
2013-05-03 09:53:32 +03:00
return resp;
}
});
2013-05-03 09:53:32 +03:00
});