9
9
import com .intellij .openapi .fileEditor .FileEditor ;
10
10
import com .intellij .openapi .module .Module ;
11
11
import com .intellij .openapi .module .ModuleUtilCore ;
12
- import com .intellij .openapi .project .DumbAware ;
13
12
import com .intellij .openapi .project .Project ;
14
- import com .intellij .openapi .util .Key ;
15
13
import com .intellij .openapi .vfs .VirtualFile ;
16
14
import com .intellij .psi .PsiFile ;
17
15
import com .intellij .psi .PsiManager ;
18
16
import com .intellij .ui .EditorNotificationPanel ;
19
- import com .intellij .ui .EditorNotifications ;
17
+ import com .intellij .ui .EditorNotificationProvider ;
20
18
import com .jetbrains .lang .dart .DartFileType ;
21
19
import com .jetbrains .lang .dart .DartLanguage ;
22
20
import icons .FlutterIcons ;
25
23
import io .flutter .sdk .FlutterSdk ;
26
24
import io .flutter .utils .FlutterModuleUtils ;
27
25
import org .jetbrains .annotations .NotNull ;
26
+ import org .jetbrains .annotations .Nullable ;
28
27
29
- public class SdkConfigurationNotificationProvider extends EditorNotifications .Provider <EditorNotificationPanel >
30
- implements DumbAware {
31
- private static final Key <EditorNotificationPanel > KEY = Key .create ("FlutterWrongDartSdkNotification" );
28
+ import javax .swing .*;
29
+ import java .util .function .Function ;
32
30
31
+ public class SdkConfigurationNotificationProvider implements EditorNotificationProvider {
33
32
private static final Logger LOG = Logger .getInstance (SdkConfigurationNotificationProvider .class );
34
33
35
- @ NotNull private final Project project ;
34
+ @ NotNull
35
+ private final Project project ;
36
36
37
37
public SdkConfigurationNotificationProvider (@ NotNull Project project ) {
38
38
this .project = project ;
39
39
}
40
40
41
- @ SuppressWarnings ("SameReturnValue" )
42
- private static EditorNotificationPanel createNoFlutterSdkPanel (Project project ) {
43
- final EditorNotificationPanel panel = new EditorNotificationPanel ();
44
- panel .icon (FlutterIcons .Flutter );
45
- panel .setText (FlutterBundle .message ("flutter.no.sdk.warning" ));
46
- panel .createActionLabel ("Dismiss" , () -> panel .setVisible (false ));
47
- panel .createActionLabel ("Open Flutter settings" , () -> FlutterUtils .openFlutterSettings (project ));
48
- return panel ;
49
- }
50
-
51
- @ NotNull
52
- @ Override
53
- public Key <EditorNotificationPanel > getKey () {
54
- return KEY ;
55
- }
56
-
57
41
@ Override
58
- public EditorNotificationPanel createNotificationPanel (@ NotNull VirtualFile file ,
59
- @ NotNull FileEditor fileEditor ,
60
- @ NotNull Project project ) {
42
+ public @ Nullable Function <? super @ NotNull FileEditor , ? extends @ Nullable JComponent > collectNotificationData (@ NotNull Project project ,
43
+ @ NotNull VirtualFile file ) {
61
44
// If this is a Bazel configured Flutter project, exit immediately, neither of the notifications should be shown for this project type.
62
45
if (FlutterModuleUtils .isFlutterBazelProject (project )) return null ;
63
46
@@ -71,9 +54,17 @@ public EditorNotificationPanel createNotificationPanel(@NotNull VirtualFile file
71
54
72
55
final FlutterSdk flutterSdk = FlutterSdk .getFlutterSdk (project );
73
56
if (flutterSdk == null ) {
74
- return createNoFlutterSdkPanel (project );
57
+ return fileEditor -> createNoFlutterSdkPanel (fileEditor , project );
75
58
}
76
-
77
59
return null ;
78
60
}
61
+
62
+ private static EditorNotificationPanel createNoFlutterSdkPanel (@ NotNull FileEditor fileEditor , @ NotNull Project project ) {
63
+ final EditorNotificationPanel panel = new EditorNotificationPanel ();
64
+ panel .icon (FlutterIcons .Flutter );
65
+ panel .setText (FlutterBundle .message ("flutter.no.sdk.warning" ));
66
+ panel .createActionLabel ("Dismiss" , () -> panel .setVisible (false ));
67
+ panel .createActionLabel ("Open Flutter settings" , () -> FlutterUtils .openFlutterSettings (project ));
68
+ return panel ;
69
+ }
79
70
}
0 commit comments