2013-06-24 23:41:59 +00:00
|
|
|
|
'use strict';
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
define(
|
|
|
|
|
[
|
|
|
|
|
'app',
|
2013-07-24 04:16:52 +00:00
|
|
|
|
'marionette'
|
|
|
|
|
], function (App, Marionette) {
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
return Marionette.ItemView.extend({
|
|
|
|
|
tagName : 'li',
|
|
|
|
|
template: 'Series/Index/Posters/ItemTemplate',
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
ui: {
|
|
|
|
|
'progressbar': '.progress .bar',
|
|
|
|
|
'controls' : '.series-controls'
|
|
|
|
|
},
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
events: {
|
|
|
|
|
'click .x-edit' : 'editSeries',
|
|
|
|
|
'click .x-remove' : 'removeSeries',
|
|
|
|
|
'mouseenter .x-series-poster': 'posterHoverAction',
|
|
|
|
|
'mouseleave .x-series-poster': 'posterHoverAction'
|
|
|
|
|
},
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
editSeries: function () {
|
2013-07-24 04:16:52 +00:00
|
|
|
|
App.vent.trigger(App.Commands.EditSeriesCommand, {series:this.model});
|
2013-06-24 23:41:59 +00:00
|
|
|
|
},
|
2013-04-24 03:11:45 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
removeSeries: function () {
|
2013-07-24 04:16:52 +00:00
|
|
|
|
App.vent.trigger(App.Commands.DeleteSeriesCommand, {series:this.model});
|
2013-06-24 23:41:59 +00:00
|
|
|
|
},
|
2013-04-25 18:58:38 +00:00
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
|
posterHoverAction: function () {
|
|
|
|
|
this.ui.controls.slideToggle();
|
|
|
|
|
}
|
|
|
|
|
});
|
2013-04-24 03:11:45 +00:00
|
|
|
|
});
|