Skip to content

Commit

Permalink
fixed notification show for files in a different project model
Browse files Browse the repository at this point in the history
  • Loading branch information
LeFrosch committed Sep 19, 2024
1 parent fbe6d89 commit 63f65b9
Showing 1 changed file with 26 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.google.idea.blaze.clwb;

import A.d.Vi;
import com.google.idea.blaze.base.lang.buildfile.language.BuildFileType;
import com.google.idea.blaze.base.settings.Blaze;
import com.google.idea.blaze.base.wizard2.BazelImportCurrentProjectAction;
Expand All @@ -25,6 +26,7 @@
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.ui.EditorNotificationProvider;
import com.jetbrains.cidr.lang.daemon.OCFileScopeProvider;
import com.jetbrains.cidr.project.ui.ProjectStatusHelperKt;
import com.jetbrains.cidr.project.ui.notifications.EditorNotificationWarningProvider;
import com.jetbrains.cidr.project.ui.notifications.ProjectNotification;
Expand Down Expand Up @@ -75,26 +77,38 @@ public static void register(Project project) {
registered = true;
}

@NotNull
@Override
public List<AnAction> collectFixes(@NotNull Project project, @Nullable VirtualFile file,
@NotNull DataContext dataContext) {
if (file == null) {
return List.of();
}

private static Boolean isBazelAwareFile(Project project, VirtualFile file) {
if (Blaze.isBlazeProject(project)) {
return List.of();
return false;
}

if (!isProjectAwareFile(file, project) && file.getFileType() != BuildFileType.INSTANCE) {
return List.of();
return false;
}

if (OCFileScopeProvider.Companion.getProjectSourceLocationKind(project, file).isInProject()) {
return false;
}

if (!BazelImportCurrentProjectAction.projectCouldBeImported(project)) {
return false;
}

if (project.getBasePath() == null) {
return false;
}

return true;
}

@NotNull
@Override
public List<AnAction> collectFixes(@NotNull Project project, @Nullable VirtualFile file, @NotNull DataContext dataContext) {
if (file == null || !isBazelAwareFile(project, file)) {
return List.of();
}

String root = project.getBasePath();
final var root = project.getBasePath();
if (root == null) {
return List.of();
}
Expand Down Expand Up @@ -127,24 +141,11 @@ public ProjectNotification getProjectNotification(@NotNull Project project,
@Nullable
@Override
public WidgetStatus getWidgetStatus(@NotNull Project project, @Nullable VirtualFile file) {

if (Blaze.isBlazeProject(project)) {
return new DefaultWidgetStatus(Status.OK, Scope.Project, "Project is configured");
}

if (file == null) {
return null;
}

if (!isProjectAwareFile(file, project) && file.getFileType() != BuildFileType.INSTANCE) {
return null;
}
if (!BazelImportCurrentProjectAction.projectCouldBeImported(project)) {
return null;
}

String root = project.getBasePath();
if (root == null) {
if (file == null || !isBazelAwareFile(project, file)) {
return null;
}

Expand Down

0 comments on commit 63f65b9

Please sign in to comment.