|
|
|
|
|
|
|
|
|
(function( $, wp, _ ) { |
|
|
|
if ( ! wp || ! wp.customize ) { return; } |
|
var api = wp.customize; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
api.HeaderTool.CurrentView = wp.Backbone.View.extend({ |
|
template: wp.template('header-current'), |
|
|
|
initialize: function() { |
|
this.listenTo(this.model, 'change', this.render); |
|
this.render(); |
|
}, |
|
|
|
render: function() { |
|
this.$el.html(this.template(this.model.toJSON())); |
|
this.setButtons(); |
|
return this; |
|
}, |
|
|
|
setButtons: function() { |
|
var elements = $('#customize-control-header_image .actions .remove'); |
|
if (this.model.get('choice')) { |
|
elements.show(); |
|
} else { |
|
elements.hide(); |
|
} |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
api.HeaderTool.ChoiceView = wp.Backbone.View.extend({ |
|
template: wp.template('header-choice'), |
|
|
|
className: 'header-view', |
|
|
|
events: { |
|
'click .choice,.random': 'select', |
|
'click .close': 'removeImage' |
|
}, |
|
|
|
initialize: function() { |
|
var properties = [ |
|
this.model.get('header').url, |
|
this.model.get('choice') |
|
]; |
|
|
|
this.listenTo(this.model, 'change:selected', this.toggleSelected); |
|
|
|
if (_.contains(properties, api.get().header_image)) { |
|
api.HeaderTool.currentHeader.set(this.extendedModel()); |
|
} |
|
}, |
|
|
|
render: function() { |
|
this.$el.html(this.template(this.extendedModel())); |
|
|
|
this.toggleSelected(); |
|
return this; |
|
}, |
|
|
|
toggleSelected: function() { |
|
this.$el.toggleClass('selected', this.model.get('selected')); |
|
}, |
|
|
|
extendedModel: function() { |
|
var c = this.model.get('collection'); |
|
return _.extend(this.model.toJSON(), { |
|
type: c.type |
|
}); |
|
}, |
|
|
|
select: function() { |
|
this.preventJump(); |
|
this.model.save(); |
|
api.HeaderTool.currentHeader.set(this.extendedModel()); |
|
}, |
|
|
|
preventJump: function() { |
|
var container = $('.wp-full-overlay-sidebar-content'), |
|
scroll = container.scrollTop(); |
|
|
|
_.defer(function() { |
|
container.scrollTop(scroll); |
|
}); |
|
}, |
|
|
|
removeImage: function(e) { |
|
e.stopPropagation(); |
|
this.model.destroy(); |
|
this.remove(); |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
api.HeaderTool.ChoiceListView = wp.Backbone.View.extend({ |
|
initialize: function() { |
|
this.listenTo(this.collection, 'add', this.addOne); |
|
this.listenTo(this.collection, 'remove', this.render); |
|
this.listenTo(this.collection, 'sort', this.render); |
|
this.listenTo(this.collection, 'change', this.toggleList); |
|
this.render(); |
|
}, |
|
|
|
render: function() { |
|
this.$el.empty(); |
|
this.collection.each(this.addOne, this); |
|
this.toggleList(); |
|
}, |
|
|
|
addOne: function(choice) { |
|
var view; |
|
choice.set({ collection: this.collection }); |
|
view = new api.HeaderTool.ChoiceView({ model: choice }); |
|
this.$el.append(view.render().el); |
|
}, |
|
|
|
toggleList: function() { |
|
var title = this.$el.parents().prev('.customize-control-title'), |
|
randomButton = this.$el.find('.random').parent(); |
|
if (this.collection.shouldHideTitle()) { |
|
title.add(randomButton).hide(); |
|
} else { |
|
title.add(randomButton).show(); |
|
} |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
api.HeaderTool.CombinedList = wp.Backbone.View.extend({ |
|
initialize: function(collections) { |
|
this.collections = collections; |
|
this.on('all', this.propagate, this); |
|
}, |
|
propagate: function(event, arg) { |
|
_.each(this.collections, function(collection) { |
|
collection.trigger(event, arg); |
|
}); |
|
} |
|
}); |
|
|
|
})( jQuery, window.wp, _ ); |
|
|