blob: 135638c3ce21cffc19c0634d61dae552829eb4f7 [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* 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.android.tools.idea.actions;
import com.android.tools.idea.model.AndroidModuleInfo;
import com.android.tools.idea.templates.TemplateManager;
import com.android.tools.idea.templates.TemplateMetadata;
import com.android.tools.idea.npw.NewAndroidActivityWizard;
import com.google.common.collect.ImmutableSet;
import com.intellij.ide.IdeView;
import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.vfs.VirtualFile;
import icons.AndroidIcons;
import org.jetbrains.android.facet.AndroidFacet;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.io.File;
import java.util.Set;
/**
* An action to launch a wizard to create a component from a template.
*/
public class NewAndroidComponentAction extends AnAction {
// These categories will be using a new wizard
public static Set<String> NEW_WIZARD_CATEGORIES = ImmutableSet.of("Activity", "Google");
private final String myTemplateCategory;
private final String myTemplateName;
private final int myMinSdkVersion;
public NewAndroidComponentAction(@NotNull String templateCategory, @NotNull String templateName, @Nullable TemplateMetadata metadata) {
super(templateName, "Create a new " + templateName, null);
myTemplateCategory = templateCategory;
myTemplateName = templateName;
if (isActivityTemplate()) {
getTemplatePresentation().setIcon(AndroidIcons.Activity);
}
else {
getTemplatePresentation().setIcon(AndroidIcons.AndroidFile);
}
if (metadata != null) {
myMinSdkVersion = metadata.getMinSdk();
}
else {
myMinSdkVersion = 0;
}
}
private boolean isActivityTemplate() {
return NEW_WIZARD_CATEGORIES.contains(myTemplateCategory);
}
@Override
public void update(AnActionEvent e) {
DataContext dataContext = e.getDataContext();
Module module = LangDataKeys.MODULE.getData(dataContext);
if (module == null) {
return;
}
AndroidModuleInfo moduleInfo = AndroidModuleInfo.get(module);
if (moduleInfo == null) {
return;
}
int moduleMinSdkVersion = moduleInfo.getMinSdkVersion().getApiLevel();
if (myMinSdkVersion > moduleMinSdkVersion) {
Presentation presentation = getTemplatePresentation();
presentation.setText(myTemplateName + " (Requires minSdk >= " + myMinSdkVersion + ")");
presentation.setEnabled(false);
}
}
@Override
public void actionPerformed(AnActionEvent e) {
DataContext dataContext = e.getDataContext();
IdeView view = LangDataKeys.IDE_VIEW.getData(dataContext);
if (view == null) {
return;
}
Module module = LangDataKeys.MODULE.getData(dataContext);
if (module == null) {
return;
}
AndroidFacet facet = AndroidFacet.getInstance(module);
if (facet == null || facet.getAndroidModel() == null) {
return;
}
VirtualFile targetFile = CommonDataKeys.VIRTUAL_FILE.getData(dataContext);
File file = TemplateManager.getInstance().getTemplateFile(myTemplateCategory, myTemplateName);
NewAndroidActivityWizard wizard = new NewAndroidActivityWizard(module, targetFile, file);
wizard.init();
wizard.show();
/*
// TODO: Implement the getCreatedElements call for the wizard
final PsiElement[] createdElements = dialog.getCreatedElements();
for (PsiElement createdElement : createdElements) {
view.selectElement(createdElement);
}
*/
}
}