2015-04-06 14:13:15 +00:00
|
|
|
define( [
|
|
|
|
"jquery",
|
2015-07-15 01:57:20 +00:00
|
|
|
"ui/widgets/button"
|
2015-04-06 14:13:15 +00:00
|
|
|
], function( $ ) {
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2013-03-14 23:08:21 +00:00
|
|
|
module( "button: options" );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-02-03 00:25:52 +00:00
|
|
|
test( "disabled, explicit value", function( assert ) {
|
|
|
|
expect( 7 );
|
2013-03-12 01:28:51 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
var element = $( "#radio01" ).button( { disabled: false } );
|
2013-03-14 23:08:21 +00:00
|
|
|
deepEqual( element.button( "option", "disabled" ), false, "disabled option set to false" );
|
|
|
|
deepEqual( element.prop( "disabled" ), false, "element is disabled" );
|
|
|
|
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.lacksClasses( element.button( "widget" ), "ui-state-disabled ui-button-disabled" );
|
2013-03-14 23:08:21 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
element = $( "#radio02" ).button( { disabled: true } );
|
2013-03-14 23:08:21 +00:00
|
|
|
|
|
|
|
ok( !element.button( "widget" ).attr( "aria-disabled" ), "element does not get aria-disabled" );
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.hasClasses( element.button( "widget" ), "ui-button-disabled ui-state-disabled" );
|
2013-03-14 23:08:21 +00:00
|
|
|
|
|
|
|
deepEqual( element.button( "option", "disabled" ), true, "disabled option set to true" );
|
|
|
|
deepEqual( element.prop( "disabled" ), true, "element is not disabled" );
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
2010-08-18 18:51:30 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "disabled, null", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 4 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#radio01" ).button( { disabled: null } );
|
|
|
|
deepEqual( false, $( "#radio01" ).button( "option", "disabled" ),
|
|
|
|
"disabled option set to false" );
|
|
|
|
deepEqual( false, $( "#radio01" ).prop( "disabled" ), "element is disabled" );
|
|
|
|
|
|
|
|
$( "#radio02" ).prop( "disabled", true ).button( { disabled: null } );
|
|
|
|
deepEqual( true, $( "#radio02" ).button( "option", "disabled" ),
|
|
|
|
"disabled option set to true" );
|
|
|
|
deepEqual( true, $( "#radio02" ).prop( "disabled" ), "element is not disabled" );
|
|
|
|
} );
|
2010-08-18 18:51:30 +00:00
|
|
|
|
2015-02-03 00:25:52 +00:00
|
|
|
test( "disabled, ui-state-active is removed unless checkbox or radio", function( assert ) {
|
2013-12-12 04:53:48 +00:00
|
|
|
expect( 12 );
|
|
|
|
var elements = [
|
2014-04-21 13:15:23 +00:00
|
|
|
$( "<input type='button'>" ),
|
|
|
|
$( "<button></button>" ),
|
|
|
|
$( "<a></a>" ),
|
|
|
|
$( "<div></div>" ),
|
|
|
|
$( "<input type='checkbox' id='checkbox' checked><label for='checkbox'></label>" ),
|
|
|
|
$( "<input type='radio' id='radio' checked><label for='radio'></label>" )
|
|
|
|
];
|
2013-12-12 04:53:48 +00:00
|
|
|
|
|
|
|
$.each( elements, function() {
|
|
|
|
var element = $( this ).first().button(),
|
|
|
|
buttonElement = element.button( "widget" ),
|
|
|
|
elementType = element.prop( "nodeName" ).toLowerCase();
|
|
|
|
|
|
|
|
if ( element.is( "input" ) ) {
|
|
|
|
elementType += ":" + element.attr( "type" );
|
|
|
|
}
|
|
|
|
|
|
|
|
element.trigger( "mousedown" );
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.hasClasses( buttonElement, "ui-state-active",
|
2013-12-12 04:53:48 +00:00
|
|
|
"[" + elementType + "] has ui-state-active class after mousedown." );
|
|
|
|
|
|
|
|
element.button( "disable" );
|
|
|
|
if ( element.is( "[type=checkbox], [type=radio]" ) ) {
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.hasClasses( buttonElement, "ui-state-active",
|
2013-12-12 04:53:48 +00:00
|
|
|
"Disabled [" + elementType + "] has ui-state-active class." );
|
|
|
|
} else {
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.lacksClasses( buttonElement, "ui-state-active",
|
2013-12-12 04:53:48 +00:00
|
|
|
"Disabled [" + elementType + "] does not have ui-state-active class." );
|
|
|
|
}
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
|
|
|
} );
|
2013-12-12 04:53:48 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "text false without icon", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 1 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( {
|
2010-01-20 14:00:14 +00:00
|
|
|
text: false
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
|
|
|
ok( $( "#button" ).is( ".ui-button-text-only:not(.ui-button-icon-only)" ) );
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( "destroy" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "text false with icon", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 1 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( {
|
2010-01-20 14:00:14 +00:00
|
|
|
text: false,
|
|
|
|
icons: {
|
|
|
|
primary: "iconclass"
|
|
|
|
}
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
|
|
|
ok( $( "#button" ).is( ".ui-button-icon-only:not(.ui-button-text):has(span.ui-icon.iconclass)" ) );
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( "destroy" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "label, default", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 2 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button();
|
|
|
|
deepEqual( $( "#button" ).text(), "Label" );
|
|
|
|
deepEqual( $( "#button" ).button( "option", "label" ), "Label" );
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( "destroy" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "label", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 2 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( {
|
2010-01-20 14:00:14 +00:00
|
|
|
label: "xxx"
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
|
|
|
deepEqual( $( "#button" ).text(), "xxx" );
|
|
|
|
deepEqual( $( "#button" ).button( "option", "label" ), "xxx" );
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( "destroy" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "label default with input type submit", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 2 );
|
2015-08-21 04:12:35 +00:00
|
|
|
deepEqual( $( "#submit" ).button().val(), "Label" );
|
|
|
|
deepEqual( $( "#submit" ).button( "option", "label" ), "Label" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "label with input type submit", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 2 );
|
2015-08-21 04:12:35 +00:00
|
|
|
var label = $( "#submit" ).button( {
|
2010-01-20 14:00:14 +00:00
|
|
|
label: "xxx"
|
2015-08-21 04:12:35 +00:00
|
|
|
} ).val();
|
2012-02-28 14:56:32 +00:00
|
|
|
deepEqual( label, "xxx" );
|
2015-08-21 04:12:35 +00:00
|
|
|
deepEqual( $( "#submit" ).button( "option", "label" ), "xxx" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "icons", function() {
|
2012-06-27 15:32:48 +00:00
|
|
|
expect( 1 );
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( {
|
2010-01-20 14:00:14 +00:00
|
|
|
text: false,
|
|
|
|
icons: {
|
|
|
|
primary: "iconclass",
|
|
|
|
secondary: "iconclass2"
|
|
|
|
}
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
|
|
|
ok( $( "#button" ).is( ":has(span.ui-icon.ui-button-icon-primary.iconclass):has(span.ui-icon.ui-button-icon-secondary.iconclass2)" ) );
|
2012-02-28 14:56:32 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
$( "#button" ).button( "destroy" );
|
|
|
|
} );
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
test( "#5295 - button does not remove hoverstate if disabled", function( assert ) {
|
2012-12-08 01:06:29 +00:00
|
|
|
expect( 1 );
|
2015-08-21 04:12:35 +00:00
|
|
|
var btn = $( "#button" ).button();
|
2015-05-14 01:54:37 +00:00
|
|
|
btn.on( "hover", function() {
|
2012-12-08 01:06:29 +00:00
|
|
|
btn.button( "disable" );
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
2012-12-08 01:06:29 +00:00
|
|
|
btn.trigger( "mouseenter" );
|
|
|
|
btn.trigger( "mouseleave" );
|
2015-02-03 00:25:52 +00:00
|
|
|
assert.lacksClasses( btn, "ui-state-hover" );
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
2012-12-08 01:06:29 +00:00
|
|
|
|
2015-04-06 14:13:15 +00:00
|
|
|
} );
|