Package com.daikit.daikit4gxt.client.ui.popup

Source Code of com.daikit.daikit4gxt.client.ui.popup.MyLocalFormPopup

/**
* Copyright (C) 2013 DaiKit.com - daikit4gxt module (admin@daikit.com)
*
*         Project home : http://code.daikit.com/daikit4gxt
*
* 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 com.daikit.daikit4gxt.client.ui.popup;

import com.daikit.commons.shared.exception.DkUnsupportedMethodException;
import com.daikit.daikit4gxt.client.DkMain;
import com.daikit.daikit4gxt.client.editor.DkClearValidationVisitor;
import com.daikit.daikit4gxt.client.editor.DkPreFlushVisitor;
import com.daikit.daikit4gxt.client.editor.DkSimpleBeanEditorDriver;
import com.google.gwt.editor.client.Editor;


/**
* A local edition popup.
*
* @author tcaselli
* @version $Revision$ Last modifier: $Author$ Last commit: $Date$
* @param <BEANTYPE>
*           the bean type
* @param <EDITORTYPE>
*           the editor type for editing BEANTYPE
*/
public abstract class MyLocalFormPopup<BEANTYPE, EDITORTYPE extends Editor<BEANTYPE>> extends MyFormDialog
{

  protected String labelCorrectErrorsTitle = DkMain.i18n().error_validation_popup_correct_fields_before_save_title();
  protected String labelCorrectErrorsMessage = DkMain.i18n().error_validation_popup_correct_fields_before_save_message();

  @SuppressWarnings("rawtypes")
  private DkSimpleBeanEditorDriver driver;

  private MyLocalFormPopupCallback<BEANTYPE> callback;
  private BEANTYPE editedModel;
  private final EDITORTYPE editor;

  /**
   * Constructor
   *
   * @param editor
   *           the editor of type EDITORTYPE
   */
  public MyLocalFormPopup(final EDITORTYPE editor)
  {
    super(false, 1, DisplayableButton.CANCEL, DisplayableButton.OK, DisplayableButton.RESET);
    this.editor = editor;
    getSetupDriver().initialize(editor);

  }

  /**
   * Create (the first time) and get the driver.
   *
   * @return the edition driver
   */
  @SuppressWarnings("unchecked")
  protected DkSimpleBeanEditorDriver<BEANTYPE, EDITORTYPE> getSetupDriver()
  {
    if (driver == null)
    {
      driver = getDriver();
      driver.initialize(editor);
    }
    return driver;
  }

  /**
   * For more information about GWT Editor :<br>
   * <a href="https://developers.google.com/web-toolkit/doc/latest/DevGuideUiEditors">
   * https://developers.google.com/web-toolkit/doc/latest/DevGuideUiEditors</a>
   *
   * @return the editor driver
   */
  protected abstract DkSimpleBeanEditorDriver<BEANTYPE, EDITORTYPE> getDriver();

  /**
   * Use {@link #show(MyLocalFormPopupCallback)} instead.
   */
  @Deprecated
  @Override
  public void show()
  {
    throw new DkUnsupportedMethodException("Use show(MyLocalFormPopupCallback) instead");
  }

  /**
   * Show the popup.
   *
   * @param callback
   */
  public void show(final MyLocalFormPopupCallback<BEANTYPE> callback)
  {
    this.callback = callback;
    getSetupDriver().edit(null);
    editedModel = createBeanInstance();
    getSetupDriver().accept(new DkClearValidationVisitor());
    getSetupDriver().edit(editedModel);
    super.show();
  }

  protected abstract BEANTYPE createBeanInstance();

  @Override
  protected void onButtonOkClicked()
  {
    super.onButtonOkClicked();
    onButtonSaveOrOkClicked();
  }

  @Override
  protected void onButtonResetClicked()
  {
    getSetupDriver().accept(new DkClearValidationVisitor());
    getSetupDriver().edit(editedModel);
    invalidateUi();
  }

  @Override
  protected void onButtonSaveClicked()
  {
    super.onButtonSaveClicked();
    onButtonSaveOrOkClicked();
  }

  protected void onButtonSaveOrOkClicked()
  {
    driver.accept(new DkPreFlushVisitor(true));
    final BEANTYPE updatedModel = getSetupDriver().flush();
    if (driver.hasErrors())
    {
      MyMessageBox.alert(labelCorrectErrorsTitle, labelCorrectErrorsMessage);
    }
    else
    {
      hide();
      if (callback != null)
      {
        callback.onButtonOkClicked(updatedModel);
      }
    }
  }

  /**
   * @return the editedModel
   */
  public BEANTYPE getEditedModel()
  {
    return editedModel;
  }

  /**
   * @return the editor
   */
  public EDITORTYPE getEditor()
  {
    return editor;
  }

}
TOP

Related Classes of com.daikit.daikit4gxt.client.ui.popup.MyLocalFormPopup

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.