Package org.apache.sling.ide.eclipse.ui.actions

Source Code of org.apache.sling.ide.eclipse.ui.actions.JcrNodeExportContentAction

/*
* 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.sling.ide.eclipse.ui.actions;

import org.apache.sling.ide.eclipse.core.internal.ProjectHelper;
import org.apache.sling.ide.eclipse.ui.internal.ExportWizard;
import org.apache.sling.ide.eclipse.ui.nav.model.JcrNode;
import org.apache.sling.ide.eclipse.ui.wizards.ImportWizard;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IObjectActionDelegate;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.PlatformUI;
import org.eclipse.wst.server.core.IModule;
import org.eclipse.wst.server.core.ServerUtil;

/** Export content at a certain node level**/
public class JcrNodeExportContentAction implements IObjectActionDelegate {

  private JcrNode node;
  private Shell shell;

  /**
   * The constructor.
   */
  public JcrNodeExportContentAction() {
  }

  /**
   * The action has been activated. The argument of the
   * method represents the 'real' action sitting
   * in the workbench UI.
   * @see IWorkbenchWindowActionDelegate#run
   */
  public void run(IAction action) {
    if (this.node==null) {
      return;
    }
        IProject project = node.getProject();

        if (!ProjectHelper.isContentProject(project)) {
            return;
        }

        IModule module = ServerUtil.getModule(project);

        if (module == null) {
            return;
        }

        ExportWizard wiz = new ExportWizard();
        IResource resource = node.getResourceForImportExport();
        if (resource==null) {
            return;
        }
        wiz.init(PlatformUI.getWorkbench(), resource);

        WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell(), wiz);
        dialog.open();
  }

  /**
   * Selection in the workbench has been changed. We
   * can change the state of the 'real' action here
   * if we want, but this can only happen after
   * the delegate has been created.
   * @see IWorkbenchWindowActionDelegate#selectionChanged
   */
  public void selectionChanged(IAction action, ISelection selection) {
    if (selection instanceof IStructuredSelection) {
      IStructuredSelection iss = (IStructuredSelection) selection;
      Object element = iss.getFirstElement();
      if (element instanceof JcrNode) {
          action.setEnabled(true);
          this.node = (JcrNode) element;
        return;
      }
    }
    action.setEnabled(false);
    this.node = null;
  }

  @Override
  public void setActivePart(IAction action, IWorkbenchPart targetPart) {
    this.shell = targetPart.getSite().getWorkbenchWindow().getShell();
  }
}
TOP

Related Classes of org.apache.sling.ide.eclipse.ui.actions.JcrNodeExportContentAction

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.