mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
'use strict';
|
||
|
||
define(
|
||
[
|
||
'backbone.pageable',
|
||
'System/Logs/LogsModel',
|
||
'Mixins/AsFilteredCollection',
|
||
'Mixins/AsPersistedStateCollection'
|
||
],
|
||
function (PagableCollection, LogsModel, AsFilteredCollection, AsPersistedStateCollection) {
|
||
var collection = PagableCollection.extend({
|
||
url : window.NzbDrone.ApiRoot + '/log',
|
||
model: LogsModel,
|
||
tableName: 'logs',
|
||
|
||
state: {
|
||
pageSize: 50,
|
||
sortKey : 'time',
|
||
order : 1
|
||
},
|
||
|
||
queryParams: {
|
||
totalPages : null,
|
||
totalRecords: null,
|
||
pageSize : 'pageSize',
|
||
sortKey : 'sortKey',
|
||
order : 'sortDir',
|
||
directions : {
|
||
'-1': 'asc',
|
||
'1' : 'desc'
|
||
}
|
||
},
|
||
|
||
// Filter Modes
|
||
filterModes: {
|
||
'all' : [null, null],
|
||
'info' : ['level', 'Info'],
|
||
'warn' : ['level', 'Warn'],
|
||
'error' : ['level', 'Error']
|
||
},
|
||
|
||
parseState: function (resp, queryParams, state) {
|
||
return {totalRecords: resp.totalRecords};
|
||
},
|
||
|
||
parseRecords: function (resp) {
|
||
if (resp) {
|
||
return resp.records;
|
||
}
|
||
|
||
return resp;
|
||
}
|
||
});
|
||
|
||
collection = AsFilteredCollection.apply(collection);
|
||
|
||
return AsPersistedStateCollection.apply(collection);
|
||
});
|