gwt.material.design.client.base.mixin.StatusDisplayMixin Maven / Gradle / Ivy
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2018 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.core.client.Scheduler;
import com.google.gwt.dom.client.Style;
import com.google.gwt.event.dom.client.KeyCodes;
import com.google.gwt.user.client.ui.HasText;
import com.google.gwt.user.client.ui.HasWidgets;
import com.google.gwt.user.client.ui.UIObject;
import com.google.gwt.user.client.ui.Widget;
import gwt.material.design.client.base.HasStatusDisplayType;
import gwt.material.design.client.base.MaterialWidget;
import gwt.material.design.client.base.helper.ScrollHelper;
import gwt.material.design.client.constants.*;
import gwt.material.design.client.ui.MaterialIcon;
public class StatusDisplayMixin
extends AbstractMixin implements HasStatusDisplayType {
public enum StatusType {
ERROR,
SUCCESS
}
private H textObject;
private StatusDisplayType displayType;
private MaterialIcon statusIcon = new MaterialIcon();
private Widget container;
private Position position;
private boolean showByDefault = false;
private CssNameMixin statusCssNameMixin;
private CssNameMixin positionCssNameMixin;
public StatusDisplayMixin(T uiObject, H textObject) {
super(uiObject);
this.textObject = textObject;
}
@Override
public void setStatusDisplayType(StatusDisplayType displayType) {
this.displayType = displayType;
getStatusCssNameMixin().setCssName(displayType);
}
@Override
public StatusDisplayType getStatusDisplayType() {
return displayType;
}
@Override
public void updateStatusDisplay(StatusType statusType) {
if (displayType == StatusDisplayType.HOVERABLE) {
if (!statusIcon.getElement().hasClassName(CssName.STATUS_ICON)) {
statusIcon.addStyleName(CssName.STATUS_ICON);
}
if (statusType == StatusType.ERROR) {
statusIcon.setIconType(IconType.ERROR);
statusIcon.setIconColor(Color.RED);
} else {
statusIcon.setIconType(IconType.CHECK_CIRCLE);
statusIcon.setIconColor(Color.GREEN);
}
if (uiObject instanceof HasWidgets && uiObject instanceof MaterialWidget) {
if (container != null && container instanceof MaterialWidget) {
((MaterialWidget) container).insert(statusIcon, 0);
} else {
((HasWidgets) uiObject).add(statusIcon);
}
registerHandlers();
}
if (showByDefault) Scheduler.get().scheduleDeferred(this::showStatus);
} else {
resetStatusDisplay();
}
}
@Override
public void setStatusDisplayPosition(Position position) {
this.position = position;
updatePosition(position);
}
@Override
public void setStatusShowByDefault(boolean showByDefault) {
this.showByDefault = showByDefault;
}
protected void registerHandlers() {
MaterialWidget widget = (MaterialWidget) uiObject;
statusIcon.getHandlerRegistry().clearHandlers();
statusIcon.registerHandler(statusIcon.addMouseOverHandler(event -> showStatus()));
statusIcon.registerHandler(statusIcon.addMouseOutHandler(event -> hideStatus()));
widget.getHandlerRegistry().clearHandlers();
widget.registerHandler(widget.addFocusHandler(event -> showStatus()));
widget.registerHandler(widget.addBlurHandler(event -> hideStatus()));
widget.registerHandler(widget.addKeyUpHandler(event -> {
if (event.getNativeKeyCode() == KeyCodes.KEY_ESCAPE) {
hideStatus();
}
}));
}
public void resetStatusDisplay() {
if (statusIcon != null && statusIcon.isAttached()) {
statusIcon.removeFromParent();
}
if (textObject != null) {
textObject.getElement().getStyle().clearVisibility();
}
}
/**
* If the message tooltip is our of vertical viewport then we update the position to be at the bottom
*/
protected void showStatus() {
if (position == null) {
if (!new ScrollHelper().isInViewPort(textObject.getElement())) {
position = Position.TOP;
} else {
position = Position.LEFT;
}
}
updatePosition(position);
textObject.getElement().getStyle().setVisibility(Style.Visibility.VISIBLE);
}
protected void updatePosition(Position position) {
getPositionCssNameMixin().setCssName(position);
if (position == Position.LEFT) {
textObject.getElement().getStyle().setProperty("top", "54px");
textObject.getElement().getStyle().setProperty("left", "unset");
textObject.getElement().getStyle().setProperty("right", "0px");
}
if (position == Position.TOP) {
textObject.getElement().getStyle().setProperty("top", "-54px");
textObject.getElement().getStyle().setProperty("left", "unset");
textObject.getElement().getStyle().setProperty("right", "0px");
}
}
protected void hideStatus() {
textObject.getElement().getStyle().setVisibility(Style.Visibility.HIDDEN);
}
public void setContainer(Widget container) {
this.container = container;
}
protected CssNameMixin getStatusCssNameMixin() {
if (statusCssNameMixin == null) {
statusCssNameMixin = new CssNameMixin<>(uiObject);
}
return statusCssNameMixin;
}
protected CssNameMixin getPositionCssNameMixin() {
if (positionCssNameMixin == null) {
positionCssNameMixin = new CssNameMixin<>(textObject);
}
return positionCssNameMixin;
}
}