import com.google.gwt.user.client.ui.Widget;
import com.vaadin.client.ApplicationConnection;
import com.vaadin.client.BrowserInfo;
+import com.vaadin.client.StyleConstants;
import com.vaadin.client.WidgetUtil;
import com.vaadin.client.widgets.FocusableFlowPanelComposite;
import com.vaadin.shared.Registration;
.getBoolean(ListingJsonConstants.JSONKEY_ITEM_DISABLED);
boolean enabled = optionEnabled && !isReadonly() && isEnabled();
checkBox.setEnabled(enabled);
+ // #9258 apply the v-disabled class when disabled for UX
+ checkBox.setStyleName(StyleConstants.DISABLED,
+ !isEnabled() || !optionEnabled);
}
public boolean isHtmlContentAllowed() {
import com.google.gwt.user.client.ui.Widget;
import com.vaadin.client.ApplicationConnection;
import com.vaadin.client.BrowserInfo;
+import com.vaadin.client.StyleConstants;
import com.vaadin.client.WidgetUtil;
import com.vaadin.client.widgets.FocusableFlowPanelComposite;
import com.vaadin.shared.Registration;
.getBoolean(ListingJsonConstants.JSONKEY_ITEM_DISABLED);
boolean enabled = optionEnabled && !isReadonly() && isEnabled();
button.setEnabled(enabled);
+ // #9258 apply the v-disabled class when disabled for UX
+ button.setStyleName(StyleConstants.DISABLED,
+ !isEnabled() || !optionEnabled);
+
String key = item.getString(DataCommunicatorConstants.KEY);
if (requireInitialization) {
.entrySet()) {
RadioButton radioButton = entry.getKey();
JsonObject value = entry.getValue();
- Boolean isOptionEnabled = !value
+ boolean optionEnabled = !value
.getBoolean(ListingJsonConstants.JSONKEY_ITEM_DISABLED);
- radioButton.setEnabled(radioButtonEnabled && isOptionEnabled);
+ radioButton.setEnabled(radioButtonEnabled && optionEnabled);
+ // #9258 apply the v-disabled class when disabled for UX
+ radioButton.setStyleName(StyleConstants.DISABLED,
+ !isEnabled() || !optionEnabled);
}
}
package com.vaadin.tests.components.checkbox;
import java.util.LinkedHashMap;
+import java.util.Objects;
import com.vaadin.icons.VaadinIcons;
+import com.vaadin.server.SerializablePredicate;
import com.vaadin.tests.components.abstractlisting.AbstractMultiSelectTestUI;
import com.vaadin.ui.CheckBoxGroup;
import com.vaadin.ui.DescriptionGenerator;
super.createActions();
createItemIconGenerator();
createItemDescriptionGeneratorMenu();
+ createItemEnabledProviderMenu();
}
private void createItemIconGenerator() {
}, true);
}
+ private void createItemEnabledProviderMenu() {
+ LinkedHashMap<String, SerializablePredicate<Object>> options = new LinkedHashMap<>();
+ options.put("Disable Item 0", o -> !Objects.equals(o, "Item 0"));
+ options.put("Disable Item 3", o -> !Objects.equals(o, "Item 3"));
+ options.put("Disable Item 5", o -> !Objects.equals(o, "Item 5"));
+
+ createSelectAction("Item Enabled Provider", "Item Enabled Provider",
+ options, "None", (checkBoxGroup, generator, data) -> {
+ checkBoxGroup.setItemEnabledProvider(generator);
+ checkBoxGroup.getDataProvider().refreshAll();
+ }, true);
+ }
+
private void useItemIconProvider(CheckBoxGroup<Object> group,
boolean activate, Object data) {
if (activate) {
package com.vaadin.tests.components.radiobutton;
import java.util.LinkedHashMap;
+import java.util.Objects;
import java.util.stream.IntStream;
import com.vaadin.icons.VaadinIcons;
+import com.vaadin.server.SerializablePredicate;
import com.vaadin.tests.components.abstractlisting.AbstractListingTestUI;
import com.vaadin.ui.DescriptionGenerator;
import com.vaadin.ui.ItemCaptionGenerator;
createItemIconGeneratorMenu();
createItemCaptionGeneratorMenu();
createItemDescriptionGeneratorMenu();
+ createItemEnabledProviderMenu();
}
protected void createSelectionMenu() {
"Item Description Generator", options, "None",
(radioButtonGroup, generator, data) -> {
radioButtonGroup.setItemDescriptionGenerator(generator);
+ }, true);
+ }
+
+ private void createItemEnabledProviderMenu() {
+ LinkedHashMap<String, SerializablePredicate<Object>> options = new LinkedHashMap<>();
+ options.put("Disable Item 0", o -> !Objects.equals(o, "Item 0"));
+ options.put("Disable Item 3", o -> !Objects.equals(o, "Item 3"));
+ options.put("Disable Item 5", o -> !Objects.equals(o, "Item 5"));
+
+ createSelectAction("Item Enabled Provider", "Item Enabled Provider",
+ options, "None", (radioButtonGroup, generator, data) -> {
+ radioButtonGroup.setItemEnabledProvider(generator);
radioButtonGroup.getDataProvider().refreshAll();
}, true);
}
import java.util.Locale;
import java.util.stream.Collectors;
+import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
}
}
+ @Test // #9258
+ public void disabled_correctClassNamesApplied() {
+ openTestURL("theme=valo");
+ selectMenuPath("Component", "State", "Enabled");
+
+ List<WebElement> options = getSelect().findElements(By.tagName("span"));
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(className -> verifyCheckboxDisabledClassNames(
+ className, true));
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+ Assert.assertTrue(options.size() > 0);
+ verifyCheckboxDisabledClassNames(
+ options.remove(10).getAttribute("className"), true);
+
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(className -> verifyCheckboxDisabledClassNames(
+ className, false));
+ }
+
+ @Test // #9258
+ public void itemDisabledWithEnabledProvider_correctClassNamesApplied() {
+ openTestURL("theme=valo");
+
+ List<WebElement> options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ verifyCheckboxDisabledClassNames(
+ options.remove(10).getAttribute("className"), true);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyCheckboxDisabledClassNames(cs, false));
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 0");
+
+ options = getSelect().findElements(By.tagName("span"));
+ String className = options.get(0).getAttribute("className");
+ verifyCheckboxDisabledClassNames(className, true);
+ verifyCheckboxDisabledClassNames(
+ options.remove(10).getAttribute("className"), false);
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 3");
+
+ className = getSelect().findElements(By.tagName("span")).get(0)
+ .getAttribute("className");
+ verifyCheckboxDisabledClassNames(className, false);
+
+ className = getSelect().findElements(By.tagName("span")).get(3)
+ .getAttribute("className");
+ verifyCheckboxDisabledClassNames(className, true);
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyCheckboxDisabledClassNames(cs, true));
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 5");
+
+ options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyCheckboxDisabledClassNames(cs, true));
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+ className = options.remove(5).getAttribute("className");
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyCheckboxDisabledClassNames(cs, false));
+ verifyCheckboxDisabledClassNames(className, true);
+ }
+
// needed to make tooltips work in IE tests
@Override
protected boolean requireWindowFocusForIE() {
return true;
}
+
+ private static void verifyCheckboxDisabledClassNames(String className,
+ boolean disabled) {
+ Assert.assertEquals(
+ disabled ? "No"
+ : "Extra" + " v-checkbox-disabled class, was "
+ + className,
+ disabled, className.contains("v-checkbox-disabled"));
+ Assert.assertEquals(
+ disabled ? "No"
+ : "Extra" + " v-disabled class, was " + className,
+ disabled, className.contains("v-disabled"));
+ }
}
assertEquals(lastLogRow, getLogRow(0));
}
+ @Test // #9258
+ public void disabled_correctClassNamesApplied() {
+ openTestURL("theme=valo");
+ selectMenuPath("Component", "State", "Enabled");
+
+ List<WebElement> options = getSelect().findElements(By.tagName("span"));
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(className -> verifyRadioButtonDisabledClassNames(
+ className, true));
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(className -> verifyRadioButtonDisabledClassNames(
+ className, false));
+ }
+
+ @Test // #9258
+ public void itemDisabledWithEnabledProvider_correctClassNamesApplied() {
+ openTestURL("theme=valo");
+
+ List<WebElement> options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyRadioButtonDisabledClassNames(cs, false));
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 0");
+
+ String className = getSelect().findElements(By.tagName("span")).get(0)
+ .getAttribute("className");
+ verifyRadioButtonDisabledClassNames(className, true);
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 3");
+
+ className = getSelect().findElements(By.tagName("span")).get(0)
+ .getAttribute("className");
+ verifyRadioButtonDisabledClassNames(className, false);
+
+ className = getSelect().findElements(By.tagName("span")).get(3)
+ .getAttribute("className");
+ verifyRadioButtonDisabledClassNames(className, true);
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyRadioButtonDisabledClassNames(cs, true));
+
+ selectMenuPath("Component", "Item Enabled Provider",
+ "Item Enabled Provider", "Disable Item 5");
+
+ options = getSelect().findElements(By.tagName("span"));
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyRadioButtonDisabledClassNames(cs, true));
+
+ selectMenuPath("Component", "State", "Enabled");
+
+ options = getSelect().findElements(By.tagName("span"));
+ className = options.remove(5).getAttribute("className");
+
+ Assert.assertTrue(options.size() > 0);
+ options.stream().map(element -> element.getAttribute("className"))
+ .forEach(cs -> verifyRadioButtonDisabledClassNames(cs, false));
+ verifyRadioButtonDisabledClassNames(className, true);
+ }
+
@Test
public void itemIconGenerator() {
selectMenuPath("Component", "Item Icon Generator",
protected boolean requireWindowFocusForIE() {
return true;
}
+
+ private static void verifyRadioButtonDisabledClassNames(String className,
+ boolean disabled) {
+ Assert.assertEquals(
+ disabled ? "No"
+ : "Extra" + " v-radiobutton-disabled class, was "
+ + className,
+ disabled, className.contains("v-radiobutton-disabled"));
+ Assert.assertEquals(
+ disabled ? "No"
+ : "Extra" + " v-disabled class, was " + className,
+ disabled, className.contains("v-disabled"));
+ }
}