mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-25 01:55:07 +00:00
19 lines
664 B
JavaScript
19 lines
664 B
JavaScript
var vent = require('../vent');
|
|
var Marionette = require('marionette');
|
|
var NamingModel = require('../Settings/MediaManagement/Naming/NamingModel');
|
|
|
|
module.exports = Marionette.ItemView.extend({
|
|
template : 'Rename/RenamePreviewFormatViewTemplate',
|
|
templateHelpers : function(){
|
|
var type = this.model.get('seriesType');
|
|
return {
|
|
rename : this.naming.get('renameEpisodes'),
|
|
format : this.naming.get(type + 'EpisodeFormat')
|
|
};
|
|
},
|
|
initialize : function(){
|
|
this.naming = new NamingModel();
|
|
this.naming.fetch();
|
|
this.listenTo(this.naming, 'sync', this.render);
|
|
}
|
|
}); |