parent
b308f06af3
commit
b556eda4a0
@ -1,13 +1,14 @@
|
|||||||
var Handlebars = require('handlebars');
|
var Handlebars = require('handlebars');
|
||||||
|
|
||||||
module.exports = (function(){
|
Handlebars.registerHelper('historyAge', function() {
|
||||||
Handlebars.registerHelper('historyAge', function(){
|
|
||||||
var unit = 'days';
|
var unit = 'days';
|
||||||
var age = this.age;
|
var age = this.age;
|
||||||
if(age < 2) {
|
|
||||||
unit = 'hours';
|
if (age < 2) {
|
||||||
age = parseFloat(this.ageHours).toFixed(1);
|
unit = 'hours';
|
||||||
}
|
age = parseFloat(this.ageHours).toFixed(1);
|
||||||
return new Handlebars.SafeString('<dt>Age (when grabbed):</dt><dd>{0} {1}</dd>'.format(age, unit));
|
}
|
||||||
});
|
|
||||||
}).call(this);
|
return new Handlebars.SafeString('<dt>Age (when grabbed):</dt><dd>{0} {1}</dd>'.format(age, unit));
|
||||||
|
});
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
var Marionette = require('marionette');
|
var Marionette = require('marionette');
|
||||||
require('./HistoryDetailsAge');
|
require('./HistoryDetailsAge');
|
||||||
|
|
||||||
module.exports = Marionette.ItemView.extend({template : 'Activity/History/Details/HistoryDetailsViewTemplate'});
|
module.exports = Marionette.ItemView.extend({
|
||||||
|
template : 'Activity/History/Details/HistoryDetailsViewTemplate'
|
||||||
|
});
|
@ -1,68 +1,67 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
define(
|
var $ = require('jquery');
|
||||||
[
|
var vent = require('../../vent');
|
||||||
'jquery',
|
var Marionette = require('marionette');
|
||||||
'marionette',
|
var TemplatedCell = require('../../Cells/TemplatedCell');
|
||||||
'Cells/TemplatedCell',
|
var RemoveFromQueueView = require('./RemoveFromQueueView');
|
||||||
'Activity/Queue/RemoveFromQueueView',
|
|
||||||
'vent'
|
|
||||||
], function ($, Marionette, TemplatedCell, RemoveFromQueueView, vent) {
|
|
||||||
return TemplatedCell.extend({
|
|
||||||
|
|
||||||
template : 'Activity/Queue/QueueActionsCellTemplate',
|
module.exports = TemplatedCell.extend({
|
||||||
className : 'queue-actions-cell',
|
|
||||||
|
|
||||||
events: {
|
template : 'Activity/Queue/QueueActionsCellTemplate',
|
||||||
'click .x-remove' : '_remove',
|
className : 'queue-actions-cell',
|
||||||
'click .x-import' : '_import',
|
|
||||||
'click .x-grab' : '_grab'
|
|
||||||
},
|
|
||||||
|
|
||||||
ui: {
|
events : {
|
||||||
import : '.x-import',
|
'click .x-remove' : '_remove',
|
||||||
grab : '.x-grab'
|
'click .x-import' : '_import',
|
||||||
},
|
'click .x-grab' : '_grab'
|
||||||
|
},
|
||||||
|
|
||||||
_remove : function () {
|
ui : {
|
||||||
|
import : '.x-import',
|
||||||
|
grab : '.x-grab'
|
||||||
|
},
|
||||||
|
|
||||||
var showBlacklist = this.model.get('status') !== 'Pending';
|
_remove : function() {
|
||||||
|
var showBlacklist = this.model.get('status') !== 'Pending';
|
||||||
|
|
||||||
vent.trigger(vent.Commands.OpenModalCommand, new RemoveFromQueueView({ model: this.model, showBlacklist: showBlacklist }));
|
vent.trigger(vent.Commands.OpenModalCommand, new RemoveFromQueueView({
|
||||||
},
|
model : this.model,
|
||||||
|
showBlacklist : showBlacklist
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
_import : function () {
|
_import : function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
var promise = $.ajax({
|
var promise = $.ajax({
|
||||||
url: window.NzbDrone.ApiRoot + '/queue/import',
|
url : window.NzbDrone.ApiRoot + '/queue/import',
|
||||||
type: 'POST',
|
type : 'POST',
|
||||||
data: JSON.stringify(this.model.toJSON())
|
data : JSON.stringify(this.model.toJSON())
|
||||||
});
|
});
|
||||||
|
|
||||||
$(this.ui.import).spinForPromise(promise);
|
$(this.ui.import).spinForPromise(promise);
|
||||||
|
|
||||||
promise.success(function () {
|
promise.success(function() {
|
||||||
//find models that have the same series id and episode ids and remove them
|
//find models that have the same series id and episode ids and remove them
|
||||||
self.model.trigger('destroy', self.model);
|
self.model.trigger('destroy', self.model);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
_grab : function () {
|
_grab : function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
var promise = $.ajax({
|
var promise = $.ajax({
|
||||||
url: window.NzbDrone.ApiRoot + '/queue/grab',
|
url : window.NzbDrone.ApiRoot + '/queue/grab',
|
||||||
type: 'POST',
|
type : 'POST',
|
||||||
data: JSON.stringify(this.model.toJSON())
|
data : JSON.stringify(this.model.toJSON())
|
||||||
});
|
});
|
||||||
|
|
||||||
$(this.ui.grab).spinForPromise(promise);
|
$(this.ui.grab).spinForPromise(promise);
|
||||||
|
|
||||||
promise.success(function () {
|
promise.success(function() {
|
||||||
//find models that have the same series id and episode ids and remove them
|
//find models that have the same series id and episode ids and remove them
|
||||||
self.model.trigger('destroy', self.model);
|
self.model.trigger('destroy', self.model);
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
@ -1,116 +1,99 @@
|
|||||||
'use strict';
|
var Marionette = require('marionette');
|
||||||
define(
|
var Backgrid = require('backgrid');
|
||||||
[
|
var QueueCollection = require('./QueueCollection');
|
||||||
'marionette',
|
var SeriesTitleCell = require('../../Cells/SeriesTitleCell');
|
||||||
'backgrid',
|
var EpisodeNumberCell = require('../../Cells/EpisodeNumberCell');
|
||||||
'Activity/Queue/QueueCollection',
|
var EpisodeTitleCell = require('../../Cells/EpisodeTitleCell');
|
||||||
'Cells/SeriesTitleCell',
|
var QualityCell = require('../../Cells/QualityCell');
|
||||||
'Cells/EpisodeNumberCell',
|
var QueueStatusCell = require('./QueueStatusCell');
|
||||||
'Cells/EpisodeTitleCell',
|
var QueueActionsCell = require('./QueueActionsCell');
|
||||||
'Cells/QualityCell',
|
var TimeleftCell = require('./TimeleftCell');
|
||||||
'Activity/Queue/QueueStatusCell',
|
var ProgressCell = require('./ProgressCell');
|
||||||
'Activity/Queue/QueueActionsCell',
|
var ProtocolCell = require('../../Release/ProtocolCell');
|
||||||
'Activity/Queue/TimeleftCell',
|
var GridPager = require('../../Shared/Grid/Pager');
|
||||||
'Activity/Queue/ProgressCell',
|
|
||||||
'Release/ProtocolCell',
|
|
||||||
'Shared/Grid/Pager'
|
|
||||||
], function (Marionette,
|
|
||||||
Backgrid,
|
|
||||||
QueueCollection,
|
|
||||||
SeriesTitleCell,
|
|
||||||
EpisodeNumberCell,
|
|
||||||
EpisodeTitleCell,
|
|
||||||
QualityCell,
|
|
||||||
QueueStatusCell,
|
|
||||||
QueueActionsCell,
|
|
||||||
TimeleftCell,
|
|
||||||
ProgressCell,
|
|
||||||
ProtocolCell,
|
|
||||||
GridPager) {
|
|
||||||
return Marionette.Layout.extend({
|
|
||||||
template: 'Activity/Queue/QueueLayoutTemplate',
|
|
||||||
|
|
||||||
regions: {
|
module.exports = Marionette.Layout.extend({
|
||||||
table: '#x-queue',
|
template : 'Activity/Queue/QueueLayoutTemplate',
|
||||||
pager: '#x-queue-pager'
|
|
||||||
},
|
|
||||||
|
|
||||||
columns:
|
regions : {
|
||||||
[
|
table : '#x-queue',
|
||||||
{
|
pager : '#x-queue-pager'
|
||||||
name : 'status',
|
},
|
||||||
label : '',
|
|
||||||
cell : QueueStatusCell,
|
|
||||||
cellValue : 'this'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'series',
|
|
||||||
label : 'Series',
|
|
||||||
cell : SeriesTitleCell,
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'episode',
|
|
||||||
label : 'Episode',
|
|
||||||
cell : EpisodeNumberCell,
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'episode',
|
|
||||||
label : 'Episode Title',
|
|
||||||
cell : EpisodeTitleCell,
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'quality',
|
|
||||||
label : 'Quality',
|
|
||||||
cell : QualityCell,
|
|
||||||
sortable : false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'protocol',
|
|
||||||
label : 'Protocol',
|
|
||||||
cell : ProtocolCell
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'timeleft',
|
|
||||||
label : 'Timeleft',
|
|
||||||
cell : TimeleftCell,
|
|
||||||
cellValue : 'this'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'episode',
|
|
||||||
label : 'Progress',
|
|
||||||
cell : ProgressCell,
|
|
||||||
cellValue : 'this'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name : 'status',
|
|
||||||
label : '',
|
|
||||||
cell : QueueActionsCell,
|
|
||||||
cellValue : 'this'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
initialize: function () {
|
columns : [
|
||||||
this.listenTo(QueueCollection, 'sync', this._showTable);
|
{
|
||||||
},
|
name : 'status',
|
||||||
|
label : '',
|
||||||
|
cell : QueueStatusCell,
|
||||||
|
cellValue : 'this'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'series',
|
||||||
|
label : 'Series',
|
||||||
|
cell : SeriesTitleCell,
|
||||||
|
sortable : false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'episode',
|
||||||
|
label : 'Episode',
|
||||||
|
cell : EpisodeNumberCell,
|
||||||
|
sortable : false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'episode',
|
||||||
|
label : 'Episode Title',
|
||||||
|
cell : EpisodeTitleCell,
|
||||||
|
sortable : false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'quality',
|
||||||
|
label : 'Quality',
|
||||||
|
cell : QualityCell,
|
||||||
|
sortable : false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'protocol',
|
||||||
|
label : 'Protocol',
|
||||||
|
cell : ProtocolCell
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'timeleft',
|
||||||
|
label : 'Timeleft',
|
||||||
|
cell : TimeleftCell,
|
||||||
|
cellValue : 'this'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'episode',
|
||||||
|
label : 'Progress',
|
||||||
|
cell : ProgressCell,
|
||||||
|
cellValue : 'this'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'status',
|
||||||
|
label : '',
|
||||||
|
cell : QueueActionsCell,
|
||||||
|
cellValue : 'this'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
onShow: function () {
|
initialize : function() {
|
||||||
this._showTable();
|
this.listenTo(QueueCollection, 'sync', this._showTable);
|
||||||
},
|
},
|
||||||
|
|
||||||
_showTable: function () {
|
onShow : function() {
|
||||||
this.table.show(new Backgrid.Grid({
|
this._showTable();
|
||||||
columns : this.columns,
|
},
|
||||||
collection: QueueCollection,
|
|
||||||
className : 'table table-hover'
|
|
||||||
}));
|
|
||||||
|
|
||||||
this.pager.show(new GridPager({
|
_showTable : function() {
|
||||||
columns : this.columns,
|
this.table.show(new Backgrid.Grid({
|
||||||
collection: QueueCollection
|
columns : this.columns,
|
||||||
}));
|
collection : QueueCollection,
|
||||||
}
|
className : 'table table-hover'
|
||||||
});
|
}));
|
||||||
});
|
|
||||||
|
this.pager.show(new GridPager({
|
||||||
|
columns : this.columns,
|
||||||
|
collection : QueueCollection
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
@ -1,39 +1,34 @@
|
|||||||
'use strict';
|
var vent = require('../../vent');
|
||||||
define(
|
var Marionette = require('marionette');
|
||||||
[
|
|
||||||
'vent',
|
|
||||||
'marionette'
|
|
||||||
], function (vent, Marionette) {
|
|
||||||
|
|
||||||
return Marionette.ItemView.extend({
|
module.exports = Marionette.ItemView.extend({
|
||||||
template: 'Activity/Queue/RemoveFromQueueViewTemplate',
|
template : 'Activity/Queue/RemoveFromQueueViewTemplate',
|
||||||
|
|
||||||
events: {
|
events : {
|
||||||
'click .x-confirm-remove' : 'removeItem'
|
'click .x-confirm-remove' : 'removeItem'
|
||||||
},
|
},
|
||||||
|
|
||||||
ui: {
|
ui : {
|
||||||
blacklist : '.x-blacklist',
|
blacklist : '.x-blacklist',
|
||||||
indicator : '.x-indicator'
|
indicator : '.x-indicator'
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize: function (options) {
|
initialize : function(options) {
|
||||||
this.templateHelpers = {
|
this.templateHelpers = {
|
||||||
showBlacklist: options.showBlacklist
|
showBlacklist : options.showBlacklist
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
removeItem: function () {
|
removeItem : function() {
|
||||||
var blacklist = this.ui.blacklist.prop('checked') || false;
|
var blacklist = this.ui.blacklist.prop('checked') || false;
|
||||||
|
|
||||||
this.ui.indicator.show();
|
this.ui.indicator.show();
|
||||||
|
|
||||||
this.model.destroy({
|
this.model.destroy({
|
||||||
data: { 'blacklist': blacklist },
|
data : { 'blacklist' : blacklist },
|
||||||
wait: true
|
wait : true
|
||||||
}).done(function () {
|
}).done(function() {
|
||||||
vent.trigger(vent.Commands.CloseModalCommand);
|
vent.trigger(vent.Commands.CloseModalCommand);
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
Loading…
Reference in new issue