Skip to content

Commit c27eca9

Browse files
committed
fix minor issues
1 parent 93f2765 commit c27eca9

File tree

8 files changed

+97
-31
lines changed

8 files changed

+97
-31
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
![ci-status](https://travis-ci.org/chuntungho/gist-snippet.svg?branch=master)
44

5-
A code snippet tool based on GitHub gist, which provides with an ability to fetch secret or starred gist of GitHub accounts.
6-
It depends on built-in GitHub plugin which should be enabled.
7-
<a href="https://gist.chuntung.com/">Getting Started</a>
5+
<a href="https://gist.chuntung.com/">Getting Started</a> | <a href="https://chuntung.com/donate">Donate</a>
6+
7+
A code snippet tool based on GitHub gist, which provides with a feature to fetch secret or starred gist of GitHub accounts. It depends on built-in GitHub plugin which should be enabled.

changeNotes.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
<ul>
2-
<li>Compatible with latest IDE</li>
3-
<li>Fixed multiple Github accounts issue</li>
4-
<li>Supported deleting gists</li>
2+
<li>Fixed minor issues</li>
53
</ul>

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 1.0.1
1+
version = 1.0.2
22
ideaVersion = IC-2019.1
33
customUtilBuild = 299.*
44
isEAP = false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Copyright (c) 2020 Tony Ho. Some rights reserved.
3+
*/
4+
5+
package com.chuntung.plugin.gistsnippet.action;
6+
7+
import com.chuntung.plugin.gistsnippet.dto.api.GistFileDTO;
8+
import com.intellij.openapi.actionSystem.AnAction;
9+
import com.intellij.openapi.actionSystem.AnActionEvent;
10+
import com.intellij.openapi.project.DumbAware;
11+
import org.jetbrains.annotations.NotNull;
12+
13+
import javax.swing.*;
14+
import javax.swing.tree.DefaultMutableTreeNode;
15+
import java.util.function.Consumer;
16+
17+
/**
18+
* Reload selected gist.
19+
*/
20+
public class ReloadAction extends AnAction implements DumbAware {
21+
private JTree tree;
22+
private Consumer consumer;
23+
24+
public ReloadAction(JTree tree, Consumer consumer) {
25+
super("Reload", "Reload first selected gist file", null);
26+
this.tree = tree;
27+
this.consumer = consumer;
28+
}
29+
30+
@Override
31+
public void actionPerformed(@NotNull AnActionEvent e) {
32+
consumer.accept(e);
33+
}
34+
35+
@Override
36+
public void update(@NotNull AnActionEvent e) {
37+
// check if gist file selected
38+
DefaultMutableTreeNode node = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
39+
if (!(node.getUserObject() instanceof GistFileDTO)) {
40+
e.getPresentation().setVisible(false);
41+
}
42+
}
43+
}

src/main/java/com/chuntung/plugin/gistsnippet/service/GistSnippetService.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import org.jetbrains.plugins.github.api.GithubApiRequestExecutor;
1313
import org.jetbrains.plugins.github.api.GithubApiRequestExecutorManager;
1414
import org.jetbrains.plugins.github.authentication.accounts.GithubAccount;
15+
import org.jetbrains.plugins.github.exceptions.GithubJsonException;
1516

1617
import java.io.IOException;
1718
import java.util.ArrayList;
@@ -159,7 +160,11 @@ public void deleteGist(GithubAccount account, List<String> gistIds) {
159160
String url = String.format(GIST_DETAIL_URL, gistId);
160161
// since 2019.1
161162
GithubApiRequest.Delete.Json<String> delete = new GithubApiRequest.Delete.Json<>(url, null, String.class);
162-
executor.execute(delete);
163+
try {
164+
executor.execute(delete);
165+
} catch (GithubJsonException e) {
166+
logger.debug("Ignored exception due to no result returned by API");
167+
}
163168
gistCache.remove(gistId);
164169
}
165170
String key = account.toString() + "#own";

src/main/java/com/chuntung/plugin/gistsnippet/view/InsertGistDialog.form

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<properties/>
4444
<border type="none"/>
4545
<children>
46-
<scrollpane id="7c571">
46+
<scrollpane id="7c571" binding="scrollPane" custom-create="true">
4747
<constraints border-constraint="Center"/>
4848
<properties/>
4949
<border type="none"/>

src/main/java/com/chuntung/plugin/gistsnippet/view/InsertGistDialog.java

+39-21
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import com.chuntung.plugin.gistsnippet.action.CustomComboBoxAction;
88
import com.chuntung.plugin.gistsnippet.action.DeleteAction;
99
import com.chuntung.plugin.gistsnippet.action.OpenInBrowserAction;
10+
import com.chuntung.plugin.gistsnippet.action.ReloadAction;
1011
import com.chuntung.plugin.gistsnippet.dto.ScopeEnum;
1112
import com.chuntung.plugin.gistsnippet.dto.SnippetNodeDTO;
1213
import com.chuntung.plugin.gistsnippet.dto.SnippetRootNode;
@@ -15,6 +16,7 @@
1516
import com.chuntung.plugin.gistsnippet.service.GistException;
1617
import com.chuntung.plugin.gistsnippet.service.GistSnippetService;
1718
import com.chuntung.plugin.gistsnippet.service.GithubAccountHolder;
19+
import com.intellij.icons.AllIcons;
1820
import com.intellij.ide.BrowserUtil;
1921
import com.intellij.ide.util.PropertiesComponent;
2022
import com.intellij.ide.util.treeView.AbstractTreeStructure;
@@ -34,6 +36,7 @@
3436
import com.intellij.openapi.project.Project;
3537
import com.intellij.openapi.ui.DialogWrapper;
3638
import com.intellij.openapi.util.IconLoader;
39+
import com.intellij.ui.ScrollPaneFactory;
3740
import com.intellij.ui.components.JBTabbedPane;
3841
import com.intellij.ui.components.labels.DropDownLink;
3942
import com.intellij.ui.components.labels.LinkLabel;
@@ -55,8 +58,6 @@
5558
import javax.swing.tree.DefaultMutableTreeNode;
5659
import javax.swing.tree.TreePath;
5760
import java.awt.*;
58-
import java.awt.event.MouseAdapter;
59-
import java.awt.event.MouseEvent;
6061
import java.lang.reflect.Constructor;
6162
import java.util.ArrayList;
6263
import java.util.List;
@@ -76,6 +77,7 @@ public class InsertGistDialog extends DialogWrapper {
7677
private JTextField textField1;
7778
private JComboBox languageComboBox;
7879
private JComboBox sortByComboBox;
80+
private JScrollPane scrollPane;
7981

8082
private Project project;
8183
private final boolean insertable;
@@ -112,18 +114,8 @@ private void createUIComponents() {
112114
// Replace JTree with SimpleTree here due to ui designer fails to preview SimpleTree.
113115
snippetTree = new SimpleTree();
114116
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);
127119

128120
// use tree structure for rendering
129121
snippetRoot = new SnippetRootNode();
@@ -226,7 +218,13 @@ private ActionGroup getPopupActions() {
226218
// delete gist
227219
group.add(new DeleteAction(snippetTree, snippetStructure, snippetRoot, project));
228220

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
230228
group.add(new OpenInBrowserAction(snippetTree));
231229

232230
return group;
@@ -264,6 +262,18 @@ public void actionPerformed(@NotNull AnActionEvent e) {
264262
)
265263
);
266264

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+
267277
group.addSeparator();
268278

269279
group.add(new ExpandAllAction(snippetTree));
@@ -273,8 +283,6 @@ public void actionPerformed(@NotNull AnActionEvent e) {
273283
}
274284

275285
private void initYoursPane(List<GithubAccount> accountList) {
276-
UIUtil.removeScrollBorder(yoursSplitPane);
277-
278286
yoursSplitPane.setVisible(true);
279287

280288
// init toolbar
@@ -284,7 +292,7 @@ private void initYoursPane(List<GithubAccount> accountList) {
284292
((JPanel) yoursSplitPane.getLeftComponent()).add(actionToolbar.getComponent(), BorderLayout.NORTH);
285293

286294
// load remembered width
287-
int width = PropertiesComponent.getInstance().getInt(SPLIT_LEFT_WIDTH, 220);
295+
int width = PropertiesComponent.getInstance().getInt(SPLIT_LEFT_WIDTH, 240);
288296
yoursSplitPane.getLeftComponent().setPreferredSize(new Dimension(width, -1));
289297

290298
// bind editor
@@ -404,8 +412,10 @@ private <T> T getUserObject(DefaultMutableTreeNode node) {
404412
}
405413

406414
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+
}
409419

410420
// com.intellij.util.io.HttpRequests#process does not allow Network accessed in dispatch thread or read action
411421
// start a background task to bypass api limitation
@@ -443,7 +453,15 @@ public void run(@NotNull ProgressIndicator indicator) {
443453

444454
private void renderTree(List<GistDTO> gistList, ScopeEnum scope) {
445455
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+
}
447465
}
448466

449467
@Nullable

src/main/resources/META-INF/plugin.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
<vendor email="[email protected]" url="https://gist.chuntung.com">Tony Ho</vendor>
99

1010
<description><![CDATA[
11+
<a href="https://gist.chuntung.com">Getting Started</a> | <a href="https://chuntung.com/donate">Donate</a>
12+
<br><br>
1113
A code snippet tool based on GitHub Gist, that provides with a feature to fetch own or starred gists of GitHub accounts.
12-
It depends on built-in GitHub plugin which should be enabled. <a href="https://gist.chuntung.com">Getting Started</a>
14+
It depends on built-in GitHub plugin which should be enabled.
1315
]]></description>
1416

1517
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html

0 commit comments

Comments
 (0)