List Tables: add JS code to dynamically toggle the `disabled` attribute of the Bulk Actions dropdown and Apply button.

Props wonderboymusic, pareshradadiya.
Fixes #31634.

Built from https://develop.svn.wordpress.org/trunk@34467


git-svn-id: http://core.svn.wordpress.org/trunk@34431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-24 01:07:24 +00:00
parent df9c242a5e
commit 25f206e01f
6 changed files with 56 additions and 7 deletions

View File

@ -437,14 +437,14 @@ class WP_List_Table {
if ( empty( $this->_actions ) )
return;
echo "<label for='bulk-action-selector-" . esc_attr( $which ) . "' class='screen-reader-text'>" . __( 'Select bulk action' ) . "</label>";
echo "<select name='action$two' id='bulk-action-selector-" . esc_attr( $which ) . "'>\n";
echo "<option value='-1' selected='selected'>" . __( 'Bulk Actions' ) . "</option>\n";
echo '<label for="bulk-action-selector-' . esc_attr( $which ) . '" class="screen-reader-text">' . __( 'Select bulk action' ) . '</label>';
echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr( $which ) . "\">\n";
echo '<option value="-1">' . __( 'Bulk Actions' ) . "</option>\n";
foreach ( $this->_actions as $name => $title ) {
$class = 'edit' === $name ? ' class="hide-if-no-js"' : '';
echo "\t<option value='$name'$class>$title</option>\n";
echo "\t" . '<option value="' . $name . '"' . $class . '>' . $title . "</option>\n";
}
echo "</select>\n";

View File

@ -279,7 +279,7 @@ $_old_files = array(
'wp-admin/images/logo-login.gif',
'wp-admin/images/star.gif',
'wp-admin/js/list-table.dev.js',
'wp-admin/js/list-table.js',
//'wp-admin/js/list-table.js', // restored in 4.4
'wp-includes/default-embeds.php',
'wp-includes/js/tinymce/plugins/wordpress/img/help.gif',
'wp-includes/js/tinymce/plugins/wordpress/img/more.gif',

46
wp-admin/js/list-table.js Normal file
View File

@ -0,0 +1,46 @@
/*globals jQuery */
(function ($) {
'use strict';
var listTable,
actions,
doActions;
function getChecked() {
return listTable.find( 'table .check-column input[type="checkbox"]:checked' );
}
/**
* Enable and Disable Apply button in wp-list
*
* @param {jQuery.Event} e
*/
function setApplyButton( e ) {
var checked = getChecked().length;
if ( 'SELECT' === e.target.tagName ) {
actions.val( e.target.value );
}
actions.prop( 'disabled', ! checked );
doActions.prop( 'disabled', ! checked || -1 === parseInt( actions.val(), 10 ) );
}
$(document).ready(function () {
listTable = $( '.wp-list-table' ).closest( 'form' );
if ( ! listTable.length ) {
return;
}
actions = listTable.find( 'select[name="action"], select[name="action2"]' )
.on( 'change', setApplyButton )
.prop( 'disabled', true );
doActions = listTable.find( '#doaction, #doaction2' )
.prop( 'disabled', true );
listTable.find( 'table' ).on( 'click', '.check-column :checkbox', setApplyButton );
});
}(jQuery));

1
wp-admin/js/list-table.min.js vendored Normal file
View File

@ -0,0 +1 @@
!function(a){"use strict";function b(){return d.find('table .check-column input[type="checkbox"]:checked')}function c(a){var c=b().length;"SELECT"===a.target.tagName&&e.val(a.target.value),e.prop("disabled",!c),f.prop("disabled",!c||-1===parseInt(e.val(),10))}var d,e,f;a(document).ready(function(){d=a(".wp-list-table").closest("form"),d.length&&(e=d.find('select[name="action"], select[name="action2"]').on("change",c).prop("disabled",!0),f=d.find("#doaction, #doaction2").prop("disabled",!0),d.find("table").on("click",".check-column :checkbox",c))})}(jQuery);

View File

@ -77,7 +77,7 @@ function wp_default_scripts( &$scripts ) {
'secure' => (string) ( 'https' === parse_url( site_url(), PHP_URL_SCHEME ) ),
) );
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 );
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils', 'list-table'), false, 1 );
did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array(
'warnDelete' => __( "You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete." ),
'dismiss' => __( 'Dismiss this notice.' ),
@ -396,6 +396,8 @@ function wp_default_scripts( &$scripts ) {
$scripts->add( 'user-suggest', "/wp-admin/js/user-suggest$suffix.js", array( 'jquery-ui-autocomplete' ), false, 1 );
$scripts->add( 'list-table', "/wp-admin/js/list-table$suffix.js", array( 'jquery' ), false, 1 );
$scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 );
$scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery' ), false, 1 );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34466';
$wp_version = '4.4-alpha-34467';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.