An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

391 lines
13KB

  1. package xyz.veronie.bgg.ui.parts;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import javax.annotation.PostConstruct;
  5. import javax.inject.Inject;
  6. import org.eclipse.e4.core.contexts.ContextInjectionFactory;
  7. import org.eclipse.e4.core.contexts.EclipseContextFactory;
  8. import org.eclipse.e4.core.contexts.IEclipseContext;
  9. import org.eclipse.e4.core.services.events.IEventBroker;
  10. import org.eclipse.e4.ui.model.application.MApplication;
  11. import org.eclipse.e4.ui.model.application.ui.basic.MPart;
  12. import org.eclipse.e4.ui.workbench.modeling.EModelService;
  13. import org.eclipse.e4.ui.workbench.modeling.EPartService;
  14. import org.eclipse.e4.ui.workbench.modeling.EPartService.PartState;
  15. import org.eclipse.jface.dialogs.MessageDialog;
  16. import org.eclipse.swt.SWT;
  17. import org.eclipse.swt.custom.StackLayout;
  18. import org.eclipse.swt.events.MouseAdapter;
  19. import org.eclipse.swt.events.MouseEvent;
  20. import org.eclipse.swt.events.SelectionEvent;
  21. import org.eclipse.swt.events.SelectionListener;
  22. import org.eclipse.swt.layout.GridData;
  23. import org.eclipse.swt.layout.GridLayout;
  24. import org.eclipse.swt.widgets.Button;
  25. import org.eclipse.swt.widgets.Composite;
  26. import org.eclipse.wb.swt.ResourceManager;
  27. import org.eclipse.wb.swt.SWTResourceManager;
  28. import xyz.veronie.bgg.result.BggApi;
  29. import xyz.veronie.bgg.result.ResultConfig;
  30. import xyz.veronie.bgg.result.ResultConfigManager;
  31. import xyz.veronie.bgg.result.Thing;
  32. import xyz.veronie.bgg.result.ThingProvider;
  33. import xyz.veronie.bgg.types.EventConstants;
  34. import xyz.veronie.bgg.types.ResultAction;
  35. import xyz.veronie.bgg.types.SourceFilter;
  36. import xyz.veronie.bgg.ui.filters.BggUserSourceFilter;
  37. import xyz.veronie.bgg.ui.filters.FamilySourceFilter;
  38. import xyz.veronie.bgg.ui.filters.GeeklistSourceFilter;
  39. import xyz.veronie.bgg.ui.helpers.BatColors;
  40. import xyz.veronie.bgg.ui.helpers.BatLayouts;
  41. import org.eclipse.swt.widgets.Label;
  42. public class FetchPart {
  43. @Inject
  44. private ResultConfigManager configManager;
  45. @Inject
  46. private IEventBroker eventBroker;
  47. @Inject
  48. private IEclipseContext context;
  49. @Inject
  50. private MApplication application;
  51. @Inject
  52. private EModelService modelService;
  53. @Inject
  54. private EPartService partService;
  55. @Inject
  56. private ThingProvider thingProvider;
  57. @Inject
  58. private BggApi bggApi;
  59. private Button btnBggUser;
  60. private Button btnFamily;
  61. private Button btnGeeklist;
  62. private Composite main;
  63. private Composite filterComposite;
  64. private Composite userFilterPage;
  65. private Composite familyPage;
  66. private StackLayout filterLayout;
  67. private Composite geeklistPage;
  68. private Composite centerComposite;
  69. private Label lblResultAction;
  70. @Inject
  71. public FetchPart() {
  72. }
  73. @PostConstruct
  74. public void postConstruct(Composite parent) {
  75. parent.setBackground(BatColors.getBackgroundColor());
  76. parent.setBackgroundMode(SWT.INHERIT_FORCE);
  77. parent.setLayout(new GridLayout(1, false));
  78. main = new Composite(parent, SWT.NONE);
  79. GridLayout gl_main = new GridLayout(1, false);
  80. BatLayouts.applyStandardSpacing(gl_main);
  81. main.setLayout(gl_main);
  82. main.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, true, 1, 1));
  83. Composite buttonRow = new Composite(main, SWT.NONE);
  84. buttonRow.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1));
  85. GridLayout gl_buttonRow = new GridLayout(3, false);
  86. BatLayouts.applyStandardSpacing(gl_buttonRow);
  87. buttonRow.setLayout(gl_buttonRow);
  88. btnBggUser = new Button(buttonRow, SWT.NONE);
  89. btnBggUser.setToolTipText("Fetch by bgg user");
  90. btnBggUser.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_Meeple_60x60.png"));
  91. btnFamily = new Button(buttonRow, SWT.NONE);
  92. btnFamily.setToolTipText("Fetch by family");
  93. btnFamily.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_Family_60x60.png"));
  94. btnGeeklist = new Button(buttonRow, SWT.NONE);
  95. btnGeeklist.setToolTipText("Fetch by geeklist");
  96. btnGeeklist.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_List_60x60.png"));
  97. centerComposite = new Composite(main, SWT.NONE);
  98. centerComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
  99. GridLayout gl_centerComposite = new GridLayout(1, false);
  100. BatLayouts.applyStandardSpacing(gl_centerComposite);
  101. centerComposite.setLayout(gl_centerComposite);
  102. createFilterComposites(centerComposite);
  103. // init filter using config manager
  104. SourceFilter source = configManager.getResultConfig().source;
  105. selectSource(source);
  106. createApplyToResultRow();
  107. }
  108. private void createApplyToResultRow() {
  109. Composite applyComposite = new Composite(main, SWT.NONE);
  110. GridLayout gl_applyComposite = new GridLayout(5, false);
  111. BatLayouts.applyStandardSpacing(gl_applyComposite);
  112. applyComposite.setLayout(gl_applyComposite);
  113. applyComposite.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, false, 1, 1));
  114. lblResultAction = new Label(applyComposite, SWT.NONE);
  115. lblResultAction.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 5, 1));
  116. lblResultAction.setText("How do you want to apply the result?");
  117. Button btnReplace = new Button(applyComposite, SWT.NONE);
  118. btnReplace.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/result_replace_60x60.png"));
  119. btnReplace.setToolTipText("Replace");
  120. btnReplace.addMouseListener(new MouseAdapter() {
  121. @Override
  122. public void mouseUp(MouseEvent e) {
  123. fetchEntries(ResultAction.REPLACE);
  124. }
  125. });
  126. Button btnOnlyNew = new Button(applyComposite, SWT.NONE);
  127. btnOnlyNew.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/only_new_60x60.png"));
  128. btnOnlyNew.setToolTipText("Keep only new");
  129. btnOnlyNew.addMouseListener(new MouseAdapter() {
  130. @Override
  131. public void mouseUp(MouseEvent e) {
  132. fetchEntries(ResultAction.ONLY_NEW);
  133. }
  134. });
  135. Button btnAdd = new Button(applyComposite, SWT.NONE);
  136. btnAdd.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/result_add_60x60.png"));
  137. btnAdd.setToolTipText("Add");
  138. btnAdd.addMouseListener(new MouseAdapter() {
  139. @Override
  140. public void mouseUp(MouseEvent e) {
  141. fetchEntries(ResultAction.ADD);
  142. }
  143. });
  144. Button btnIntersect = new Button(applyComposite, SWT.NONE);
  145. btnIntersect.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/result_intersect_60x60.png"));
  146. btnIntersect.setToolTipText("Intersect");
  147. btnIntersect.addMouseListener(new MouseAdapter() {
  148. @Override
  149. public void mouseUp(MouseEvent e) {
  150. fetchEntries(ResultAction.INTERSECT);
  151. }
  152. });
  153. Button btnSubtract = new Button(applyComposite, SWT.NONE);
  154. btnSubtract.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/result_subtract_60x60.png"));
  155. btnSubtract.setToolTipText("Subtract");
  156. btnSubtract.addMouseListener(new MouseAdapter() {
  157. @Override
  158. public void mouseUp(MouseEvent e) {
  159. fetchEntries(ResultAction.SUBTRACT);
  160. }
  161. });
  162. }
  163. private void createFilterComposites(Composite parent) {
  164. filterComposite = new Composite(parent, SWT.NONE);
  165. filterComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
  166. filterComposite.setBackgroundMode(SWT.INHERIT_FORCE);
  167. filterLayout = new StackLayout();
  168. filterComposite.setLayout(filterLayout);
  169. filterComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
  170. userFilterPage = new Composite(filterComposite, SWT.FILL);
  171. GridLayout gl_userFilter = new GridLayout(2, false);
  172. BatLayouts.applyZeroSpacing(gl_userFilter);
  173. userFilterPage.setLayout(gl_userFilter);
  174. userFilterPage.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
  175. IEclipseContext userFilterCtx = EclipseContextFactory.create();
  176. userFilterCtx.set(Composite.class, userFilterPage); // parent
  177. ContextInjectionFactory.make(BggUserSourceFilter.class, context, userFilterCtx);
  178. btnBggUser.addSelectionListener(new SelectionListener() {
  179. @Override
  180. public void widgetSelected(SelectionEvent e) {
  181. selectSource(SourceFilter.BGG_USER);
  182. }
  183. @Override
  184. public void widgetDefaultSelected(SelectionEvent e) {}
  185. });
  186. familyPage = new Composite(filterComposite, SWT.FILL);
  187. GridLayout gl_familyFilter = new GridLayout(2, false);
  188. BatLayouts.applyZeroSpacing(gl_familyFilter);
  189. familyPage.setLayout(gl_familyFilter);
  190. familyPage.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
  191. IEclipseContext familyFilterCtx = EclipseContextFactory.create();
  192. familyFilterCtx.set(Composite.class, familyPage); // parent
  193. ContextInjectionFactory.make(FamilySourceFilter.class, context, familyFilterCtx);;
  194. btnFamily.addSelectionListener(new SelectionListener() {
  195. @Override
  196. public void widgetSelected(SelectionEvent e) {
  197. selectSource(SourceFilter.FAMILY);
  198. }
  199. @Override
  200. public void widgetDefaultSelected(SelectionEvent e) {}
  201. });
  202. geeklistPage = new Composite(filterComposite, SWT.FILL);
  203. GridLayout gl_geeklistFilter = new GridLayout(2, false);
  204. BatLayouts.applyZeroSpacing(gl_geeklistFilter);
  205. geeklistPage.setLayout(gl_geeklistFilter);
  206. geeklistPage.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
  207. IEclipseContext geeklistFilterCtx = EclipseContextFactory.create();
  208. geeklistFilterCtx.set(Composite.class, geeklistPage); // parent
  209. ContextInjectionFactory.make(GeeklistSourceFilter.class, context, geeklistFilterCtx);
  210. btnGeeklist.addSelectionListener(new SelectionListener() {
  211. @Override
  212. public void widgetSelected(SelectionEvent e) {
  213. selectSource(SourceFilter.GEEKLIST);
  214. }
  215. @Override
  216. public void widgetDefaultSelected(SelectionEvent e) {}
  217. });
  218. }
  219. private void selectSource(SourceFilter source) {
  220. switch(source) {
  221. case BGG_USER:
  222. filterLayout.topControl = userFilterPage;
  223. btnBggUser.setBackground(BatColors.getButtonBgColor());
  224. btnFamily.setBackground(null);
  225. btnGeeklist.setBackground(null);
  226. break;
  227. case FAMILY:
  228. filterLayout.topControl = familyPage;
  229. btnBggUser.setBackground(null);
  230. btnFamily.setBackground(BatColors.getButtonBgColor());
  231. btnGeeklist.setBackground(null);
  232. break;
  233. case GEEKLIST:
  234. filterLayout.topControl = geeklistPage;
  235. btnBggUser.setBackground(null);
  236. btnFamily.setBackground(null);
  237. btnGeeklist.setBackground(BatColors.getButtonBgColor());
  238. break;
  239. }
  240. filterComposite.pack();
  241. centerComposite.layout(true,true);
  242. eventBroker.send(EventConstants.TOPIC_SOURCE_CHANGED, source);
  243. }
  244. private void fetchEntries(ResultAction action) {
  245. Object fetchId = getFetchId();
  246. if(fetchId == null) return;
  247. try {
  248. SourceFilter source = configManager.getResultConfig().source;
  249. eventBroker.send(EventConstants.TOPIC_STATUS, "Fetching " + source.toString() + " '" + fetchId + "'...");
  250. ArrayList<Thing> things = bggApi.getThings(source, fetchId);
  251. useThingsOnResult(things, action);
  252. goToHomePart();
  253. }
  254. catch(IllegalArgumentException ex) {
  255. MessageDialog.openError(main.getShell(), "", ex.getMessage());
  256. }
  257. }
  258. private Object getFetchId() {
  259. ResultConfig resultConfig = configManager.getResultConfig();
  260. SourceFilter source = configManager.getResultConfig().source;
  261. if(source == SourceFilter.BGG_USER) {
  262. String user = resultConfig.user;
  263. if(user == null || user.isEmpty()) {
  264. MessageDialog.openError(main.getShell(), "", "Please enter a user name.");
  265. return null;
  266. }
  267. return user;
  268. } else if(source == SourceFilter.GEEKLIST) {
  269. Integer geeklistId = resultConfig.geeklistId;
  270. if(geeklistId == null) {
  271. MessageDialog.openError(main.getShell(), "", "Please enter a geeklist id.");
  272. return null;
  273. }
  274. return geeklistId;
  275. } else if(source == SourceFilter.FAMILY) {
  276. Integer familyId = resultConfig.familyId;
  277. if(familyId == null) {
  278. MessageDialog.openError(main.getShell(), "", "Please enter a family id.");
  279. return null;
  280. }
  281. return familyId;
  282. }
  283. return null;
  284. }
  285. private void useThingsOnResult(ArrayList<Thing> things, ResultAction action) {
  286. switch(action) {
  287. case REPLACE:
  288. thingProvider.replaceThings(things);
  289. break;
  290. case ADD:
  291. thingProvider.addThings(things);
  292. break;
  293. case SUBTRACT:
  294. thingProvider.subtractThings(things);
  295. break;
  296. case INTERSECT:
  297. thingProvider.intersectThings(things);
  298. break;
  299. case ONLY_NEW:
  300. thingProvider.keepOnlyNew(things);
  301. break;
  302. }
  303. eventBroker.send(EventConstants.TOPIC_RESULT_CHANGED, "");
  304. eventBroker.send(EventConstants.TOPIC_STATUS, "Fetched " + Integer.toString(things.size()) + " things.");
  305. }
  306. private void goToHomePart() {
  307. // TODO Auto-generated method stub
  308. List<MPart> parts = modelService.findElements(application, "xyz.veronie.bgg.ui.part.batmain", MPart.class);
  309. if(parts != null && parts.size() >= 1) {
  310. MPart fetchPart = parts.get(0);
  311. partService.showPart(fetchPart, PartState.ACTIVATE);
  312. }
  313. }
  314. }