gwt.material.design.client.base.mixin.StatusTextMixin Maven / Gradle / Ivy
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2017 GwtMaterialDesign
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package gwt.material.design.client.base.mixin;
import com.google.gwt.user.client.ui.HasText;
import com.google.gwt.user.client.ui.UIObject;
import gwt.material.design.client.base.HasStatusText;
import gwt.material.design.client.constants.CssName;
/**
* @author Ben Dol
*/
public class StatusTextMixin
extends AbstractMixin implements HasStatusText {
private H textObject;
private UIObject target;
private UIObject lblPlaceholder;
private String helperText;
public StatusTextMixin(final T widget) {
this(widget, null);
}
public StatusTextMixin(final T widget, final H textObject) {
this(widget, textObject, widget);
}
public StatusTextMixin(final T widget, final H textObject, UIObject target) {
super(widget);
this.textObject = textObject;
this.target = target;
}
public StatusTextMixin(final T widget, final H textObject, UIObject target, UIObject lblPlaceholder) {
this(widget, textObject, target);
this.lblPlaceholder = lblPlaceholder;
}
@Override
public void setErrorText(String errorText) {
clearSuccessText();
clearHelperText();
if (textObject != null) {
textObject.setVisible(true);
textObject.setText(errorText);
textObject.addStyleName(CssName.FIELD_ERROR_LABEL);
}
if (target != null) {
target.addStyleName(CssName.FIELD_ERROR);
}
if (lblPlaceholder != null) {
lblPlaceholder.addStyleName("red-text");
if (errorText != null && !errorText.isEmpty()) {
lblPlaceholder.addStyleName(CssName.ACTIVE);
}
}
}
@Override
public void setSuccessText(String successText) {
clearErrorText();
clearHelperText();
if (textObject != null) {
textObject.setVisible(true);
textObject.setText(successText);
textObject.addStyleName(CssName.FIELD_SUCCESS_LABEL);
}
if (target != null) {
target.addStyleName(CssName.FIELD_SUCCESS);
}
if (lblPlaceholder != null) {
lblPlaceholder.addStyleName("green-text");
if (successText != null && !successText.isEmpty()) {
lblPlaceholder.addStyleName(CssName.ACTIVE);
}
}
}
@Override
public void setHelperText(String helperText) {
this.helperText = helperText;
// Clear any other status states
clearStatusText();
if (helperText != null) {
applyHelperText();
} else {
textObject.setText("");
textObject.removeStyleName(CssName.FIELD_HELPER_LABEL);
textObject.setVisible(false);
}
}
@Override
public void clearStatusText() {
clearErrorText();
clearSuccessText();
}
@Override
public void clearErrorText() {
if (textObject != null) {
textObject.setText("");
textObject.setVisible(false);
textObject.removeStyleName(CssName.FIELD_ERROR_LABEL);
}
if (target != null) {
target.removeStyleName(CssName.FIELD_ERROR);
}
if (lblPlaceholder != null) {
lblPlaceholder.removeStyleName("red-text");
}
applyHelperText();
}
@Override
public void clearSuccessText() {
if (textObject != null) {
textObject.setText("");
textObject.setVisible(false);
textObject.removeStyleName(CssName.FIELD_SUCCESS_LABEL);
}
if (target != null) {
target.removeStyleName(CssName.FIELD_SUCCESS);
}
if (lblPlaceholder != null) {
lblPlaceholder.removeStyleName("green-text");
}
applyHelperText();
}
@Override
public void clearHelperText() {
if (textObject != null) {
textObject.setText("");
textObject.setVisible(false);
textObject.removeStyleName(CssName.FIELD_HELPER_LABEL);
}
}
public void applyHelperText() {
if (textObject != null && helperText != null) {
textObject.setText(helperText);
textObject.addStyleName(CssName.FIELD_HELPER_LABEL);
textObject.setVisible(helperText != null);
}
}
@Override
public boolean isErrorTextVisible() {
return textObject != null && textObject.getStyleName().contains(CssName.FIELD_ERROR_LABEL)
&& textObject.isVisible();
}
@Override
public boolean isHelperTextVisible() {
return textObject != null && textObject.getStyleName().contains(CssName.FIELD_HELPER_LABEL)
&& textObject.isVisible();
}
@Override
public boolean isSuccessTextVisible() {
return textObject != null && textObject.getStyleName().contains(CssName.FIELD_SUCCESS_LABEL)
&& textObject.isVisible();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy