7
7
8
8
import com .intellij .ide .projectView .ProjectView ;
9
9
import com .intellij .ide .projectView .actions .MarkRootActionBase ;
10
- import com .intellij .openapi .actionSystem .*;
10
+ import com .intellij .openapi .actionSystem .AnActionEvent ;
11
+ import com .intellij .openapi .actionSystem .DataContext ;
12
+ import com .intellij .openapi .actionSystem .LangDataKeys ;
13
+ import com .intellij .openapi .actionSystem .PlatformCoreDataKeys ;
11
14
import com .intellij .openapi .module .Module ;
12
15
import com .intellij .openapi .project .Project ;
13
16
import com .intellij .openapi .roots .ContentEntry ;
17
20
import com .intellij .psi .PsiElement ;
18
21
import com .magento .idea .magento2plugin .project .Settings ;
19
22
import com .magento .idea .magento2plugin .util .magento .MagentoPathUrlUtil ;
20
- import org .jetbrains .annotations .NotNull ;
21
23
import java .net .MalformedURLException ;
22
24
import java .net .URL ;
25
+ import org .jetbrains .annotations .NotNull ;
23
26
24
27
public class UnmarkDirectoryAsMagentoContentRot extends MarkRootActionBase {
25
28
private Project project ;
26
29
27
- public UnmarkDirectoryAsMagentoContentRot () {
28
- super ();
29
- }
30
-
31
30
@ Override
32
- protected void modifyRoots (VirtualFile virtualFile , ContentEntry contentEntry ) {
31
+ protected void modifyRoots (
32
+ final VirtualFile virtualFile ,
33
+ final ContentEntry contentEntry
34
+ ) {
33
35
if (project != null ) {
34
- Settings settings = Settings .getInstance (project );
36
+ final Settings settings = Settings .getInstance (project );
35
37
Settings .getInstance (project ).removeMagentoFolder (virtualFile .getUrl ());
36
38
if (settings .getMagentoFolders () != null ) {
37
39
settings .getMagentoFolders ().removeIf (folder -> {
38
- VirtualFile file = null ;
40
+ final VirtualFile file ;
39
41
try {
40
42
file = VfsUtil .findFileByURL (new URL (folder ));
41
43
} catch (MalformedURLException e ) {
@@ -50,23 +52,23 @@ protected void modifyRoots(VirtualFile virtualFile, ContentEntry contentEntry) {
50
52
}
51
53
52
54
@ Override
53
- public void update (@ NotNull AnActionEvent event ) {
55
+ public void update (@ NotNull final AnActionEvent event ) {
54
56
final DataContext context = event .getDataContext ();
55
57
final PsiElement targetElement = LangDataKeys .PSI_ELEMENT .getData (context );
56
- Module module = event .getData (PlatformCoreDataKeys .MODULE );
58
+ final Module module = event .getData (PlatformCoreDataKeys .MODULE );
57
59
if (module != null ) {
58
60
project = module .getProject ();
59
61
}
60
62
61
- if (targetElement instanceof PsiDirectory ) {
62
- Settings settings = Settings .getInstance (project );
63
- String magentoPathUrl = MagentoPathUrlUtil .execute (project );
64
- String directoryUrl = ((PsiDirectory ) targetElement ).getVirtualFile ().getUrl ();
63
+ if (targetElement instanceof PsiDirectory && project != null ) {
64
+ final String magentoPathUrl = MagentoPathUrlUtil .execute (project );
65
+ final String directoryUrl = ((PsiDirectory ) targetElement ).getVirtualFile ().getUrl ();
65
66
if (magentoPathUrl != null && magentoPathUrl .equals (directoryUrl )) {
66
67
event .getPresentation ().setEnabledAndVisible (false );
67
68
return ;
68
69
}
69
70
71
+ final Settings settings = Settings .getInstance (project );
70
72
if (settings .containsMagentoFolder (directoryUrl )) {
71
73
event .getPresentation ().setEnabledAndVisible (true );
72
74
return ;
@@ -77,7 +79,10 @@ public void update(@NotNull AnActionEvent event) {
77
79
}
78
80
79
81
@ Override
80
- protected boolean isEnabled (@ NotNull RootsSelection rootsSelection , @ NotNull Module module ) {
82
+ protected boolean isEnabled (
83
+ @ NotNull final RootsSelection rootsSelection ,
84
+ @ NotNull final Module module
85
+ ) {
81
86
return false ;
82
87
}
83
88
}
0 commit comments