Package com.cubusmail.gwtui.client.actions.folder

Source Code of com.cubusmail.gwtui.client.actions.folder.RenameFolderAction

/* RenameFolderAction.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.folder;

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

import com.cubusmail.gwtui.client.actions.GWTFolderAction;
import com.cubusmail.gwtui.client.events.EventBroker;
import com.cubusmail.gwtui.client.exceptions.GWTExceptionHandler;
import com.cubusmail.gwtui.client.exceptions.folder.GWTMailFolderException;
import com.cubusmail.gwtui.client.exceptions.folder.GWTMailFolderExistException;
import com.cubusmail.gwtui.client.model.GWTMailFolder;
import com.cubusmail.gwtui.client.panels.PanelRegistry;
import com.cubusmail.gwtui.client.services.ServiceProvider;
import com.cubusmail.gwtui.client.util.ImageProvider;
import com.cubusmail.gwtui.client.util.TextProvider;

/**
* Rename mail folder.
*
* @author Juergen Schlierf
*/
public class RenameFolderAction extends GWTFolderAction implements AsyncCallback<String> {

  /**
   *
   */
  public RenameFolderAction() {

    super();
    setText( TextProvider.get().actions_renamefolder_text() );
    setImageName( ImageProvider.MAIL_FOLDER_RENAME );
    setTooltipText( TextProvider.get().actions_renamefolder_tooltip() );
  }

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

    MessageBox.prompt( TextProvider.get().actions_rename_contactfolder_text(),
        TextProvider.get().actions_renamefolder_question(), new MessageBox.PromptCallback() {

          public void execute( String btnID, String text ) {

            if ( "ok".equals( btnID ) ) {
              if ( getSelectedTreeNode() != null ) {
                if ( getSelectedTreeNode().getUserObject() instanceof GWTMailFolder ) {
                  GWTMailFolder folder = (GWTMailFolder) getSelectedTreeNode().getUserObject();
                  renameFolder( folder.getId(), text );
                }
              }
            }
          }
        } );

  }

  private void renameFolder( String folderId, String newName ) {

    PanelRegistry.LEFT_PANEL.mask();
    ServiceProvider.getMailboxService().renameFolder( folderId, newName, this );
  }

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

    GWTExceptionHandler.handleException( caught );
    GWTMailFolderException e = (GWTMailFolderException) caught;
    if ( caught instanceof GWTMailFolderExistException ) {
      MessageBox.alert( TextProvider.get().common_error(), TextProvider.get().exception_folder_already_exist(
          e.getFolderName() ) );
    } else {
      MessageBox.alert( TextProvider.get().common_error(), TextProvider.get().exception_folder_rename(
          e.getFolderName() ) );
    }
    EventBroker.get().fireFoldersReload();
    PanelRegistry.LEFT_PANEL.unmask();
  }

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

    if ( getSelectedTreeNode() != null ) {
      getSelectedTreeNode().setText( result );
    }
    PanelRegistry.LEFT_PANEL.unmask();
  }
}
TOP

Related Classes of com.cubusmail.gwtui.client.actions.folder.RenameFolderAction

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.