gwt.material.design.client.ui.MaterialTextArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-material Show documentation
Show all versions of gwt-material Show documentation
A Material Design look and feel for GWT Applications
/*
* #%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.ui;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.dom.client.Element;
import com.google.gwt.user.client.ui.TextArea;
import gwt.material.design.client.constants.CssName;
import gwt.material.design.client.constants.InputType;
import static gwt.material.design.client.js.JsMaterialElement.$;
//@formatter:off
/**
* Material Text Area represents a multiple line text box where users can define comment, detail and etc.
* UiBinder Usage:
*
* {@code
*
*
* @author kevzlou7979
* @author Ben Dol
* @author paulux84
* @see Material TextArea
* @see Material Design Specification
*/
//@formatter:on
public class MaterialTextArea extends MaterialValueBox {
public enum ResizeRule {
NONE, AUTO, FOCUS
}
private ResizeRule resizeRule = ResizeRule.NONE;
private Integer originalHeight;
public MaterialTextArea() {
super(new TextArea());
setType(InputType.TEXT);
valueBoxBase.setStyleName(CssName.MATERIALIZE_TEXTAREA);
}
public MaterialTextArea(String placeholder) {
this();
setPlaceholder(placeholder);
}
public MaterialTextArea(String placeholder, int length) {
this(placeholder);
setLength(length);
}
@Override
protected void onLoad() {
super.onLoad();
setResizeRule(resizeRule);
}
public void triggerAutoResize() {
if (!valueBoxBase.isAttached()) {
registerHandler(valueBoxBase.addAttachHandler(event -> {
if (event.isAttached()) {
triggerAutoResize(valueBoxBase.getElement());
}
}));
} else {
triggerAutoResize(valueBoxBase.getElement());
}
}
protected void triggerAutoResize(Element element) {
Scheduler.get().scheduleDeferred(() -> $(element).trigger("autoresize", null));
}
@Override
public void setText(String text) {
super.setText(text);
if (resizeRule.equals(ResizeRule.AUTO)) {
triggerAutoResize();
}
}
public void setResizeRule(ResizeRule resizeRule) {
this.resizeRule = resizeRule;
switch (resizeRule) {
case AUTO:
registerHandler(valueBoxBase.addValueChangeHandler(event -> triggerAutoResize()));
break;
case FOCUS:
registerHandler(addFocusHandler(event -> {
if (originalHeight == null) {
originalHeight = valueBoxBase.getElement().getClientHeight();
}
triggerAutoResize();
}));
registerHandler(addBlurHandler(event -> {
if (originalHeight != null) {
valueBoxBase.setHeight(originalHeight + "px");
}
}));
break;
}
}
public ResizeRule getResizeRule() {
return resizeRule;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy