2013-11-16 00:19:09 +01:00
|
|
|
/* global pagenow, ajaxurl, postboxes, wpActiveEditor:true */
|
2012-08-23 02:04:18 +02:00
|
|
|
var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad;
|
|
|
|
|
|
|
|
jQuery(document).ready( function($) {
|
2013-12-03 18:35:09 +01:00
|
|
|
var welcomePanel = $( '#welcome-panel' ),
|
2012-08-23 02:04:18 +02:00
|
|
|
welcomePanelHide = $('#wp_welcome_panel-hide'),
|
2013-12-03 18:35:09 +01:00
|
|
|
updateWelcomePanel;
|
2013-11-26 05:38:09 +01:00
|
|
|
|
|
|
|
updateWelcomePanel = function( visible ) {
|
|
|
|
$.post( ajaxurl, {
|
|
|
|
action: 'update-welcome-panel',
|
|
|
|
visible: visible,
|
|
|
|
welcomepanelnonce: $( '#welcomepanelnonce' ).val()
|
|
|
|
});
|
|
|
|
};
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-16 00:19:09 +01:00
|
|
|
if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
welcomePanel.removeClass('hidden');
|
2013-11-16 00:19:09 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
$('.welcome-panel-close, .welcome-panel-dismiss a', welcomePanel).click( function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
welcomePanel.addClass('hidden');
|
|
|
|
updateWelcomePanel( 0 );
|
|
|
|
$('#wp_welcome_panel-hide').prop('checked', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
welcomePanelHide.click( function() {
|
|
|
|
welcomePanel.toggleClass('hidden', ! this.checked );
|
|
|
|
updateWelcomePanel( this.checked ? 1 : 0 );
|
|
|
|
});
|
|
|
|
|
|
|
|
// These widgets are sometimes populated via ajax
|
2013-11-15 21:15:10 +01:00
|
|
|
ajaxWidgets = ['dashboard_primary'];
|
2012-08-23 02:04:18 +02:00
|
|
|
|
|
|
|
ajaxPopulateWidgets = function(el) {
|
|
|
|
function show(i, id) {
|
|
|
|
var p, e = $('#' + id + ' div.inside:visible').find('.widget-loading');
|
|
|
|
if ( e.length ) {
|
|
|
|
p = e.parent();
|
|
|
|
setTimeout( function(){
|
2013-11-15 21:15:10 +01:00
|
|
|
p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id + '&pagenow=' + pagenow, '', function() {
|
2012-08-23 02:04:18 +02:00
|
|
|
p.hide().slideDown('normal', function(){
|
|
|
|
$(this).css('display', '');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, i * 500 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( el ) {
|
|
|
|
el = el.toString();
|
2013-11-16 00:19:09 +01:00
|
|
|
if ( $.inArray(el, ajaxWidgets) !== -1 ) {
|
2012-08-23 02:04:18 +02:00
|
|
|
show(0, el);
|
2013-11-16 00:19:09 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
} else {
|
|
|
|
$.each( ajaxWidgets, show );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
ajaxPopulateWidgets();
|
|
|
|
|
|
|
|
postboxes.add_postbox_toggles(pagenow, { pbshow: ajaxPopulateWidgets } );
|
|
|
|
|
|
|
|
/* QuickPress */
|
|
|
|
quickPressLoad = function() {
|
|
|
|
var act = $('#quickpost-action'), t;
|
|
|
|
t = $('#quick-press').submit( function() {
|
2013-11-15 23:23:09 +01:00
|
|
|
$('#dashboard_quick_press #publishing-action .spinner').show();
|
2012-08-23 02:04:18 +02:00
|
|
|
$('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true);
|
|
|
|
|
2013-11-13 23:09:10 +01:00
|
|
|
$.post( t.attr( 'action' ), t.serializeArray(), function( data ) {
|
|
|
|
// Replace the form, and prepend the published post.
|
2013-11-15 23:23:09 +01:00
|
|
|
$('#dashboard_quick_press .inside').html( data );
|
2013-11-13 23:09:10 +01:00
|
|
|
$('#quick-press').removeClass('initial-form');
|
|
|
|
quickPressLoad();
|
|
|
|
highlightLatestPost();
|
|
|
|
$('#title').focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
function highlightLatestPost () {
|
2013-11-15 23:23:09 +01:00
|
|
|
var latestPost = $('.drafts ul li').first();
|
2013-11-13 23:09:10 +01:00
|
|
|
latestPost.css('background', '#fffbe5');
|
|
|
|
setTimeout(function () {
|
|
|
|
latestPost.css('background', 'none');
|
|
|
|
}, 1000);
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
|
|
|
|
$('#publish').click( function() { act.val( 'post-quickpress-publish' ); } );
|
|
|
|
|
2013-11-13 23:09:10 +01:00
|
|
|
$('#title, #tags-input, #content').each( function() {
|
2012-09-18 20:45:44 +02:00
|
|
|
var input = $(this), prompt = $('#' + this.id + '-prompt-text');
|
|
|
|
|
2013-11-16 00:19:09 +01:00
|
|
|
if ( '' === this.value ) {
|
2012-09-18 20:45:44 +02:00
|
|
|
prompt.removeClass('screen-reader-text');
|
2013-11-16 00:19:09 +01:00
|
|
|
}
|
2012-09-18 20:45:44 +02:00
|
|
|
|
|
|
|
prompt.click( function() {
|
|
|
|
$(this).addClass('screen-reader-text');
|
|
|
|
input.focus();
|
|
|
|
});
|
|
|
|
|
|
|
|
input.blur( function() {
|
2013-11-16 00:19:09 +01:00
|
|
|
if ( '' === this.value ) {
|
2012-09-18 20:45:44 +02:00
|
|
|
prompt.removeClass('screen-reader-text');
|
2013-11-16 00:19:09 +01:00
|
|
|
}
|
2012-09-18 20:45:44 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
input.focus( function() {
|
|
|
|
prompt.addClass('screen-reader-text');
|
|
|
|
});
|
|
|
|
});
|
2012-11-10 04:05:48 +01:00
|
|
|
|
2012-11-11 02:40:47 +01:00
|
|
|
$('#quick-press').on( 'click focusin', function() {
|
|
|
|
wpActiveEditor = 'content';
|
|
|
|
});
|
2013-12-03 18:35:09 +01:00
|
|
|
|
|
|
|
autoResizeTextarea();
|
2012-08-23 02:04:18 +02:00
|
|
|
};
|
|
|
|
quickPressLoad();
|
|
|
|
|
2013-11-27 03:03:10 +01:00
|
|
|
$( '.meta-box-sortables' ).sortable( 'option', 'containment', 'document' );
|
2013-11-26 01:55:09 +01:00
|
|
|
|
2013-12-03 18:35:09 +01:00
|
|
|
function autoResizeTextarea() {
|
2014-04-13 20:25:15 +02:00
|
|
|
if ( document.documentMode && document.documentMode < 9 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-03 18:35:09 +01:00
|
|
|
// Add a hidden div. We'll copy over the text from the textarea to measure its height.
|
|
|
|
$('body').append( '<div class="quick-draft-textarea-clone" style="display: none;"></div>' );
|
|
|
|
|
|
|
|
var clone = $('.quick-draft-textarea-clone'),
|
|
|
|
editor = $('#content'),
|
|
|
|
editorHeight = editor.height(),
|
|
|
|
// 100px roughly accounts for browser chrome and allows the
|
|
|
|
// save draft button to show on-screen at the same time.
|
|
|
|
editorMaxHeight = $(window).height() - 100;
|
|
|
|
|
|
|
|
// Match up textarea and clone div as much as possible.
|
|
|
|
// Padding cannot be reliably retrieved using shorthand in all browsers.
|
|
|
|
clone.css({
|
|
|
|
'font-family': editor.css('font-family'),
|
|
|
|
'font-size': editor.css('font-size'),
|
|
|
|
'line-height': editor.css('line-height'),
|
|
|
|
'padding-bottom': editor.css('paddingBottom'),
|
|
|
|
'padding-left': editor.css('paddingLeft'),
|
|
|
|
'padding-right': editor.css('paddingRight'),
|
|
|
|
'padding-top': editor.css('paddingTop'),
|
|
|
|
'white-space': 'pre-wrap',
|
|
|
|
'word-wrap': 'break-word',
|
|
|
|
'display': 'none'
|
|
|
|
});
|
|
|
|
|
|
|
|
// propertychange is for IE < 9
|
|
|
|
editor.on('focus input propertychange', function() {
|
|
|
|
var $this = $(this),
|
|
|
|
// is to ensure that the height of a final trailing newline is included.
|
2014-01-23 19:03:12 +01:00
|
|
|
textareaContent = $this.val() + ' ',
|
2013-12-03 18:35:09 +01:00
|
|
|
// 2px is for border-top & border-bottom
|
2014-01-23 19:03:12 +01:00
|
|
|
cloneHeight = clone.css('width', $this.css('width')).text(textareaContent).outerHeight() + 2;
|
2013-12-03 18:35:09 +01:00
|
|
|
|
|
|
|
// Default to having scrollbars
|
|
|
|
editor.css('overflow-y', 'auto');
|
|
|
|
|
|
|
|
// Only change the height if it has indeed changed and both heights are below the max.
|
|
|
|
if ( cloneHeight === editorHeight || ( cloneHeight >= editorMaxHeight && editorHeight >= editorMaxHeight ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't allow editor to exceed height of window.
|
|
|
|
// This is also bound in CSS to a max-height of 1300px to be extra safe.
|
|
|
|
if ( cloneHeight > editorMaxHeight ) {
|
|
|
|
editorHeight = editorMaxHeight;
|
|
|
|
} else {
|
|
|
|
editorHeight = cloneHeight;
|
|
|
|
}
|
|
|
|
|
2014-04-13 20:25:15 +02:00
|
|
|
// No scrollbars as we change height, not for IE < 9
|
|
|
|
editor.css('overflow', 'hidden');
|
2013-12-03 18:35:09 +01:00
|
|
|
|
|
|
|
$this.css('height', editorHeight + 'px');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
} );
|