@@ -40,20 +40,18 @@ export class CustomJQLViewProvider implements TreeDataProvider<TreeItem>, Dispos
40
40
private _onDidChangeTreeData = new EventEmitter < TreeItem | undefined | void > ( ) ;
41
41
readonly onDidChangeTreeData = this . _onDidChangeTreeData . event ;
42
42
43
- private _jqlEntries : JQLEntry [ ] = [ ] ;
44
-
45
43
constructor ( ) {
46
44
this . _disposable = Disposable . from (
47
45
Container . jqlManager . onDidJQLChange ( this . refresh , this ) ,
48
46
Container . siteManager . onDidSitesAvailableChange ( this . refresh , this ) ,
49
47
commands . registerCommand ( Commands . RefreshCustomJqlExplorer , this . refresh , this ) ,
50
48
) ;
51
49
52
- this . _jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
53
-
54
50
window . createTreeView ( CustomJQLViewProviderId , { treeDataProvider : this } ) ;
55
51
56
- if ( this . _jqlEntries . length > 0 ) {
52
+ const jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
53
+
54
+ if ( jqlEntries . length > 0 ) {
57
55
setCommandContext ( CommandContext . CustomJQLExplorer , Container . config . jira . explorer . enabled ) ;
58
56
}
59
57
@@ -64,8 +62,8 @@ export class CustomJQLViewProvider implements TreeDataProvider<TreeItem>, Dispos
64
62
65
63
private onConfigurationChanged ( e : ConfigurationChangeEvent ) {
66
64
if ( configuration . changed ( e , 'jira.jqlList' ) || configuration . changed ( e , 'jira.explorer' ) ) {
67
- this . _jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
68
- if ( this . _jqlEntries . length > 0 ) {
65
+ const jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
66
+ if ( jqlEntries . length > 0 ) {
69
67
setCommandContext ( CommandContext . CustomJQLExplorer , Container . config . jira . explorer . enabled ) ;
70
68
} else {
71
69
setCommandContext ( CommandContext . CustomJQLExplorer , false ) ;
@@ -90,9 +88,9 @@ export class CustomJQLViewProvider implements TreeDataProvider<TreeItem>, Dispos
90
88
} else {
91
89
SearchJiraHelper . clearIssues ( CustomJQLViewProviderId ) ;
92
90
93
- this . _jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
94
- return this . _jqlEntries . length
95
- ? this . _jqlEntries . map ( ( jqlEntry ) => new JiraIssueQueryNode ( jqlEntry ) )
91
+ const jqlEntries = Container . jqlManager . getCustomJQLEntries ( ) ;
92
+ return jqlEntries . length
93
+ ? jqlEntries . map ( ( jqlEntry ) => new JiraIssueQueryNode ( jqlEntry ) )
96
94
: [ CustomJQLViewProvider . _treeItemConfigureJqlMessage ] ;
97
95
}
98
96
}
0 commit comments