2012-02-24 23:12:43 -05:00
|
|
|
(function( exports, $ ){
|
|
|
|
var api = wp.customize;
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
/*
|
|
|
|
* @param options
|
|
|
|
* - previewer - The Previewer instance to sync with.
|
|
|
|
* - method - The method to use for syncing. Supports 'refresh' and 'postMessage'.
|
|
|
|
*/
|
|
|
|
api.Control = api.Value.extend({
|
|
|
|
initialize: function( id, value, options ) {
|
|
|
|
var name = '[name="' + api.settings.prefix + id + '"]';
|
|
|
|
|
|
|
|
api.Value.prototype.initialize.call( this, value, options );
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
this.container = $( '#customize-control-' + id );
|
|
|
|
this.element = this.element || new api.Element( this.container.find( name ) );
|
|
|
|
|
|
|
|
this.method = this.method || 'refresh';
|
|
|
|
|
|
|
|
this.element.link( this );
|
|
|
|
this.link( this.element );
|
|
|
|
|
|
|
|
this.bind( this.sync );
|
|
|
|
},
|
|
|
|
sync: function() {
|
|
|
|
switch ( this.method ) {
|
|
|
|
case 'refresh':
|
|
|
|
return this.previewer.refresh();
|
|
|
|
case 'postMessage':
|
|
|
|
return this.previewer.send( 'setting', [ this.id, this() ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
api.ColorControl = api.Control.extend({
|
|
|
|
initialize: function( id, value, options ) {
|
|
|
|
var self = this,
|
|
|
|
picker, ui, text, toggle, update;
|
|
|
|
|
|
|
|
api.Control.prototype.initialize.call( this, id, value, options );
|
|
|
|
|
|
|
|
picker = this.container.find( '.color-picker' );
|
|
|
|
ui = picker.find( '.color-picker-controls' );
|
|
|
|
toggle = picker.find( 'a' );
|
|
|
|
update = function( color ) {
|
|
|
|
color = '#' + color;
|
|
|
|
toggle.css( 'background', color );
|
|
|
|
self.farbtastic.setColor( color );
|
|
|
|
};
|
|
|
|
|
|
|
|
this.input = new api.Element( ui.find( 'input' ) ); // Find text input.
|
|
|
|
|
|
|
|
this.link( this.input );
|
|
|
|
this.input.link( this );
|
|
|
|
|
|
|
|
picker.on( 'click', 'a', function() {
|
|
|
|
ui.toggle();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.farbtastic = $.farbtastic( picker.find('.farbtastic-placeholder'), function( color ) {
|
|
|
|
self.set( color.replace( '#', '' ) );
|
|
|
|
});
|
|
|
|
|
|
|
|
this.bind( update );
|
|
|
|
update( this() );
|
|
|
|
},
|
|
|
|
validate: function( to ) {
|
|
|
|
return /^[a-fA-F0-9]{3}([a-fA-F0-9]{3})?$/.test( to ) ? to : null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Change objects contained within the main customize object to Settings.
|
|
|
|
api.defaultConstructor = api.Setting;
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
api.Previewer = api.Messenger.extend({
|
2012-02-28 20:17:21 -05:00
|
|
|
refreshBuffer: 250,
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
/**
|
|
|
|
* Requires params:
|
|
|
|
* - iframe - a selector or jQuery element
|
|
|
|
* - form - a selector or jQuery element
|
|
|
|
* - url - the URL of preview frame
|
|
|
|
*/
|
|
|
|
initialize: function( params, options ) {
|
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
2012-02-29 17:24:46 -05:00
|
|
|
this.loaded = $.proxy( this.loaded, this );
|
|
|
|
|
2012-02-28 20:17:21 -05:00
|
|
|
this.loaderUuid = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wrap this.refresh to prevent it from hammering the servers:
|
|
|
|
*
|
|
|
|
* If refresh is called once and no other refresh requests are
|
|
|
|
* loading, trigger the request immediately.
|
|
|
|
*
|
|
|
|
* If refresh is called while another refresh request is loading,
|
|
|
|
* debounce the refresh requests:
|
|
|
|
* 1. Stop the loading request (as it is instantly outdated).
|
|
|
|
* 2. Trigger the new request once refresh hasn't been called for
|
|
|
|
* self.refreshBuffer milliseconds.
|
|
|
|
*/
|
|
|
|
this.refresh = (function( self ) {
|
|
|
|
var refresh = self.refresh,
|
|
|
|
callback = function() {
|
|
|
|
timeout = null;
|
|
|
|
refresh.call( self );
|
|
|
|
},
|
|
|
|
timeout;
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
if ( typeof timeout !== 'number' ) {
|
|
|
|
if ( self.loading ) {
|
|
|
|
self.loading.remove();
|
|
|
|
delete self.loading;
|
|
|
|
self.loader();
|
|
|
|
} else {
|
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
clearTimeout( timeout );
|
|
|
|
timeout = setTimeout( callback, self.refreshBuffer );
|
|
|
|
};
|
|
|
|
})( this );
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
this.iframe = api.ensure( params.iframe );
|
|
|
|
this.form = api.ensure( params.form );
|
2012-02-29 17:24:46 -05:00
|
|
|
this.name = this.iframe.prop('name');
|
2012-02-24 23:12:43 -05:00
|
|
|
|
2012-02-28 20:17:21 -05:00
|
|
|
this.container = this.iframe.parent();
|
|
|
|
|
2012-03-05 21:49:02 -05:00
|
|
|
api.Messenger.prototype.initialize.call( this, params.url, this.iframe[0].contentWindow );
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
this._formOriginalProps = {
|
|
|
|
target: this.form.prop('target'),
|
|
|
|
action: this.form.prop('action')
|
|
|
|
};
|
|
|
|
|
|
|
|
this.bind( 'url', function( url ) {
|
|
|
|
// Bail if we're navigating to the current url, to a different origin, or wp-admin.
|
|
|
|
if ( this.url() == url || 0 !== url.indexOf( this.origin() + '/' ) || -1 !== url.indexOf( 'wp-admin' ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.url( url );
|
|
|
|
this.refresh();
|
|
|
|
});
|
|
|
|
|
|
|
|
this.refresh();
|
2012-02-29 01:28:02 -05:00
|
|
|
|
|
|
|
// Prevent the form from saving when enter is pressed.
|
|
|
|
this.form.on( 'keydown', function( e ) {
|
|
|
|
if ( 13 === e.which ) // Enter
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
2012-02-24 23:12:43 -05:00
|
|
|
},
|
2012-02-28 20:17:21 -05:00
|
|
|
loader: function() {
|
|
|
|
if ( this.loading )
|
|
|
|
return this.loading;
|
|
|
|
|
|
|
|
this.loading = $('<iframe />', {
|
2012-02-29 17:24:46 -05:00
|
|
|
name: this.name + '-loading-' + this.loaderUuid++
|
2012-02-28 20:17:21 -05:00
|
|
|
}).appendTo( this.container );
|
|
|
|
|
|
|
|
return this.loading;
|
|
|
|
},
|
2012-02-29 17:24:46 -05:00
|
|
|
loaded: function() {
|
|
|
|
this.iframe.remove();
|
|
|
|
this.iframe = this.loading;
|
|
|
|
delete this.loading;
|
|
|
|
this.iframe.prop( 'name', this.name );
|
2012-03-05 21:49:02 -05:00
|
|
|
this.targetWindow( this.iframe[0].contentWindow );
|
2012-02-29 17:24:46 -05:00
|
|
|
},
|
2012-02-24 23:12:43 -05:00
|
|
|
refresh: function() {
|
2012-02-29 17:24:46 -05:00
|
|
|
this.loader().one( 'load', this.loaded );
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
this.submit({
|
2012-02-28 20:17:21 -05:00
|
|
|
target: this.loader().prop('name'),
|
2012-02-24 23:12:43 -05:00
|
|
|
action: this.url()
|
|
|
|
});
|
|
|
|
},
|
|
|
|
submit: function( props ) {
|
|
|
|
if ( props )
|
|
|
|
this.form.prop( props );
|
|
|
|
this.form.submit();
|
|
|
|
if ( props )
|
|
|
|
this.form.prop( this._formOriginalProps );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* =====================================================================
|
|
|
|
* Ready.
|
|
|
|
* ===================================================================== */
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
api.controls = {
|
|
|
|
color: api.ColorControl
|
|
|
|
};
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
$( function() {
|
2012-02-28 20:17:21 -05:00
|
|
|
if ( ! api.settings )
|
|
|
|
return;
|
|
|
|
|
2012-02-24 23:12:43 -05:00
|
|
|
// Initialize Previewer
|
2012-03-06 17:48:07 -05:00
|
|
|
var previewer = new api.Previewer({
|
2012-02-24 23:12:43 -05:00
|
|
|
iframe: '#customize-preview iframe',
|
|
|
|
form: '#customize-controls',
|
|
|
|
url: api.settings.preview
|
|
|
|
});
|
|
|
|
|
2012-03-06 17:48:07 -05:00
|
|
|
$.each( api.settings.controls, function( id, data ) {
|
|
|
|
var constructor = api.controls[ data.control ] || api.Control;
|
|
|
|
api.add( id, new constructor( id, data.value, {
|
|
|
|
previewer: previewer
|
|
|
|
} ) );
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// Temporary accordion code.
|
2012-03-03 21:06:11 -05:00
|
|
|
$('.customize-section-title').click( function() {
|
|
|
|
$( this ).parents('.customize-section').toggleClass( 'open' );
|
2012-02-24 23:12:43 -05:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Button bindings.
|
|
|
|
$('#save').click( function() {
|
|
|
|
previewer.submit();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2012-03-05 21:49:02 -05:00
|
|
|
// Background color uses postMessage by default
|
2012-03-06 17:48:07 -05:00
|
|
|
api('background_color').method = 'postMessage';
|
2012-02-24 23:12:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
})( wp, jQuery );
|