mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'System/Logs/Table/LogsTableLayout',
|
|
'System/Logs/Files/LogFileLayout',
|
|
'System/Logs/Files/LogFileCollection',
|
|
'System/Logs/Updates/LogFileCollection'
|
|
], function (Marionette, LogsTableLayout, LogsFileLayout, LogFileCollection, UpdateLogFileCollection) {
|
|
return Marionette.Layout.extend({
|
|
template: 'System/Logs/LogsLayoutTemplate',
|
|
|
|
ui: {
|
|
tableTab : '.x-table-tab',
|
|
filesTab : '.x-files-tab',
|
|
updateFilesTab : '.x-update-files-tab'
|
|
},
|
|
|
|
regions: {
|
|
table : '#table',
|
|
files : '#files',
|
|
updateFiles : '#update-files'
|
|
},
|
|
|
|
events: {
|
|
'click .x-table-tab' : '_showTable',
|
|
'click .x-files-tab' : '_showFiles',
|
|
'click .x-update-files-tab' : '_showUpdateFiles'
|
|
},
|
|
|
|
onShow: function () {
|
|
this._showTable();
|
|
},
|
|
|
|
_showTable: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
this.ui.tableTab.tab('show');
|
|
this.table.show(new LogsTableLayout());
|
|
},
|
|
|
|
_showFiles: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
this.ui.filesTab.tab('show');
|
|
this.files.show(new LogsFileLayout({
|
|
collection: new LogFileCollection(),
|
|
deleteFilesCommand: 'deleteLogFiles'
|
|
}));
|
|
},
|
|
|
|
_showUpdateFiles: function (e) {
|
|
if (e) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
this.ui.updateFilesTab.tab('show');
|
|
this.updateFiles.show(new LogsFileLayout({
|
|
collection: new UpdateLogFileCollection(),
|
|
deleteFilesCommand: 'deleteUpdateLogFiles'
|
|
}));
|
|
}
|
|
});
|
|
});
|