mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
21 lines
653 B
JavaScript
21 lines
653 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);
|
|
}
|
|
}); |