/* * Copyright 2013 JBoss Inc * * 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. */ package org.artificer.ui.client.local.pages.ontologies; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.KeyUpEvent; import com.google.gwt.event.dom.client.KeyUpHandler; import com.google.gwt.event.logical.shared.HasValueChangeHandlers; import com.google.gwt.event.logical.shared.ValueChangeEvent; import com.google.gwt.event.logical.shared.ValueChangeHandler; import com.google.gwt.event.shared.HandlerRegistration; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.TextArea; import com.google.gwt.user.client.ui.TextBox; import javax.annotation.PostConstruct; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.artificer.ui.client.shared.beans.OntologyClassBean; import org.jboss.errai.ui.shared.api.annotations.DataField; import org.jboss.errai.ui.shared.api.annotations.EventHandler; import org.jboss.errai.ui.shared.api.annotations.Templated; import org.overlord.commons.gwt.client.local.widgets.ModalDialog; /** * Dialog that allows the user to create a new ontology tier node. * * @author eric.wittmann@redhat.com */ @Templated("/org/artificer/ui/client/local/site/dialogs/add-ontology-node-dialog.html#add-ontology-node-dialog") @Dependent public class AddOntologyNodeDialog extends ModalDialog implements HasValueChangeHandlers<OntologyClassBean> { @Inject @DataField protected TextBox id; @Inject @DataField protected TextBox label; @Inject @DataField protected TextArea comment; @Inject @DataField("add-ontology-node-submit-button") protected Button submitButton; /** * Constructor. */ public AddOntologyNodeDialog() { } /** * Called when the dialog is constructed by Errai. */ @PostConstruct protected void onPostConstruct() { submitButton.setEnabled(false); KeyUpHandler validationHandler1 = new KeyUpHandler() { @Override public void onKeyUp(KeyUpEvent event) { submitButton.setEnabled(isValid()); } }; ValueChangeHandler<String> validationHandler2 = new ValueChangeHandler<String>() { @Override public void onValueChange(ValueChangeEvent<String> event) { submitButton.setEnabled(isValid()); } }; id.addKeyUpHandler(validationHandler1); id.addValueChangeHandler(validationHandler2); label.addValueChangeHandler(validationHandler2); label.addKeyUpHandler(validationHandler1); } /** * Returns true if the values in the form fields are valid. */ protected boolean isValid() { String idVal = id.getValue(); String labelValue=label.getValue(); return idVal != null && idVal.trim().length() > 0 && labelValue != null && labelValue.trim().length() > 0; } /** * @see org.overlord.commons.gwt.client.local.widgets.ModalDialog#show() */ @Override public void show() { super.show(); id.setFocus(true); } /** * Called when the user clicks the submit button. * @param event */ @EventHandler("add-ontology-node-submit-button") protected void onSubmit(ClickEvent event) { OntologyClassBean bean = new OntologyClassBean(); bean.setComment(comment.getValue()); bean.setId(id.getValue()); bean.setLabel(label.getValue()); ValueChangeEvent.fire(this, bean); hide(); } /** * @see com.google.gwt.event.logical.shared.HasValueChangeHandlers#addValueChangeHandler(com.google.gwt.event.logical.shared.ValueChangeHandler) */ @Override public HandlerRegistration addValueChangeHandler(ValueChangeHandler<OntologyClassBean> handler) { return addHandler(handler, ValueChangeEvent.getType()); } }