Package org.apache.wicket.ajax.form

Source Code of org.apache.wicket.ajax.form.AjaxFormSubmitBehavior

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.wicket.ajax.form;

import org.apache.wicket.Component;
import org.apache.wicket.Page;
import org.apache.wicket.ajax.AjaxEventBehavior;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.IFormSubmittingComponent;
import org.apache.wicket.util.string.AppendingStringBuffer;

/**
* Ajax event behavior that submits a form via ajax when the event it is attached to is invoked.
* <p>
* The form must have an id attribute in the markup or have MarkupIdSetter added.
*
* @see AjaxEventBehavior
*
* @since 1.2
*
* @author Igor Vaynberg (ivaynberg)
*
*/
public abstract class AjaxFormSubmitBehavior extends AjaxEventBehavior
{
  private static final long serialVersionUID = 1L;

  /**
   * should never be accessed directly (thus the __ cause its overkil to create a super class),
   * instead always use #getForm()
   */
  private Form<?> __form;

  /**
   * Constructor. This constructor can only be used when the component this behavior is attached
   * to is inside a form.
   *
   * @param event
   *            javascript event this behavior is attached to, like onclick
   */
  public AjaxFormSubmitBehavior(String event)
  {
    this(null, event);
  }

  /**
   * Construct.
   *
   * @param form
   *            form that will be submitted
   * @param event
   *            javascript event this behavior is attached to, like onclick
   */
  public AjaxFormSubmitBehavior(Form<?> form, String event)
  {
    super(event);
    __form = form;

    if (form != null)
    {
      form.setOutputMarkupId(true);
    }
  }

  /**
   *
   * @return Form that will be submitted by this behavior
   */
  protected Form<?> getForm()
  {
    if (__form == null)
    {
      // try to find form in the hierarchy of owning component
      Component component = getComponent();
      __form = component.findParent(Form.class);
      if (__form == null)
      {
        throw new IllegalStateException(
          "form was not specified in the constructor and cannot "
            + "be found in the hierarchy of the component this behavior "
            + "is attached to");
      }
    }
    return __form;
  }

  /**
   *
   * @see org.apache.wicket.ajax.AjaxEventBehavior#getEventHandler()
   */
  @Override
  protected CharSequence getEventHandler()
  {
    final String formId = getForm().getMarkupId();
    final CharSequence url = getCallbackUrl();

    AppendingStringBuffer call = new AppendingStringBuffer("wicketSubmitFormById('").append(
      formId).append("', '").append(url).append("', ");

    if (getComponent() instanceof IFormSubmittingComponent)
    {
      call.append("'")
        .append(((IFormSubmittingComponent)getComponent()).getInputName())
        .append("' ");
    }
    else
    {
      call.append("null");
    }

    return generateCallbackScript(call) + ";";
  }

  /**
   *
   * @see org.apache.wicket.ajax.AjaxEventBehavior#onEvent(org.apache.wicket.ajax.AjaxRequestTarget)
   */
  @Override
  protected void onEvent(AjaxRequestTarget target)
  {
    getForm().getRootForm().onFormSubmitted();
    if (!getForm().isSubmitted())
    { // only process the form submission if the form was actually submitted -> needs to be
      // enabled and visible
      return;
    }
    if (!getForm().hasError())
    {
      onSubmit(target);
    }
    if (getForm().findParent(Page.class) != null)
    {
      /*
       * there can be cases when a form is replaced with another component in the onsubmit()
       * handler of this behavior. in that case form no longer has a page and so calling
       * .hasError on it will cause an exception, thus the check above.
       */
      if (getForm().hasError())
      {
        onError(target);
      }
    }
  }

  /**
   * Listener method that is invoked after the form has been submitted and processed without
   * errors
   *
   * @param target
   */
  protected abstract void onSubmit(AjaxRequestTarget target);

  /**
   * Listener method invoked when the form has been processed and errors occurred
   *
   * @param target
   *
   */
  protected abstract void onError(AjaxRequestTarget target);

  /**
   *
   * @see org.apache.wicket.ajax.AbstractDefaultAjaxBehavior#getPreconditionScript()
   */
  @Override
  protected CharSequence getPreconditionScript()
  {
    return "return Wicket.$$(this)&&Wicket.$$('" + getForm().getMarkupId() + "')";
  }
}
TOP

Related Classes of org.apache.wicket.ajax.form.AjaxFormSubmitBehavior

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.