blob: 1b17fc7aa8cd7183215e978bea7b328c7352fa46 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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.intellij.facet.impl.ui.actions;
import com.intellij.facet.*;
import com.intellij.facet.impl.ui.FacetEditorFacade;
import com.intellij.framework.FrameworkTypeEx;
import com.intellij.framework.addSupport.impl.AddFrameworkSupportInProjectStructureAction;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.module.ModuleType;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.roots.ui.configuration.ProjectStructureConfigurable;
import com.intellij.openapi.roots.ui.configuration.projectRoot.ModuleStructureConfigurable;
import java.util.Collection;
import java.util.SortedMap;
import java.util.TreeMap;
/**
* @author nik
*/
public class AddFacetToModuleAction extends AnAction implements DumbAware {
private static final Logger LOG = Logger.getInstance("#com.intellij.facet.impl.ui.actions.AddFacetToModuleAction");
private final FacetEditorFacade myEditor;
private final Project myProject;
private final FacetType myType;
private AddFacetToModuleAction(final FacetEditorFacade editor, Project project, final FacetType type) {
super(type.getPresentableName(), null, type.getIcon());
myEditor = editor;
myProject = project;
myType = type;
}
public void actionPerformed(AnActionEvent e) {
FacetInfo parent = myEditor.getSelectedFacetInfo();
final FacetTypeId<?> underlyingFacetType = myType.getUnderlyingFacetType();
Facet facet;
if (parent == null && underlyingFacetType == null || parent != null && parent.getFacetType().getId() == underlyingFacetType) {
facet = myEditor.createFacet(parent, myType);
}
else {
LOG.assertTrue(parent != null);
final FacetInfo grandParent = myEditor.getParent(parent);
LOG.assertTrue(grandParent == null && underlyingFacetType == null ||
grandParent != null && grandParent.getFacetType().getId() == underlyingFacetType);
facet = myEditor.createFacet(grandParent, myType);
}
ProjectStructureConfigurable.getInstance(myProject).select(facet, true);
}
public void update(AnActionEvent e) {
e.getPresentation().setVisible(isVisible(myEditor, myType));
}
public static boolean isVisible(FacetEditorFacade editor, final FacetType<?, ?> type) {
final ModuleType moduleType = editor.getSelectedModuleType();
if (moduleType == null || !type.isSuitableModuleType(moduleType)) {
return false;
}
final FacetTypeId<?> underlyingTypeId = type.getUnderlyingFacetType();
final FacetInfo selectedFacet = editor.getSelectedFacetInfo();
if (selectedFacet == null) {
return underlyingTypeId == null && canAddFacet(null, type, editor);
}
final FacetTypeId selectedFacetType = selectedFacet.getFacetType().getId();
if (selectedFacetType == underlyingTypeId) {
return canAddFacet(selectedFacet, type, editor);
}
final FacetInfo parent = editor.getParent(selectedFacet);
if (!canAddFacet(parent, type, editor)) {
return false;
}
return parent == null && underlyingTypeId == null || parent != null && parent.getFacetType().getId() == underlyingTypeId;
}
private static boolean canAddFacet(final FacetInfo selectedFacet, final FacetType<?, ?> type, final FacetEditorFacade editor) {
return !(type.isOnlyOneFacetAllowed() && editor.nodeHasFacetOfType(selectedFacet, type.getId()));
}
public static Collection<AnAction> createAddFrameworkActions(FacetEditorFacade editor, Project project) {
SortedMap<String, AnAction> actions = new TreeMap<String, AnAction>();
for (FrameworkTypeEx frameworkType : FrameworkTypeEx.EP_NAME.getExtensions()) {
final AnAction action = new AddFrameworkSupportInProjectStructureAction(frameworkType, frameworkType.createProvider(),
ModuleStructureConfigurable.getInstance(project));
actions.put(frameworkType.getPresentableName(), action);
}
for (FacetType type : FacetTypeRegistry.getInstance().getFacetTypes()) {
actions.put(type.getPresentableName(), new AddFacetToModuleAction(editor, project, type));
}
return actions.values();
}
}