X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/11be8dc178e77d0b46189bbd8e33a216a9b90942..refs/tags/wordpress-3.5.1:/wp-admin/js/dashboard.js diff --git a/wp-admin/js/dashboard.js b/wp-admin/js/dashboard.js index c99163a6..50a17f85 100644 --- a/wp-admin/js/dashboard.js +++ b/wp-admin/js/dashboard.js @@ -1,52 +1,117 @@ +var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad; -jQuery( function($) { - -// close postboxes that should be closed -jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed'); - -// These widgets are sometimes populated via ajax -var ajaxWidgets = [ - 'dashboard_incoming_links', - 'dashboard_primary', - 'dashboard_secondary', - 'dashboard_plugins' -]; - -var ajaxPopulateWidgets = function() { - $.each( ajaxWidgets, function() { - var e = jQuery('#' + this + ':visible div.inside').find('.widget-loading'); - if ( e.size() ) { e.parent().load('index-extra.php?jax=' + this); } - } ); -}; -ajaxPopulateWidgets(); - -postboxes.add_postbox_toggles('dashboard', { onShow: ajaxPopulateWidgets } ); - -/* QuickPress */ -var quickPressLoad = function() { - var act = $('#quickpost-action'); - var t = $('#quick-press').submit( function() { - $('#dashboard_quick_press h3').append( '' ); - - if ( 'post' == act.val() ) { - act.val( 'post-quickpress-publish' ); +jQuery(document).ready( function($) { + /* Dashboard Welcome Panel */ + var welcomePanel = $('#welcome-panel'), + welcomePanelHide = $('#wp_welcome_panel-hide'), + updateWelcomePanel = function( visible ) { + $.post( ajaxurl, { + action: 'update-welcome-panel', + visible: visible, + welcomepanelnonce: $('#welcomepanelnonce').val() + }); + }; + + if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') ) + welcomePanel.removeClass('hidden'); + + $('.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 + ajaxWidgets = [ + 'dashboard_incoming_links', + 'dashboard_primary', + 'dashboard_secondary', + 'dashboard_plugins' + ]; + + 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(){ + p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id, '', function() { + p.hide().slideDown('normal', function(){ + $(this).css('display', ''); + }); + }); + }, i * 500 ); + } + } + + if ( el ) { + el = el.toString(); + if ( $.inArray(el, ajaxWidgets) != -1 ) + show(0, el); + } else { + $.each( ajaxWidgets, show ); } + }; + ajaxPopulateWidgets(); + + postboxes.add_postbox_toggles(pagenow, { pbshow: ajaxPopulateWidgets } ); - $('#dashboard_quick_press div.inside').load( t.attr( 'action' ), t.serializeArray(), function() { - $('#dashboard_quick_press h3 img').remove(); - $('#dashboard_quick_press ul').find('li').each( function() { - $('#dashboard_recent_drafts ul').prepend( this ); - } ).end().remove(); - $(this).find('.hide-if-no-js').removeClass('hide-if-no-js'); - tb_init('a.thickbox'); - quickPressLoad(); + /* QuickPress */ + quickPressLoad = function() { + var act = $('#quickpost-action'), t; + t = $('#quick-press').submit( function() { + $('#dashboard_quick_press #publishing-action .spinner').show(); + $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true); + + if ( 'post' == act.val() ) { + act.val( 'post-quickpress-publish' ); + } + + $('#dashboard_quick_press div.inside').load( t.attr( 'action' ), t.serializeArray(), function() { + $('#dashboard_quick_press #publishing-action .spinner').hide(); + $('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', false); + $('#dashboard_quick_press ul').next('p').remove(); + $('#dashboard_quick_press ul').find('li').each( function() { + $('#dashboard_recent_drafts ul').prepend( this ); + } ).end().remove(); + quickPressLoad(); + } ); + return false; } ); - return false; - } ); - $('#publish').click( function() { act.val( 'post-quickpress-publish' ); } ); + $('#publish').click( function() { act.val( 'post-quickpress-publish' ); } ); + + $('#title, #tags-input').each( function() { + var input = $(this), prompt = $('#' + this.id + '-prompt-text'); + + if ( '' === this.value ) + prompt.removeClass('screen-reader-text'); + + prompt.click( function() { + $(this).addClass('screen-reader-text'); + input.focus(); + }); + + input.blur( function() { + if ( '' === this.value ) + prompt.removeClass('screen-reader-text'); + }); + + input.focus( function() { + prompt.addClass('screen-reader-text'); + }); + }); -}; -quickPressLoad(); + $('#quick-press').on( 'click focusin', function() { + wpActiveEditor = 'content'; + }); + }; + quickPressLoad(); } );