2012-04-09 21:19:30 -04:00
|
|
|
var postboxes;
|
2011-08-22 15:41:11 -04:00
|
|
|
|
2009-01-02 10:08:58 -05:00
|
|
|
(function($) {
|
|
|
|
postboxes = {
|
2011-09-21 02:16:24 -04:00
|
|
|
add_postbox_toggles : function(page, args) {
|
2012-03-23 17:41:00 -04:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
self.init(page, args);
|
2011-09-21 02:16:24 -04:00
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
$('.postbox h3, .postbox .handlediv').bind('click.postboxes', function() {
|
2009-06-20 06:30:09 -04:00
|
|
|
var p = $(this).parent('.postbox'), id = p.attr('id');
|
2011-09-21 02:16:24 -04:00
|
|
|
|
2011-05-18 13:06:04 -04:00
|
|
|
if ( 'dashboard_browser_nag' == id )
|
|
|
|
return;
|
2010-03-02 13:06:14 -05:00
|
|
|
|
2009-03-25 10:29:22 -04:00
|
|
|
p.toggleClass('closed');
|
2012-03-23 17:41:00 -04:00
|
|
|
|
|
|
|
if ( page != 'press-this' )
|
|
|
|
self.save_state(page);
|
2011-09-21 02:16:24 -04:00
|
|
|
|
2009-06-20 06:30:09 -04:00
|
|
|
if ( id ) {
|
|
|
|
if ( !p.hasClass('closed') && $.isFunction(postboxes.pbshow) )
|
2012-03-23 17:41:00 -04:00
|
|
|
self.pbshow(id);
|
2009-06-20 06:30:09 -04:00
|
|
|
else if ( p.hasClass('closed') && $.isFunction(postboxes.pbhide) )
|
2012-03-23 17:41:00 -04:00
|
|
|
self.pbhide(id);
|
2009-06-20 06:30:09 -04:00
|
|
|
}
|
2011-09-21 02:16:24 -04:00
|
|
|
});
|
|
|
|
|
2009-01-02 10:08:58 -05:00
|
|
|
$('.postbox h3 a').click( function(e) {
|
|
|
|
e.stopPropagation();
|
2011-09-21 02:16:24 -04:00
|
|
|
});
|
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
$('.postbox a.dismiss').bind('click.postboxes', function(e) {
|
2011-05-11 23:33:27 -04:00
|
|
|
var hide_id = $(this).parents('.postbox').attr('id') + '-hide';
|
2011-05-24 21:04:12 -04:00
|
|
|
$( '#' + hide_id ).prop('checked', false).triggerHandler('click');
|
2011-05-11 23:33:27 -04:00
|
|
|
return false;
|
2011-09-21 02:16:24 -04:00
|
|
|
});
|
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
$('.hide-postbox-tog').bind('click.postboxes', function() {
|
2009-03-25 10:29:22 -04:00
|
|
|
var box = $(this).val();
|
2010-03-02 13:06:14 -05:00
|
|
|
|
2011-05-24 21:04:12 -04:00
|
|
|
if ( $(this).prop('checked') ) {
|
2009-03-25 10:29:22 -04:00
|
|
|
$('#' + box).show();
|
2009-01-02 10:08:58 -05:00
|
|
|
if ( $.isFunction( postboxes.pbshow ) )
|
2012-03-23 17:41:00 -04:00
|
|
|
self.pbshow( box );
|
2009-01-02 10:08:58 -05:00
|
|
|
} else {
|
2009-03-25 10:29:22 -04:00
|
|
|
$('#' + box).hide();
|
2009-01-02 10:08:58 -05:00
|
|
|
if ( $.isFunction( postboxes.pbhide ) )
|
2012-03-23 17:41:00 -04:00
|
|
|
self.pbhide( box );
|
2009-01-02 10:08:58 -05:00
|
|
|
}
|
2012-03-23 17:41:00 -04:00
|
|
|
self.save_state(page);
|
|
|
|
self._mark_area();
|
2011-09-21 02:16:24 -04:00
|
|
|
});
|
2011-09-14 03:02:46 -04:00
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
$('.columns-prefs input[type="radio"]').bind('click.postboxes', function(){
|
2012-03-23 17:41:00 -04:00
|
|
|
var n = parseInt($(this).val(), 10);
|
2011-08-25 18:55:39 -04:00
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
if ( n ) {
|
2012-03-23 17:41:00 -04:00
|
|
|
self._pb_edit(n);
|
|
|
|
self.save_order(page);
|
2009-02-23 21:37:22 -05:00
|
|
|
}
|
|
|
|
});
|
2009-01-02 10:08:58 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
init : function(page, args) {
|
2012-05-01 18:50:47 -04:00
|
|
|
var isMobile = $(document.body).hasClass('mobile');
|
|
|
|
|
2009-01-02 10:08:58 -05:00
|
|
|
$.extend( this, args || {} );
|
|
|
|
$('#wpbody-content').css('overflow','hidden');
|
2009-03-25 10:29:22 -04:00
|
|
|
$('.meta-box-sortables').sortable({
|
2009-01-02 10:08:58 -05:00
|
|
|
placeholder: 'sortable-placeholder',
|
2009-03-25 10:29:22 -04:00
|
|
|
connectWith: '.meta-box-sortables',
|
|
|
|
items: '.postbox',
|
2009-01-02 10:08:58 -05:00
|
|
|
handle: '.hndle',
|
2009-03-25 10:29:22 -04:00
|
|
|
cursor: 'move',
|
2012-05-01 18:50:47 -04:00
|
|
|
delay: ( isMobile ? 200 : 0 ),
|
2009-01-02 10:08:58 -05:00
|
|
|
distance: 2,
|
|
|
|
tolerance: 'pointer',
|
2009-03-25 10:29:22 -04:00
|
|
|
forcePlaceholderSize: true,
|
|
|
|
helper: 'clone',
|
|
|
|
opacity: 0.65,
|
2009-02-23 21:37:22 -05:00
|
|
|
stop: function(e,ui) {
|
2011-06-12 20:24:47 -04:00
|
|
|
if ( $(this).find('#dashboard_browser_nag').is(':visible') && 'dashboard_browser_nag' != this.firstChild.id ) {
|
|
|
|
$(this).sortable('cancel');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-23 21:37:22 -05:00
|
|
|
postboxes.save_order(page);
|
2011-06-12 20:24:47 -04:00
|
|
|
},
|
|
|
|
receive: function(e,ui) {
|
|
|
|
if ( 'dashboard_browser_nag' == ui.item[0].id )
|
|
|
|
$(ui.sender).sortable('cancel');
|
2011-10-06 04:43:01 -04:00
|
|
|
|
2011-10-08 20:05:38 -04:00
|
|
|
postboxes._mark_area();
|
2009-01-02 10:08:58 -05:00
|
|
|
}
|
2009-03-28 04:21:43 -04:00
|
|
|
});
|
2011-10-10 00:19:05 -04:00
|
|
|
|
2012-05-01 18:50:47 -04:00
|
|
|
if ( isMobile ) {
|
2012-03-23 17:41:00 -04:00
|
|
|
$(document.body).bind('orientationchange.postboxes', function(){ postboxes._pb_change(); });
|
2011-10-10 00:19:05 -04:00
|
|
|
this._pb_change();
|
|
|
|
}
|
|
|
|
|
2011-10-08 20:05:38 -04:00
|
|
|
this._mark_area();
|
2009-01-02 10:08:58 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
save_state : function(page) {
|
|
|
|
var closed = $('.postbox').filter('.closed').map(function() { return this.id; }).get().join(','),
|
2010-03-02 13:06:14 -05:00
|
|
|
hidden = $('.postbox').filter(':hidden').map(function() { return this.id; }).get().join(',');
|
|
|
|
|
2009-10-13 06:02:42 -04:00
|
|
|
$.post(ajaxurl, {
|
2009-01-02 10:08:58 -05:00
|
|
|
action: 'closed-postboxes',
|
|
|
|
closed: closed,
|
|
|
|
hidden: hidden,
|
|
|
|
closedpostboxesnonce: jQuery('#closedpostboxesnonce').val(),
|
|
|
|
page: page
|
|
|
|
});
|
|
|
|
},
|
2009-03-25 10:29:22 -04:00
|
|
|
|
2009-02-23 21:37:22 -05:00
|
|
|
save_order : function(page) {
|
|
|
|
var postVars, page_columns = $('.columns-prefs input:checked').val() || 0;
|
2010-03-02 13:06:14 -05:00
|
|
|
|
2009-02-23 21:37:22 -05:00
|
|
|
postVars = {
|
|
|
|
action: 'meta-box-order',
|
|
|
|
_ajax_nonce: $('#meta-box-order-nonce').val(),
|
|
|
|
page_columns: page_columns,
|
|
|
|
page: page
|
|
|
|
}
|
|
|
|
$('.meta-box-sortables').each( function() {
|
|
|
|
postVars["order[" + this.id.split('-')[0] + "]"] = $(this).sortable( 'toArray' ).join(',');
|
|
|
|
} );
|
2009-10-13 06:02:42 -04:00
|
|
|
$.post( ajaxurl, postVars );
|
2009-02-23 21:37:22 -05:00
|
|
|
},
|
2011-09-14 03:02:46 -04:00
|
|
|
|
2011-10-08 20:05:38 -04:00
|
|
|
_mark_area : function() {
|
2012-03-27 22:10:19 -04:00
|
|
|
var visible = $('div.postbox:visible').length, side = $('#post-body #side-sortables');
|
2012-03-23 17:41:00 -04:00
|
|
|
|
2012-03-27 22:10:19 -04:00
|
|
|
$('#dashboard-widgets .meta-box-sortables:visible').each(function(n, el){
|
2011-10-08 20:05:38 -04:00
|
|
|
var t = $(this);
|
|
|
|
|
2012-03-23 17:41:00 -04:00
|
|
|
if ( visible == 1 || t.children('.postbox:visible').length )
|
2011-10-08 20:05:38 -04:00
|
|
|
t.removeClass('empty-container');
|
2012-03-23 17:41:00 -04:00
|
|
|
else
|
|
|
|
t.addClass('empty-container');
|
2011-10-08 20:05:38 -04:00
|
|
|
});
|
2012-03-27 22:10:19 -04:00
|
|
|
|
|
|
|
if ( side.length ) {
|
|
|
|
if ( side.children('.postbox:visible').length )
|
|
|
|
side.removeClass('empty-container');
|
|
|
|
else if ( $('#postbox-container-1').css('width') == '280px' )
|
|
|
|
side.addClass('empty-container');
|
|
|
|
}
|
2011-10-08 20:05:38 -04:00
|
|
|
},
|
2011-09-14 03:02:46 -04:00
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
_pb_edit : function(n) {
|
2012-03-23 17:41:00 -04:00
|
|
|
var el = $('.metabox-holder').get(0);
|
|
|
|
el.className = el.className.replace(/columns-\d+/, 'columns-' + n);
|
2011-10-10 00:19:05 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_pb_change : function() {
|
2012-06-20 01:03:08 -04:00
|
|
|
var check = $( 'label.columns-prefs-1 input[type="radio"]' );
|
|
|
|
|
2011-10-10 00:19:05 -04:00
|
|
|
switch ( window.orientation ) {
|
|
|
|
case 90:
|
|
|
|
case -90:
|
2012-06-20 01:03:08 -04:00
|
|
|
if ( !check.length || !check.is(':checked') )
|
|
|
|
this._pb_edit(2);
|
2011-10-10 00:19:05 -04:00
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case 180:
|
2012-06-20 01:03:08 -04:00
|
|
|
if ( $('#poststuff').length ) {
|
2011-10-10 00:19:05 -04:00
|
|
|
this._pb_edit(1);
|
2012-06-20 01:03:08 -04:00
|
|
|
} else {
|
|
|
|
if ( !check.length || !check.is(':checked') )
|
|
|
|
this._pb_edit(2);
|
|
|
|
}
|
2011-10-10 00:19:05 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-09-14 03:02:46 -04:00
|
|
|
/* Callbacks */
|
|
|
|
pbshow : false,
|
|
|
|
|
|
|
|
pbhide : false
|
|
|
|
};
|
|
|
|
|
2009-01-02 10:08:58 -05:00
|
|
|
}(jQuery));
|