Package com.cubusmail.gwtui.client.actions.message

Source Code of com.cubusmail.gwtui.client.actions.message.SaveMessageDraftAction

/* SaveMessageDraftAction.java

   Copyright (c) 2009 Juergen Schlierf, All Rights Reserved
  
   This file is part of Cubusmail (http://code.google.com/p/cubusmail/).
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.
 
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
 
   You should have received a copy of the GNU Lesser General Public
   License along with Cubusmail. If not, see <http://www.gnu.org/licenses/>.
  
*/
package com.cubusmail.gwtui.client.actions.message;

import com.google.gwt.user.client.rpc.AsyncCallback;
import com.gwtext.client.widgets.MessageBox;

import com.cubusmail.gwtui.client.actions.GWTAction;
import com.cubusmail.gwtui.client.events.EventBroker;
import com.cubusmail.gwtui.client.exceptions.GWTExceptionHandler;
import com.cubusmail.gwtui.client.exceptions.GWTInvalidAddressException;
import com.cubusmail.gwtui.client.model.GWTMessage;
import com.cubusmail.gwtui.client.services.GWTSessionManager;
import com.cubusmail.gwtui.client.services.ServiceProvider;
import com.cubusmail.gwtui.client.util.ImageProvider;
import com.cubusmail.gwtui.client.util.TextProvider;
import com.cubusmail.gwtui.client.windows.ComposeMessageWindow;
import com.cubusmail.gwtui.client.windows.WindowRegistry;

/**
* Save the message to draft.
*
* @author Juergen Schlierf
*/
public class SaveMessageDraftAction extends GWTAction implements AsyncCallback<Void> {

  /**
   *
   */
  public SaveMessageDraftAction() {

    super();
    setText( TextProvider.get().actions_compose_savedraft_text() );
    setImageName( ImageProvider.MSG_SAVE_DRAFT );
    setTooltipText( TextProvider.get().actions_compose_savedraft_tooltip() );
  }

  /*
   * (non-Javadoc)
   *
   * @see com.cubusmail.gwtui.client.actions.GWTAction#execute()
   */
  @Override
  public void execute() {

    if ( validate() ) {
      WindowRegistry.COMPOSE_MESSAGE_WINDOW.mask();
      GWTMessage message = WindowRegistry.COMPOSE_MESSAGE_WINDOW.get( ComposeMessageWindow.class ).getMessage();
      message.setDraft( true );
      ServiceProvider.getMailboxService().saveMessageAsDraft( message, this );
    }
  }

  private boolean validate() {

    return true;
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * com.google.gwt.user.client.rpc.AsyncCallback#onFailure(java.lang.Throwable
   * )
   */
  public void onFailure( Throwable caught ) {

    GWTExceptionHandler.handleException( caught );
    if ( caught instanceof GWTInvalidAddressException ) {
      GWTInvalidAddressException e = (GWTInvalidAddressException) caught;
      MessageBox.alert( TextProvider.get().common_error(), TextProvider.get().exception_compose_invalid_address(
          e.getAddress() ) );
    }
    else {
      MessageBox.alert( TextProvider.get().common_error(), TextProvider.get().exception_compose_save_draft() );
    }
    WindowRegistry.COMPOSE_MESSAGE_WINDOW.unmask();
  }

  /*
   * (non-Javadoc)
   *
   * @see
   * com.google.gwt.user.client.rpc.AsyncCallback#onSuccess(java.lang.Object)
   */
  public void onSuccess( Void result ) {

    WindowRegistry.COMPOSE_MESSAGE_WINDOW.unmask();
    WindowRegistry.COMPOSE_MESSAGE_WINDOW.close();
    if ( GWTSessionManager.get().getCurrentMailFolder().isDraft() ) {
      EventBroker.get().fireMessagesReload();
    }
  }
}
TOP

Related Classes of com.cubusmail.gwtui.client.actions.message.SaveMessageDraftAction

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.