2012-02-25 05:12:43 +01:00
|
|
|
(function( exports, $ ){
|
|
|
|
var api = wp.customize;
|
|
|
|
|
2012-03-06 23:48:07 +01:00
|
|
|
/*
|
|
|
|
* @param options
|
|
|
|
* - previewer - The Previewer instance to sync with.
|
2012-04-25 18:04:51 +02:00
|
|
|
* - transport - The transport to use for previewing. Supports 'refresh' and 'postMessage'.
|
2012-03-06 23:48:07 +01:00
|
|
|
*/
|
2012-03-28 06:14:09 +02:00
|
|
|
api.Setting = api.Value.extend({
|
2012-03-06 23:48:07 +01:00
|
|
|
initialize: function( id, value, options ) {
|
2012-03-28 06:14:09 +02:00
|
|
|
var element;
|
2012-03-06 23:48:07 +01:00
|
|
|
|
|
|
|
api.Value.prototype.initialize.call( this, value, options );
|
|
|
|
|
|
|
|
this.id = id;
|
2012-04-25 18:04:51 +02:00
|
|
|
this.transport = this.transport || 'refresh';
|
2012-03-06 23:48:07 +01:00
|
|
|
|
2012-04-04 00:04:40 +02:00
|
|
|
this.bind( this.preview );
|
2012-03-06 23:48:07 +01:00
|
|
|
},
|
2012-04-04 00:04:40 +02:00
|
|
|
preview: function() {
|
2012-04-25 18:04:51 +02:00
|
|
|
switch ( this.transport ) {
|
2012-03-06 23:48:07 +01:00
|
|
|
case 'refresh':
|
|
|
|
return this.previewer.refresh();
|
|
|
|
case 'postMessage':
|
|
|
|
return this.previewer.send( 'setting', [ this.id, this() ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
api.Control = api.Class.extend({
|
|
|
|
initialize: function( id, options ) {
|
|
|
|
var control = this,
|
|
|
|
nodes, radios, settings;
|
|
|
|
|
|
|
|
this.params = {};
|
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
|
|
|
this.id = id;
|
2012-03-28 11:10:29 +02:00
|
|
|
this.selector = '#customize-control-' + id.replace( ']', '' ).replace( '[', '-' );
|
|
|
|
this.container = $( this.selector );
|
2012-03-28 06:14:09 +02:00
|
|
|
|
|
|
|
settings = $.map( this.params.settings, function( value ) {
|
|
|
|
return value;
|
|
|
|
});
|
|
|
|
|
|
|
|
api.apply( api, settings.concat( function() {
|
|
|
|
var key;
|
|
|
|
|
|
|
|
control.settings = {};
|
|
|
|
for ( key in control.params.settings ) {
|
|
|
|
control.settings[ key ] = api( control.params.settings[ key ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
control.setting = control.settings['default'] || null;
|
|
|
|
control.ready();
|
|
|
|
}) );
|
|
|
|
|
|
|
|
control.elements = [];
|
|
|
|
|
|
|
|
nodes = this.container.find('[data-customize-setting-link]');
|
|
|
|
radios = {};
|
|
|
|
|
|
|
|
nodes.each( function() {
|
|
|
|
var node = $(this),
|
|
|
|
name;
|
|
|
|
|
|
|
|
if ( node.is(':radio') ) {
|
|
|
|
name = node.prop('name');
|
|
|
|
if ( radios[ name ] )
|
|
|
|
return;
|
|
|
|
|
|
|
|
radios[ name ] = true;
|
|
|
|
node = nodes.filter( '[name="' + name + '"]' );
|
|
|
|
}
|
|
|
|
|
|
|
|
api( node.data('customizeSettingLink'), function( setting ) {
|
|
|
|
var element = new api.Element( node );
|
|
|
|
control.elements.push( element );
|
2012-04-04 00:04:40 +02:00
|
|
|
element.sync( setting );
|
|
|
|
element.set( setting() );
|
2012-03-28 06:14:09 +02:00
|
|
|
});
|
|
|
|
});
|
2012-04-25 23:03:29 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
ready: function() {},
|
|
|
|
|
|
|
|
dropdownInit: function() {
|
|
|
|
var control = this,
|
|
|
|
statuses = this.container.find('.dropdown-status'),
|
|
|
|
params = this.params,
|
|
|
|
update = function( to ) {
|
|
|
|
if ( typeof to === 'string' && params.statuses && params.statuses[ to ] )
|
|
|
|
statuses.html( params.statuses[ to ] ).show();
|
|
|
|
else
|
|
|
|
statuses.hide();
|
|
|
|
};
|
2012-04-20 04:39:55 +02:00
|
|
|
|
|
|
|
// Support the .dropdown class to open/close complex elements
|
|
|
|
this.container.on( 'click', '.dropdown', function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
control.container.toggleClass('open');
|
|
|
|
});
|
2012-04-25 23:03:29 +02:00
|
|
|
|
|
|
|
this.setting.bind( update );
|
|
|
|
update( this.setting() );
|
|
|
|
}
|
2012-03-28 06:14:09 +02:00
|
|
|
});
|
|
|
|
|
2012-03-06 23:48:07 +01:00
|
|
|
api.ColorControl = api.Control.extend({
|
2012-03-28 06:14:09 +02:00
|
|
|
ready: function() {
|
|
|
|
var control = this,
|
2012-04-20 04:39:55 +02:00
|
|
|
spot, text, update;
|
2012-03-06 23:48:07 +01:00
|
|
|
|
2012-04-25 23:03:29 +02:00
|
|
|
spot = this.container.find('.dropdown-content');
|
2012-03-06 23:48:07 +01:00
|
|
|
update = function( color ) {
|
2012-04-25 23:03:29 +02:00
|
|
|
color = color ? '#' + color : '';
|
2012-04-18 00:58:58 +02:00
|
|
|
spot.css( 'background', color );
|
2012-03-28 06:14:09 +02:00
|
|
|
control.farbtastic.setColor( color );
|
2012-03-06 23:48:07 +01:00
|
|
|
};
|
|
|
|
|
2012-04-18 00:58:58 +02:00
|
|
|
this.farbtastic = $.farbtastic( this.container.find('.farbtastic-placeholder'), function( color ) {
|
2012-03-28 06:14:09 +02:00
|
|
|
control.setting.set( color.replace( '#', '' ) );
|
2012-03-06 23:48:07 +01:00
|
|
|
});
|
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
this.setting.bind( update );
|
|
|
|
update( this.setting() );
|
2012-04-25 23:03:29 +02:00
|
|
|
|
|
|
|
this.dropdownInit();
|
2012-03-06 23:48:07 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-15 05:14:05 +01:00
|
|
|
api.UploadControl = api.Control.extend({
|
2012-03-28 06:14:09 +02:00
|
|
|
ready: function() {
|
2012-03-15 05:14:05 +01:00
|
|
|
var control = this;
|
|
|
|
|
2012-03-24 05:35:13 +01:00
|
|
|
this.params.removed = this.params.removed || '';
|
2012-03-15 05:14:05 +01:00
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
this.success = $.proxy( this.success, this );
|
|
|
|
|
2012-05-10 02:15:53 +02:00
|
|
|
this.uploader = $.extend({
|
2012-05-09 23:26:19 +02:00
|
|
|
container: this.container,
|
|
|
|
browser: this.container.find('.upload'),
|
|
|
|
dropzone: this.container.find('.upload-dropzone'),
|
|
|
|
success: this.success
|
2012-05-10 02:15:53 +02:00
|
|
|
}, this.uploader || {} );
|
|
|
|
|
|
|
|
this.uploader = new wp.Uploader( this.uploader );
|
2012-03-15 05:14:05 +01:00
|
|
|
|
2012-03-22 08:30:44 +01:00
|
|
|
this.remover = this.container.find('.remove');
|
|
|
|
this.remover.click( function( event ) {
|
2012-03-28 06:14:09 +02:00
|
|
|
control.setting.set( control.params.removed );
|
2012-03-15 05:14:05 +01:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
2012-03-22 08:30:44 +01:00
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
this.removerVisibility = $.proxy( this.removerVisibility, this );
|
|
|
|
this.setting.bind( this.removerVisibility );
|
|
|
|
this.removerVisibility( this.setting.get() );
|
2012-03-24 02:02:29 +01:00
|
|
|
|
|
|
|
if ( this.params.context )
|
|
|
|
control.uploader.param( 'post_data[context]', this.params.context );
|
2012-03-22 08:30:44 +01:00
|
|
|
},
|
2012-04-20 04:39:55 +02:00
|
|
|
success: function( attachment ) {
|
|
|
|
this.setting.set( attachment.url );
|
|
|
|
},
|
2012-03-24 05:35:13 +01:00
|
|
|
removerVisibility: function( to ) {
|
|
|
|
this.remover.toggle( to != this.params.removed );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
api.ImageControl = api.UploadControl.extend({
|
2012-03-28 11:33:32 +02:00
|
|
|
ready: function() {
|
2012-04-20 04:39:55 +02:00
|
|
|
var control = this,
|
|
|
|
panels;
|
2012-03-25 23:18:32 +02:00
|
|
|
|
2012-05-10 02:15:53 +02:00
|
|
|
this.uploader = {};
|
|
|
|
if ( ! wp.Uploader.dragdrop )
|
|
|
|
this.uploader.browser = this.container.find( '.upload-fallback' );
|
|
|
|
|
2012-03-28 11:33:32 +02:00
|
|
|
api.UploadControl.prototype.ready.call( this );
|
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
this.thumbnail = this.container.find('.preview-thumbnail img');
|
2012-03-28 06:14:09 +02:00
|
|
|
this.thumbnailSrc = $.proxy( this.thumbnailSrc, this );
|
|
|
|
this.setting.bind( this.thumbnailSrc );
|
2012-03-25 23:18:32 +02:00
|
|
|
|
|
|
|
this.library = this.container.find('.library');
|
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
// Generate tab objects
|
|
|
|
this.tabs = {};
|
|
|
|
panels = this.library.find('.library-content');
|
|
|
|
|
|
|
|
this.library.children('ul').children('li').each( function() {
|
|
|
|
var link = $(this),
|
|
|
|
id = link.data('customizeTab'),
|
|
|
|
panel = panels.filter('[data-customize-tab="' + id + '"]');
|
|
|
|
|
|
|
|
control.tabs[ id ] = {
|
|
|
|
both: link.add( panel ),
|
|
|
|
link: link,
|
|
|
|
panel: panel
|
|
|
|
};
|
2012-03-25 23:18:32 +02:00
|
|
|
});
|
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
// Select a tab
|
|
|
|
this.selected = this.tabs[ panels.first().data('customizeTab') ];
|
|
|
|
this.selected.both.addClass('library-selected');
|
|
|
|
|
|
|
|
// Bind tab switch events
|
|
|
|
this.library.children('ul').on( 'click', 'li', function( event ) {
|
|
|
|
var id = $(this).data('customizeTab'),
|
|
|
|
tab = control.tabs[ id ];
|
2012-03-25 23:18:32 +02:00
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
if ( tab.link.hasClass('library-selected') )
|
2012-03-25 23:18:32 +02:00
|
|
|
return;
|
|
|
|
|
2012-04-20 04:39:55 +02:00
|
|
|
control.selected.both.removeClass('library-selected');
|
|
|
|
control.selected = tab;
|
|
|
|
control.selected.both.addClass('library-selected');
|
2012-03-25 23:18:32 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.library.on( 'click', 'a', function( event ) {
|
2012-04-20 04:39:55 +02:00
|
|
|
var value = $(this).data('customizeImageValue');
|
|
|
|
|
|
|
|
if ( value ) {
|
|
|
|
control.setting.set( value );
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2012-03-25 23:18:32 +02:00
|
|
|
});
|
2012-04-20 04:39:55 +02:00
|
|
|
|
|
|
|
if ( this.tabs.uploaded ) {
|
|
|
|
this.tabs.uploaded.target = this.library.find('.uploaded-target');
|
|
|
|
if ( ! this.tabs.uploaded.panel.find('.thumbnail').length )
|
|
|
|
this.tabs.uploaded.both.addClass('hidden');
|
|
|
|
}
|
2012-04-25 23:03:29 +02:00
|
|
|
|
|
|
|
this.dropdownInit();
|
2012-04-20 04:39:55 +02:00
|
|
|
},
|
|
|
|
success: function( attachment ) {
|
|
|
|
api.UploadControl.prototype.success.call( this, attachment );
|
|
|
|
|
|
|
|
// Add the uploaded image to the uploaded tab.
|
|
|
|
if ( this.tabs.uploaded && this.tabs.uploaded.target.length ) {
|
|
|
|
this.tabs.uploaded.both.removeClass('hidden');
|
|
|
|
|
|
|
|
$( '<a href="#" class="thumbnail"></a>' )
|
|
|
|
.data( 'customizeImageValue', attachment.url )
|
|
|
|
.append( '<img src="' + attachment.url+ '" />' )
|
|
|
|
.appendTo( this.tabs.uploaded.target );
|
|
|
|
}
|
2012-03-24 05:35:13 +01:00
|
|
|
},
|
|
|
|
thumbnailSrc: function( to ) {
|
2012-03-25 23:18:32 +02:00
|
|
|
if ( /^(https?:)?\/\//.test( to ) )
|
2012-03-24 05:35:13 +01:00
|
|
|
this.thumbnail.prop( 'src', to ).show();
|
|
|
|
else
|
|
|
|
this.thumbnail.hide();
|
2012-03-15 05:14:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-03-06 23:48:07 +01:00
|
|
|
// Change objects contained within the main customize object to Settings.
|
|
|
|
api.defaultConstructor = api.Setting;
|
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
// Create the collection of Control objects.
|
|
|
|
api.control = new api.Values({ defaultConstructor: api.Control });
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
api.Previewer = api.Messenger.extend({
|
2012-02-29 02:17:21 +01:00
|
|
|
refreshBuffer: 250,
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
/**
|
|
|
|
* Requires params:
|
2012-04-30 17:46:17 +02:00
|
|
|
* - container - a selector or jQuery element
|
|
|
|
* - url - the URL of preview frame
|
2012-02-25 05:12:43 +01:00
|
|
|
*/
|
|
|
|
initialize: function( params, options ) {
|
2012-05-24 21:17:49 +02:00
|
|
|
var self = this,
|
|
|
|
rscheme = /^https?/;
|
2012-04-16 16:02:28 +02:00
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
$.extend( this, options || {} );
|
|
|
|
|
2012-02-29 23:24:46 +01:00
|
|
|
this.loaded = $.proxy( this.loaded, this );
|
|
|
|
|
2012-02-29 02:17:21 +01:00
|
|
|
/*
|
|
|
|
* 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-05-24 21:17:49 +02:00
|
|
|
this.container = api.ensure( params.container );
|
|
|
|
this.allowedUrls = params.allowedUrls;
|
2012-02-29 02:17:21 +01:00
|
|
|
|
2012-04-30 17:46:17 +02:00
|
|
|
api.Messenger.prototype.initialize.call( this, params.url );
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-05-08 22:13:34 +02:00
|
|
|
// We're dynamically generating the iframe, so the origin is set
|
|
|
|
// to the current window's location, not the url's.
|
|
|
|
this.origin.unlink( this.url ).set( window.location.href );
|
|
|
|
|
2012-05-24 21:17:49 +02:00
|
|
|
this.add( 'scheme', this.origin() ).link( this.origin ).setter( function( to ) {
|
|
|
|
var match = to.match( rscheme );
|
|
|
|
return match ? match[0] : '';
|
|
|
|
});
|
|
|
|
|
2012-05-24 03:48:32 +02:00
|
|
|
// Limit the URL to internal, front-end links.
|
2012-05-24 21:17:49 +02:00
|
|
|
//
|
|
|
|
// If the frontend and the admin are served from the same domain, load the
|
|
|
|
// preview over ssl if the customizer is being loaded over ssl. This avoids
|
|
|
|
// insecure content warnings. This is not attempted if the admin and frontend
|
|
|
|
// are on different domains to avoid the case where the frontend doesn't have
|
|
|
|
// ssl certs.
|
|
|
|
|
2012-05-24 03:48:32 +02:00
|
|
|
this.url.setter( function( to ) {
|
2012-05-24 21:17:49 +02:00
|
|
|
var result;
|
|
|
|
|
|
|
|
// Check for URLs that include "/wp-admin/" or end in "/wp-admin".
|
|
|
|
// Strip hashes and query strings before testing.
|
|
|
|
if ( /\/wp-admin(\/|$)/.test( to.replace(/[#?].*$/, '') ) )
|
2012-05-24 03:48:32 +02:00
|
|
|
return null;
|
|
|
|
|
2012-05-24 21:17:49 +02:00
|
|
|
// Attempt to match the URL to the control frame's scheme
|
|
|
|
// and check if it's allowed. If not, try the original URL.
|
|
|
|
$.each([ to.replace( rscheme, self.scheme() ), to ], function( i, url ) {
|
|
|
|
$.each( self.allowedUrls, function( i, allowed ) {
|
|
|
|
if ( 0 === url.indexOf( allowed ) ) {
|
|
|
|
result = url;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ( result )
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// If we found a matching result, return it. If not, bail.
|
|
|
|
return result ? result : null;
|
2012-05-24 03:48:32 +02:00
|
|
|
});
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-05-24 03:48:32 +02:00
|
|
|
// Refresh the preview when the URL is changed.
|
|
|
|
this.url.bind( this.refresh );
|
|
|
|
|
|
|
|
this.scroll = 0;
|
|
|
|
this.bind( 'scroll', function( distance ) {
|
|
|
|
this.scroll = distance;
|
2012-02-25 05:12:43 +01:00
|
|
|
});
|
2012-05-24 03:48:32 +02:00
|
|
|
|
|
|
|
// Update the URL when the iframe sends a URL message.
|
|
|
|
this.bind( 'url', this.url );
|
2012-02-25 05:12:43 +01:00
|
|
|
},
|
2012-02-29 02:17:21 +01:00
|
|
|
loader: function() {
|
|
|
|
if ( this.loading )
|
|
|
|
return this.loading;
|
|
|
|
|
2012-04-30 17:46:17 +02:00
|
|
|
this.loading = $('<iframe />').appendTo( this.container );
|
2012-02-29 02:17:21 +01:00
|
|
|
|
|
|
|
return this.loading;
|
|
|
|
},
|
2012-02-29 23:24:46 +01:00
|
|
|
loaded: function() {
|
2012-04-30 17:46:17 +02:00
|
|
|
if ( this.iframe )
|
|
|
|
this.iframe.remove();
|
2012-05-09 02:23:05 +02:00
|
|
|
|
2012-02-29 23:24:46 +01:00
|
|
|
this.iframe = this.loading;
|
|
|
|
delete this.loading;
|
2012-04-30 17:46:17 +02:00
|
|
|
|
2012-03-06 03:49:02 +01:00
|
|
|
this.targetWindow( this.iframe[0].contentWindow );
|
2012-05-09 02:23:05 +02:00
|
|
|
this.send( 'scroll', this.scroll );
|
2012-02-29 23:24:46 +01:00
|
|
|
},
|
2012-04-30 17:46:17 +02:00
|
|
|
query: function() {},
|
2012-02-25 05:12:43 +01:00
|
|
|
refresh: function() {
|
2012-04-30 17:46:17 +02:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if ( this.request )
|
|
|
|
this.request.abort();
|
|
|
|
|
2012-05-08 22:13:34 +02:00
|
|
|
this.request = $.ajax( this.url(), {
|
|
|
|
type: 'POST',
|
|
|
|
data: this.query() || {},
|
|
|
|
success: function( response ) {
|
2012-05-24 03:48:32 +02:00
|
|
|
var iframe = self.loader()[0].contentWindow,
|
|
|
|
location = self.request.getResponseHeader('Location');
|
|
|
|
|
|
|
|
// Check if the location response header differs from the current URL.
|
|
|
|
// If so, the request was redirected; try loading the requested page.
|
|
|
|
if ( location && location != self.url() ) {
|
|
|
|
self.url( location );
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 17:46:17 +02:00
|
|
|
|
2012-05-08 22:13:34 +02:00
|
|
|
self.loader().one( 'load', self.loaded );
|
2012-02-29 23:24:46 +01:00
|
|
|
|
2012-05-08 22:13:34 +02:00
|
|
|
iframe.document.open();
|
|
|
|
iframe.document.write( response );
|
|
|
|
iframe.document.close();
|
|
|
|
},
|
|
|
|
xhrFields: {
|
|
|
|
withCredentials: true
|
|
|
|
}
|
|
|
|
} );
|
2012-02-25 05:12:43 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/* =====================================================================
|
|
|
|
* Ready.
|
|
|
|
* ===================================================================== */
|
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
api.controlConstructor = {
|
2012-03-15 05:14:05 +01:00
|
|
|
color: api.ColorControl,
|
2012-03-24 05:35:13 +01:00
|
|
|
upload: api.UploadControl,
|
|
|
|
image: api.ImageControl
|
2012-03-06 23:48:07 +01:00
|
|
|
};
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
$( function() {
|
2012-05-07 22:03:39 +02:00
|
|
|
api.settings = window._wpCustomizeSettings;
|
2012-05-16 07:55:54 +02:00
|
|
|
api.l10n = window._wpCustomizeControlsL10n;
|
|
|
|
|
2012-02-29 02:17:21 +01:00
|
|
|
if ( ! api.settings )
|
|
|
|
return;
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
// Initialize Previewer
|
2012-04-16 16:02:28 +02:00
|
|
|
var body = $( document.body ),
|
2012-04-30 17:46:17 +02:00
|
|
|
query, previewer, parent;
|
|
|
|
|
|
|
|
// Prevent the form from saving when enter is pressed.
|
|
|
|
$('#customize-controls').on( 'keydown', function( e ) {
|
|
|
|
if ( 13 === e.which ) // Enter
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
previewer = new api.Previewer({
|
2012-05-24 21:17:49 +02:00
|
|
|
container: '#customize-preview',
|
|
|
|
form: '#customize-controls',
|
|
|
|
url: api.settings.url.preview,
|
|
|
|
allowedUrls: api.settings.url.allowed
|
2012-04-30 17:46:17 +02:00
|
|
|
}, {
|
|
|
|
query: function() {
|
|
|
|
return {
|
|
|
|
customize: 'on',
|
2012-05-16 07:55:54 +02:00
|
|
|
theme: api.settings.theme.stylesheet,
|
2012-04-30 17:46:17 +02:00
|
|
|
customized: JSON.stringify( api.get() )
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
nonce: $('#_wpnonce').val(),
|
|
|
|
|
|
|
|
save: function() {
|
|
|
|
var query = $.extend( this.query(), {
|
|
|
|
action: 'customize_save',
|
|
|
|
nonce: this.nonce
|
|
|
|
}),
|
2012-05-16 07:55:54 +02:00
|
|
|
request = $.post( api.settings.url.ajax, query );
|
|
|
|
|
|
|
|
api.trigger( 'save', request );
|
2012-04-30 17:46:17 +02:00
|
|
|
|
|
|
|
body.addClass('saving');
|
|
|
|
request.always( function() {
|
|
|
|
body.removeClass('saving');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2012-02-25 05:12:43 +01:00
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
$.each( api.settings.settings, function( id, data ) {
|
2012-05-16 00:14:46 +02:00
|
|
|
api.create( id, id, data.value, {
|
2012-04-25 18:04:51 +02:00
|
|
|
transport: data.transport,
|
2012-03-28 06:14:09 +02:00
|
|
|
previewer: previewer
|
|
|
|
} );
|
|
|
|
});
|
|
|
|
|
2012-03-06 23:48:07 +01:00
|
|
|
$.each( api.settings.controls, function( id, data ) {
|
2012-03-28 06:14:09 +02:00
|
|
|
var constructor = api.controlConstructor[ data.type ] || api.Control,
|
2012-03-22 08:17:26 +01:00
|
|
|
control;
|
|
|
|
|
2012-03-28 06:14:09 +02:00
|
|
|
control = api.control.add( id, new constructor( id, {
|
2012-03-29 08:35:54 +02:00
|
|
|
params: data,
|
2012-03-06 23:48:07 +01:00
|
|
|
previewer: previewer
|
|
|
|
} ) );
|
2012-02-25 05:12:43 +01:00
|
|
|
});
|
|
|
|
|
2012-04-30 17:46:17 +02:00
|
|
|
// Load the preview frame.
|
|
|
|
previewer.refresh();
|
|
|
|
|
2012-02-25 05:12:43 +01:00
|
|
|
// Temporary accordion code.
|
2012-03-04 03:06:11 +01:00
|
|
|
$('.customize-section-title').click( function() {
|
2012-05-21 21:53:22 +02:00
|
|
|
var clicked = $( this ).parents( '.customize-section' );
|
|
|
|
$( '.customize-section' ).not( clicked ).removeClass( 'open' );
|
|
|
|
clicked.toggleClass( 'open' );
|
2012-02-25 05:12:43 +01:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Button bindings.
|
2012-04-16 16:02:28 +02:00
|
|
|
$('#save').click( function( event ) {
|
2012-04-30 17:46:17 +02:00
|
|
|
previewer.save();
|
2012-04-16 16:02:28 +02:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.collapse-sidebar').click( function( event ) {
|
|
|
|
body.toggleClass( 'collapsed' );
|
|
|
|
event.preventDefault();
|
2012-02-25 05:12:43 +01:00
|
|
|
});
|
|
|
|
|
2012-04-30 17:46:17 +02:00
|
|
|
// Create a potential postMessage connection with the parent frame.
|
2012-05-16 07:55:54 +02:00
|
|
|
parent = new api.Messenger( api.settings.url.parent );
|
2012-04-30 17:46:17 +02:00
|
|
|
|
|
|
|
// If we receive a 'back' event, we're inside an iframe.
|
|
|
|
// Send any clicks to the 'Return' link to the parent page.
|
2012-05-24 05:29:51 +02:00
|
|
|
parent.bind( 'back', function() {
|
|
|
|
$('.back').on( 'click.back', function( event ) {
|
2012-04-30 17:46:17 +02:00
|
|
|
event.preventDefault();
|
|
|
|
parent.send( 'close' );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-05-16 07:55:54 +02:00
|
|
|
// If the current theme isn't active, it will be activated on save,
|
|
|
|
// rendering the previous page
|
|
|
|
api.bind( 'save', function( request ) {
|
|
|
|
request.done( function() {
|
|
|
|
parent.send( 'saved' );
|
|
|
|
|
|
|
|
if ( ! api.settings.theme.active ) {
|
|
|
|
parent.send( 'switched' );
|
|
|
|
$('#save').val( api.l10n.save );
|
|
|
|
}
|
|
|
|
|
|
|
|
api.settings.theme.active = true;
|
|
|
|
});
|
|
|
|
} );
|
|
|
|
|
2012-04-30 17:46:17 +02:00
|
|
|
// Initialize the connection with the parent frame.
|
|
|
|
parent.send( 'ready' );
|
|
|
|
|
2012-04-18 19:13:31 +02:00
|
|
|
// Control visibility for default controls
|
|
|
|
$.each({
|
|
|
|
'background_image': {
|
|
|
|
controls: [ 'background_repeat', 'background_position_x', 'background_attachment' ],
|
|
|
|
callback: function( to ) { return !! to }
|
|
|
|
},
|
|
|
|
'show_on_front': {
|
|
|
|
controls: [ 'page_on_front', 'page_for_posts' ],
|
|
|
|
callback: function( to ) { return 'page' === to }
|
|
|
|
},
|
|
|
|
'header_textcolor': {
|
|
|
|
controls: [ 'header_textcolor' ],
|
|
|
|
callback: function( to ) { return 'blank' !== to }
|
|
|
|
}
|
|
|
|
}, function( settingId, o ) {
|
|
|
|
api( settingId, function( setting ) {
|
|
|
|
$.each( o.controls, function( i, controlId ) {
|
|
|
|
api.control( controlId, function( control ) {
|
|
|
|
var visibility = function( to ) {
|
|
|
|
control.container.toggle( o.callback( to ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
visibility( setting.get() );
|
|
|
|
setting.bind( visibility );
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Juggle the two controls that use header_textcolor
|
2012-03-28 06:14:09 +02:00
|
|
|
api.control( 'display_header_text', function( control ) {
|
|
|
|
var last = '';
|
|
|
|
|
2012-04-04 00:04:40 +02:00
|
|
|
control.elements[0].unsync( api( 'header_textcolor' ) );
|
2012-03-28 06:14:09 +02:00
|
|
|
|
|
|
|
control.element = new api.Element( control.container.find('input') );
|
|
|
|
control.element.set( 'blank' !== control.setting() );
|
|
|
|
|
|
|
|
control.element.bind( function( to ) {
|
|
|
|
if ( ! to )
|
2012-05-16 00:14:46 +02:00
|
|
|
last = api( 'header_textcolor' ).get();
|
2012-03-28 06:14:09 +02:00
|
|
|
|
|
|
|
control.setting.set( to ? last : 'blank' );
|
|
|
|
});
|
|
|
|
|
|
|
|
control.setting.bind( function( to ) {
|
|
|
|
control.element.set( 'blank' !== to );
|
|
|
|
});
|
|
|
|
});
|
2012-05-17 02:00:57 +02:00
|
|
|
|
|
|
|
api.trigger( 'ready' );
|
2012-02-25 05:12:43 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
})( wp, jQuery );
|