2013-05-01 02:02:33 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-05-17 03:47:28 +00:00
|
|
|
Backgrid.Column.prototype.defaults = {
|
2013-06-07 01:29:54 +00:00
|
|
|
name : undefined,
|
|
|
|
label : undefined,
|
|
|
|
sortable : true,
|
|
|
|
editable : false,
|
2013-05-17 03:47:28 +00:00
|
|
|
renderable: true,
|
2013-06-07 01:29:54 +00:00
|
|
|
formatter : undefined,
|
|
|
|
cell : undefined,
|
2013-05-17 03:47:28 +00:00
|
|
|
headerCell: 'nzbDrone'
|
|
|
|
};
|
|
|
|
|
2013-04-23 15:29:05 +00:00
|
|
|
Backgrid.TemplateBackedCell = Backgrid.Cell.extend({
|
|
|
|
className: '',
|
2013-06-07 01:29:54 +00:00
|
|
|
template : 'Series/Index/Table/ControlsColumnTemplate',
|
2013-04-23 06:06:55 +00:00
|
|
|
|
|
|
|
render: function () {
|
|
|
|
var data = this.model.toJSON();
|
2013-05-01 02:02:33 +00:00
|
|
|
var templateFunction = Marionette.TemplateCache.get(this.template);
|
2013-05-01 02:12:32 +00:00
|
|
|
var html = templateFunction(data);
|
2013-04-23 06:06:55 +00:00
|
|
|
this.$el.html(html);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-04-23 07:11:52 +00:00
|
|
|
Backgrid.NzbDroneHeaderCell = Backgrid.HeaderCell.extend({
|
|
|
|
events: {
|
|
|
|
'click': 'onClick'
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
this.$el.append(this.column.get("label"));
|
|
|
|
|
|
|
|
if (this.column.get('sortable')) {
|
|
|
|
this.$el.append(" <i class='icon-sort pull-right'></i>");
|
2013-05-02 07:09:35 +00:00
|
|
|
|
|
|
|
if (this.collection.state) {
|
|
|
|
var sortKey = this.collection.state.sortKey;
|
|
|
|
var sortDir = this._convertIntToDirection(this.collection.state.order);
|
|
|
|
|
|
|
|
if (sortKey === this.column.get('name')) {
|
|
|
|
this.$el.children('i').addClass(this._convertDirectionToIcon(sortDir));
|
|
|
|
this._direction = sortDir;
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 07:11:52 +00:00
|
|
|
}
|
|
|
|
this.delegateEvents();
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
direction: function (dir) {
|
|
|
|
if (arguments.length) {
|
2013-06-07 01:29:54 +00:00
|
|
|
if (this._direction) {
|
|
|
|
this.$el.children('i').removeClass(this._convertDirectionToIcon(this._direction));
|
|
|
|
}
|
|
|
|
if (dir) {
|
|
|
|
this.$el.children('i').addClass(this._convertDirectionToIcon(dir));
|
|
|
|
}
|
2013-04-23 07:11:52 +00:00
|
|
|
this._direction = dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._direction;
|
|
|
|
},
|
|
|
|
|
2013-05-02 05:50:34 +00:00
|
|
|
onClick: function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var columnName = this.column.get("name");
|
|
|
|
|
|
|
|
if (this.column.get("sortable")) {
|
|
|
|
if (this.direction() === "ascending") {
|
|
|
|
this.sort(columnName, "descending", function (left, right) {
|
|
|
|
var leftVal = left.get(columnName);
|
|
|
|
var rightVal = right.get(columnName);
|
|
|
|
if (leftVal === rightVal) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-06-07 01:29:54 +00:00
|
|
|
else if (leftVal > rightVal) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-02 05:50:34 +00:00
|
|
|
return 1;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.sort(columnName, "ascending", function (left, right) {
|
|
|
|
var leftVal = left.get(columnName);
|
|
|
|
var rightVal = right.get(columnName);
|
|
|
|
if (leftVal === rightVal) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-06-07 01:29:54 +00:00
|
|
|
else if (leftVal < rightVal) {
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-02 05:50:34 +00:00
|
|
|
return 1;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-04-23 07:11:52 +00:00
|
|
|
_convertDirectionToIcon: function (dir) {
|
|
|
|
if (dir === 'ascending') {
|
|
|
|
return 'icon-sort-up';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'icon-sort-down';
|
2013-05-02 07:09:35 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_convertIntToDirection: function (dir) {
|
|
|
|
if (dir === '-1') {
|
|
|
|
return 'ascending';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'descending';
|
2013-04-23 07:11:52 +00:00
|
|
|
}
|
2013-05-02 05:50:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Backgrid.NzbDronePaginator = Backgrid.Extension.Paginator.extend({
|
|
|
|
|
|
|
|
events: {
|
|
|
|
"click a": "changePage",
|
|
|
|
"click i": "preventLinkClick"
|
|
|
|
},
|
|
|
|
|
|
|
|
windowSize: 1,
|
|
|
|
|
|
|
|
fastForwardHandleLabels: {
|
|
|
|
first: '<i class="icon-fast-backward"></i>',
|
2013-06-07 01:29:54 +00:00
|
|
|
prev : '<i class="icon-backward"></i>',
|
|
|
|
next : '<i class="icon-forward"></i>',
|
|
|
|
last : '<i class="icon-fast-forward"></i>'
|
2013-05-02 05:50:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
changePage: function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var target = $(e.target);
|
|
|
|
|
|
|
|
if (target.closest('li').hasClass('disabled')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-07 01:29:54 +00:00
|
|
|
if (!$(target).is('a')) {
|
2013-05-02 05:50:34 +00:00
|
|
|
target = target.parent('a');
|
|
|
|
}
|
|
|
|
|
|
|
|
var label = target.html();
|
|
|
|
var ffLabels = this.fastForwardHandleLabels;
|
|
|
|
|
|
|
|
var collection = this.collection;
|
|
|
|
|
|
|
|
if (ffLabels) {
|
|
|
|
switch (label) {
|
|
|
|
case ffLabels.first:
|
|
|
|
collection.getFirstPage();
|
|
|
|
return;
|
|
|
|
case ffLabels.prev:
|
|
|
|
if (collection.hasPrevious()) {
|
|
|
|
collection.getPreviousPage();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case ffLabels.next:
|
|
|
|
if (collection.hasNext()) {
|
|
|
|
collection.getNextPage();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case ffLabels.last:
|
|
|
|
collection.getLastPage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var state = collection.state;
|
|
|
|
var pageIndex = $(e.target).text() * 1;
|
2013-06-07 01:29:54 +00:00
|
|
|
collection.getPage(state.firstPage === 0 ? pageIndex - 1 :pageIndex);
|
2013-05-02 05:50:34 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
preventLinkClick: function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2013-06-07 01:29:54 +00:00
|
|
|
});
|