7
7
import com .chuntung .plugin .gistsnippet .action .CustomComboBoxAction ;
8
8
import com .chuntung .plugin .gistsnippet .action .DeleteAction ;
9
9
import com .chuntung .plugin .gistsnippet .action .OpenInBrowserAction ;
10
+ import com .chuntung .plugin .gistsnippet .action .ReloadAction ;
10
11
import com .chuntung .plugin .gistsnippet .dto .ScopeEnum ;
11
12
import com .chuntung .plugin .gistsnippet .dto .SnippetNodeDTO ;
12
13
import com .chuntung .plugin .gistsnippet .dto .SnippetRootNode ;
15
16
import com .chuntung .plugin .gistsnippet .service .GistException ;
16
17
import com .chuntung .plugin .gistsnippet .service .GistSnippetService ;
17
18
import com .chuntung .plugin .gistsnippet .service .GithubAccountHolder ;
19
+ import com .intellij .icons .AllIcons ;
18
20
import com .intellij .ide .BrowserUtil ;
19
21
import com .intellij .ide .util .PropertiesComponent ;
20
22
import com .intellij .ide .util .treeView .AbstractTreeStructure ;
34
36
import com .intellij .openapi .project .Project ;
35
37
import com .intellij .openapi .ui .DialogWrapper ;
36
38
import com .intellij .openapi .util .IconLoader ;
39
+ import com .intellij .ui .ScrollPaneFactory ;
37
40
import com .intellij .ui .components .JBTabbedPane ;
38
41
import com .intellij .ui .components .labels .DropDownLink ;
39
42
import com .intellij .ui .components .labels .LinkLabel ;
55
58
import javax .swing .tree .DefaultMutableTreeNode ;
56
59
import javax .swing .tree .TreePath ;
57
60
import java .awt .*;
58
- import java .awt .event .MouseAdapter ;
59
- import java .awt .event .MouseEvent ;
60
61
import java .lang .reflect .Constructor ;
61
62
import java .util .ArrayList ;
62
63
import java .util .List ;
@@ -76,6 +77,7 @@ public class InsertGistDialog extends DialogWrapper {
76
77
private JTextField textField1 ;
77
78
private JComboBox languageComboBox ;
78
79
private JComboBox sortByComboBox ;
80
+ private JScrollPane scrollPane ;
79
81
80
82
private Project project ;
81
83
private final boolean insertable ;
@@ -112,18 +114,8 @@ private void createUIComponents() {
112
114
// Replace JTree with SimpleTree here due to ui designer fails to preview SimpleTree.
113
115
snippetTree = new SimpleTree ();
114
116
snippetTree .addTreeSelectionListener (e -> onSelect (e ));
115
- snippetTree .addMouseListener (new MouseAdapter () {
116
- @ Override
117
- public void mouseClicked (MouseEvent e ) {
118
- // double click to load forcibly
119
- if (e .getButton () == e .BUTTON1 && e .getClickCount () == 2 ) {
120
- DefaultMutableTreeNode selected = (DefaultMutableTreeNode ) ((JTree ) e .getComponent ()).getLastSelectedPathComponent ();
121
- if (selected != null && selected .isLeaf ()) {
122
- loadFileContent (project , selected , true );
123
- }
124
- }
125
- }
126
- });
117
+
118
+ scrollPane = ScrollPaneFactory .createScrollPane (snippetTree , true );
127
119
128
120
// use tree structure for rendering
129
121
snippetRoot = new SnippetRootNode ();
@@ -226,7 +218,13 @@ private ActionGroup getPopupActions() {
226
218
// delete gist
227
219
group .add (new DeleteAction (snippetTree , snippetStructure , snippetRoot , project ));
228
220
229
- // open in browser
221
+ // reload gist file
222
+ group .add (new ReloadAction (snippetTree , e -> {
223
+ DefaultMutableTreeNode node = (DefaultMutableTreeNode ) snippetTree .getLastSelectedPathComponent ();
224
+ loadFileContent (project , node , true );
225
+ }));
226
+
227
+ // open in browser for gist or file
230
228
group .add (new OpenInBrowserAction (snippetTree ));
231
229
232
230
return group ;
@@ -264,6 +262,18 @@ public void actionPerformed(@NotNull AnActionEvent e) {
264
262
)
265
263
);
266
264
265
+ // refresh own/starred
266
+ group .add (new AnAction ("Refresh" , "Refresh gist list" , AllIcons .Actions .Refresh ) {
267
+ @ Override
268
+ public void actionPerformed (@ NotNull AnActionEvent e ) {
269
+ if ("Own" .equals (scopeAction .getText ())) {
270
+ loadOwnGist (true );
271
+ } else {
272
+ loadStarredGist (true );
273
+ }
274
+ }
275
+ });
276
+
267
277
group .addSeparator ();
268
278
269
279
group .add (new ExpandAllAction (snippetTree ));
@@ -273,8 +283,6 @@ public void actionPerformed(@NotNull AnActionEvent e) {
273
283
}
274
284
275
285
private void initYoursPane (List <GithubAccount > accountList ) {
276
- UIUtil .removeScrollBorder (yoursSplitPane );
277
-
278
286
yoursSplitPane .setVisible (true );
279
287
280
288
// init toolbar
@@ -284,7 +292,7 @@ private void initYoursPane(List<GithubAccount> accountList) {
284
292
((JPanel ) yoursSplitPane .getLeftComponent ()).add (actionToolbar .getComponent (), BorderLayout .NORTH );
285
293
286
294
// load remembered width
287
- int width = PropertiesComponent .getInstance ().getInt (SPLIT_LEFT_WIDTH , 220 );
295
+ int width = PropertiesComponent .getInstance ().getInt (SPLIT_LEFT_WIDTH , 240 );
288
296
yoursSplitPane .getLeftComponent ().setPreferredSize (new Dimension (width , -1 ));
289
297
290
298
// bind editor
@@ -404,8 +412,10 @@ private <T> T getUserObject(DefaultMutableTreeNode node) {
404
412
}
405
413
406
414
private void loadOwnGist (boolean forced ) {
407
- // reset type filter
408
- typeAction .reset ();
415
+ // reset type filter for switch
416
+ if (!forced ) {
417
+ typeAction .reset ();
418
+ }
409
419
410
420
// com.intellij.util.io.HttpRequests#process does not allow Network accessed in dispatch thread or read action
411
421
// start a background task to bypass api limitation
@@ -443,7 +453,15 @@ public void run(@NotNull ProgressIndicator indicator) {
443
453
444
454
private void renderTree (List <GistDTO > gistList , ScopeEnum scope ) {
445
455
snippetRoot .resetChildren (gistList , scope );
446
- snippetStructure .invalidate ();
456
+
457
+ // filter by type if selected
458
+ if ("Public" .equals (typeAction .getText ())) {
459
+ filterByPublic (true );
460
+ } else if ("Secret" .equals (typeAction .getText ())) {
461
+ filterByPublic (false );
462
+ } else {
463
+ snippetStructure .invalidate ();
464
+ }
447
465
}
448
466
449
467
@ Nullable
0 commit comments