GUI: search: step x + 1
[fanfix.git] / src / be / nikiroo / fanfix / reader / ui / GuiReaderSearch.java
CommitLineData
4357eb54
NR
1package be.nikiroo.fanfix.reader.ui;
2
3import java.awt.BorderLayout;
bf2b37b0 4import java.awt.Color;
d16065ec 5import java.awt.Component;
4357eb54
NR
6import java.awt.EventQueue;
7import java.awt.event.ActionEvent;
8import java.awt.event.ActionListener;
9import java.io.IOException;
10import java.lang.reflect.InvocationTargetException;
11import java.util.ArrayList;
12import java.util.List;
13
bf2b37b0 14import javax.swing.BoxLayout;
4357eb54
NR
15import javax.swing.JButton;
16import javax.swing.JComboBox;
17import javax.swing.JFrame;
08e2185a 18import javax.swing.JLabel;
bf2b37b0 19import javax.swing.JList;
4357eb54
NR
20import javax.swing.JPanel;
21import javax.swing.JScrollPane;
22import javax.swing.JTabbedPane;
23import javax.swing.JTextField;
bf2b37b0 24import javax.swing.ListCellRenderer;
4357eb54
NR
25
26import be.nikiroo.fanfix.Instance;
27import be.nikiroo.fanfix.data.MetaData;
d16065ec 28import be.nikiroo.fanfix.reader.ui.GuiReaderBook.BookActionListener;
4357eb54
NR
29import be.nikiroo.fanfix.searchable.BasicSearchable;
30import be.nikiroo.fanfix.searchable.SearchableTag;
31import be.nikiroo.fanfix.supported.SupportType;
32
33/**
34 * This frame will allow you to search through the supported websites for new
35 * stories/comics.
36 *
37 * @author niki
38 */
39public class GuiReaderSearch extends JFrame {
40 private static final long serialVersionUID = 1L;
41
42 private List<SupportType> supportTypes;
43 private SupportType supportType;
81acd363 44 private boolean searchByTags;
4357eb54
NR
45 private List<SearchableTag> tags;
46 private String keywords;
47 private int page;
48 private int maxPage;
49
bf2b37b0
NR
50 private JPanel tagBars;
51
4357eb54
NR
52 private JComboBox<SupportType> comboSupportTypes;
53 private JTabbedPane searchTabs;
81acd363 54 private JTextField keywordsField;
08e2185a 55 private JButton submitKeywords;
4357eb54
NR
56
57 private boolean seeWordcount;
58 private GuiReaderGroup books;
59
d16065ec 60 public GuiReaderSearch(final GuiReader reader) {
4357eb54
NR
61 super("Browse stories");
62 setLayout(new BorderLayout());
63 setSize(800, 600);
64
65 tags = new ArrayList<SearchableTag>();
66 page = 1; // TODO
67 maxPage = -1;
81acd363 68 searchByTags = false;
4357eb54
NR
69
70 supportTypes = new ArrayList<SupportType>();
71 for (SupportType type : SupportType.values()) {
72 if (BasicSearchable.getSearchable(type) != null) {
73 supportTypes.add(type);
74 }
75 }
76 supportType = supportTypes.isEmpty() ? null : supportTypes.get(0);
77
4357eb54
NR
78 comboSupportTypes = new JComboBox<SupportType>(
79 supportTypes.toArray(new SupportType[] {}));
80 comboSupportTypes.addActionListener(new ActionListener() {
81 @Override
82 public void actionPerformed(ActionEvent e) {
81acd363 83 updateSupportType((SupportType) comboSupportTypes
4357eb54
NR
84 .getSelectedItem());
85 }
86 });
08e2185a
NR
87 JPanel searchSites = new JPanel(new BorderLayout());
88 searchSites.add(comboSupportTypes, BorderLayout.CENTER);
89 searchSites.add(new JLabel(" " + "Website : "), BorderLayout.WEST);
4357eb54 90
4357eb54
NR
91 searchTabs = new JTabbedPane();
92 searchTabs.addTab("By name", createByNameSearchPanel());
93 searchTabs.addTab("By tags", createByTagSearchPanel());
94
08e2185a
NR
95 JPanel top = new JPanel(new BorderLayout());
96 top.add(searchSites, BorderLayout.NORTH);
4357eb54
NR
97 top.add(searchTabs, BorderLayout.CENTER);
98
99 add(top, BorderLayout.NORTH);
100
101 books = new GuiReaderGroup(reader, null, null);
d16065ec
NR
102 books.setActionListener(new BookActionListener() {
103 @Override
104 public void select(GuiReaderBook book) {
105 }
106
107 @Override
108 public void popupRequested(GuiReaderBook book, Component target,
109 int x, int y) {
110 }
111
112 @Override
113 public void action(GuiReaderBook book) {
114 new GuiReaderSearchAction(reader.getLibrary(), book.getInfo())
115 .setVisible(true);
116 }
117 });
4357eb54
NR
118 JScrollPane scroll = new JScrollPane(books);
119 scroll.getVerticalScrollBar().setUnitIncrement(16);
120 add(scroll, BorderLayout.CENTER);
bf2b37b0
NR
121
122 updateTags(null);
4357eb54
NR
123 }
124
4357eb54
NR
125 private JPanel createByNameSearchPanel() {
126 JPanel byName = new JPanel(new BorderLayout());
127
81acd363 128 keywordsField = new JTextField();
4357eb54
NR
129 byName.add(keywordsField, BorderLayout.CENTER);
130
08e2185a
NR
131 submitKeywords = new JButton("Search");
132 byName.add(submitKeywords, BorderLayout.EAST);
4357eb54
NR
133
134 // TODO: ENTER -> search
135
08e2185a 136 submitKeywords.addActionListener(new ActionListener() {
4357eb54
NR
137 @Override
138 public void actionPerformed(ActionEvent e) {
139 search(supportType, keywordsField.getText(), page, 0);
140 }
141 });
142
143 return byName;
144 }
145
146 private JPanel createByTagSearchPanel() {
147 JPanel byTag = new JPanel();
bf2b37b0
NR
148 tagBars = new JPanel();
149 tagBars.setLayout(new BoxLayout(tagBars, BoxLayout.Y_AXIS));
150 byTag.add(tagBars, BorderLayout.NORTH);
4357eb54
NR
151
152 return byTag;
153 }
154
81acd363
NR
155 private void updateSupportType(SupportType supportType) {
156 if (supportType != this.supportType) {
157 this.supportType = supportType;
158 comboSupportTypes.setSelectedItem(supportType);
a12b668f 159 books.clear();
bf2b37b0 160 updateTags(null);
81acd363
NR
161 }
162 }
163
164 private void updateSearchBy(final boolean byTag) {
165 if (byTag != this.searchByTags) {
166 inUi(new Runnable() {
167 @Override
168 public void run() {
169 if (!byTag) {
170 searchTabs.setSelectedIndex(0);
171 } else {
172 searchTabs.setSelectedIndex(1);
173 }
174 }
175 });
176 }
177 }
178
179 private void updatePages(final int page, final Integer maxPage) {
180 inUi(new Runnable() {
181 @Override
182 public void run() {
183 GuiReaderSearch.this.page = page;
184 GuiReaderSearch.this.maxPage = maxPage;
185 // TODO: gui
186 System.out.println("page: " + page);
187 System.out.println("max page: " + maxPage);
188 }
189 });
190 }
191
08e2185a 192 // cannot be NULL
81acd363 193 private void updateKeywords(final String keywords) {
08e2185a
NR
194 if (!keywords.equals(this.keywords)) {
195 inUi(new Runnable() {
196 @Override
197 public void run() {
198 GuiReaderSearch.this.keywords = keywords;
199 keywordsField.setText(keywords);
200 }
201 });
202 }
81acd363
NR
203 }
204
bf2b37b0 205 // can be NULL, for base tags
81acd363 206 private void updateTags(final SearchableTag tag) {
bf2b37b0
NR
207 final List<SearchableTag> parents = new ArrayList<SearchableTag>();
208 SearchableTag parent = (tag == null) ? null : tag;
209 while (parent != null) {
210 parents.add(parent);
211 parent = parent.getParent();
212 }
213
81acd363
NR
214 inUi(new Runnable() {
215 @Override
216 public void run() {
bf2b37b0
NR
217 tagBars.invalidate();
218 tagBars.removeAll();
219
220 // TODO: Slow UI
221 // TODO: select the right one
222 try {
223 addTagBar(BasicSearchable.getSearchable(supportType)
224 .getTags(), tag);
225 } catch (IOException e) {
226 error(e);
227 }
228
229 for (int i = parents.size() - 1; i >= 0; i--) {
230 SearchableTag parent = parents.get(i);
231 addTagBar(parent.getChildren(), parent);
232 }
233
234 tagBars.validate();
81acd363
NR
235 }
236 });
237 }
238
239 private void updateBooks(final List<GuiReaderBookInfo> infos) {
c499d79f 240 setWaitingScreen(true);
81acd363
NR
241 inUi(new Runnable() {
242 @Override
243 public void run() {
244 books.refreshBooks(infos, seeWordcount);
c499d79f 245 setWaitingScreen(false);
81acd363
NR
246 }
247 });
248 }
249
bf2b37b0
NR
250 private void addTagBar(List<SearchableTag> tags,
251 final SearchableTag selected) {
252 tags.add(0, null);
253
254 final JComboBox<SearchableTag> combo = new JComboBox<SearchableTag>(
255 tags.toArray(new SearchableTag[] {}));
256 combo.setSelectedItem(selected);
257
258 // We want to pass it a String
259 @SuppressWarnings({ "rawtypes" })
260 final ListCellRenderer basic = combo.getRenderer();
261
262 combo.setRenderer(new ListCellRenderer<SearchableTag>() {
263 @Override
264 public Component getListCellRendererComponent(
265 JList<? extends SearchableTag> list, SearchableTag value,
266 int index, boolean isSelected, boolean cellHasFocus) {
267
268 Object displayValue = value;
269 if (value == null) {
270 displayValue = "Select a tag...";
271 cellHasFocus = false;
272 isSelected = false;
273 } else {
274 displayValue = value.getName();
275 }
276
277 // We willingly pass a String here
278 @SuppressWarnings("unchecked")
279 Component rep = basic.getListCellRendererComponent(list,
280 displayValue, index, isSelected, cellHasFocus);
281
282 if (value == null) {
283 rep.setForeground(Color.GRAY);
284 }
285
286 return rep;
287 }
288 });
289
290 combo.addActionListener(new ActionListener() {
291 @Override
292 public void actionPerformed(ActionEvent e) {
293 final SearchableTag tag = (SearchableTag) combo
294 .getSelectedItem();
295 if (tag != null) {
296 addTagBar(tag, new Runnable() {
297 @Override
298 public void run() {
299 // TODO: stories if needed
300 setWaitingScreen(false);
301 }
302 });
303 }
304 }
305 });
306
307 tagBars.add(combo);
308 }
309
310 // async, add children of tag, NULL = base tags
311 private void addTagBar(final SearchableTag tag, final Runnable inUi) {
312 new Thread(new Runnable() {
313 @Override
314 public void run() {
315 BasicSearchable searchable = BasicSearchable
316 .getSearchable(supportType);
317
318 List<SearchableTag> children = new ArrayList<SearchableTag>();
319 if (tag == null) {
320 try {
321 List<SearchableTag> baseTags = searchable.getTags();
322 children = baseTags;
323 } catch (IOException e) {
324 error(e);
325 }
326 } else {
327 try {
328 searchable.fillTag(tag);
329 } catch (IOException e) {
330 error(e);
331 }
332
333 if (!tag.isLeaf()) {
334 children = tag.getChildren();
335 } else {
336 children = null;
337 // TODO: stories
338 }
339 }
340
341 final List<SearchableTag> fchildren = children;
342 inUi(new Runnable() {
343 @Override
344 public void run() {
345 if (fchildren != null) {
346 addTagBar(fchildren, tag);
347 }
348
349 if (inUi != null) {
350 inUi.run();
351 }
352 }
353 });
354 }
355 }).start();
356 }
357
81acd363 358 // item 0 = no selection, else = default selection
4357eb54
NR
359 public void search(final SupportType searchOn, final String keywords,
360 final int page, final int item) {
81acd363 361
08e2185a
NR
362 setWaitingScreen(true);
363
81acd363
NR
364 updateSupportType(searchOn);
365 updateSearchBy(false);
366 updateKeywords(keywords);
367 updatePages(page, maxPage);
4357eb54
NR
368
369 new Thread(new Runnable() {
370 @Override
371 public void run() {
372 BasicSearchable search = BasicSearchable
373 .getSearchable(searchOn);
374
bf2b37b0
NR
375 int maxPage = -1;
376 try {
377 maxPage = search.searchPages(keywords);
378 } catch (IOException e) {
379 error(e);
380 }
381
4357eb54 382 if (page <= 0) {
4357eb54
NR
383 updateBooks(new ArrayList<GuiReaderBookInfo>());
384 updatePages(0, maxPage);
385 } else {
bf2b37b0 386 List<MetaData> results;
4357eb54 387 try {
bf2b37b0 388 results = search.search(keywords, page);
4357eb54 389 } catch (IOException e) {
bf2b37b0
NR
390 error(e);
391 results = new ArrayList<MetaData>();
4357eb54
NR
392 }
393
bf2b37b0 394 search(results, page, maxPage, item);
4357eb54
NR
395
396 // ! 1-based index !
397 if (item > 0 && item <= books.getBooksCount()) {
398 // TODO: "click" on item ITEM
399 }
400 }
08e2185a
NR
401
402 setWaitingScreen(false);
4357eb54
NR
403 }
404 }).start();
405 }
406
bf2b37b0 407 // tag: must be filled (or NULL for base tags)
c499d79f
NR
408 public void searchTag(final SupportType searchOn, final int page,
409 final int item, final SearchableTag tag) {
410
411 setWaitingScreen(true);
4357eb54 412
81acd363
NR
413 updateSupportType(searchOn);
414 updateSearchBy(true);
415 updateTags(tag);
416 updatePages(page, maxPage);
4357eb54 417
c499d79f
NR
418 new Thread(new Runnable() {
419 @Override
420 public void run() {
421 BasicSearchable search = BasicSearchable
422 .getSearchable(searchOn);
4357eb54 423
c499d79f
NR
424 if (tag != null) {
425 int maxPage = 0;
81acd363 426 try {
c499d79f 427 maxPage = search.searchPages(tag);
81acd363 428 } catch (IOException e) {
bf2b37b0 429 error(e);
81acd363 430 }
4357eb54 431
c499d79f
NR
432 updatePages(page, maxPage);
433
434 if (page > 0) {
bf2b37b0 435 List<MetaData> metas = new ArrayList<MetaData>();
c499d79f
NR
436
437 if (tag.isLeaf()) {
438 try {
439 metas = search.search(tag, page);
440 } catch (IOException e) {
bf2b37b0 441 error(e);
c499d79f 442 }
4357eb54 443 } else {
bf2b37b0
NR
444 List<SearchableTag> subtags = tag.getChildren();
445 if (item > 0 && item <= subtags.size()) {
446 SearchableTag subtag = subtags.get(item - 1);
447 try {
448 metas = search.search(subtag, page);
449 maxPage = subtag.getPages();
450 } catch (IOException e) {
451 error(e);
c499d79f
NR
452 }
453 }
4357eb54 454 }
bf2b37b0
NR
455
456 updatePages(page, maxPage);
457 search(metas, page, maxPage, item);
4357eb54
NR
458 }
459 }
bf2b37b0 460
c499d79f 461 setWaitingScreen(false);
4357eb54 462 }
c499d79f 463 }).start();
4357eb54
NR
464 }
465
bf2b37b0
NR
466 // item 0 = no selection, else = default selection
467 public void search(final List<MetaData> results, final int page,
468 final int maxPage, final int item) {
469
470 updatePages(page, maxPage);
471
472 if (page <= 0) {
473 updateBooks(new ArrayList<GuiReaderBookInfo>());
474 updatePages(0, maxPage);
475 } else {
476 List<GuiReaderBookInfo> infos = new ArrayList<GuiReaderBookInfo>();
477 for (MetaData meta : results) {
478 infos.add(GuiReaderBookInfo.fromMeta(meta));
479 }
480
481 updateBooks(infos);
482
483 // ! 1-based index !
484 if (item > 0 && item <= books.getBooksCount()) {
485 // TODO: "click" on item ITEM
486 }
487 }
488 }
489
4357eb54
NR
490 /**
491 * Process the given action in the main Swing UI thread.
492 * <p>
493 * The code will make sure the current thread is the main UI thread and, if
494 * not, will switch to it before executing the runnable.
495 * <p>
496 * Synchronous operation.
497 *
498 * @param run
499 * the action to run
500 */
c499d79f 501 private void inUi(final Runnable run) {
4357eb54
NR
502 if (EventQueue.isDispatchThread()) {
503 run.run();
504 } else {
505 try {
506 EventQueue.invokeAndWait(run);
507 } catch (InterruptedException e) {
bf2b37b0 508 error(e);
4357eb54 509 } catch (InvocationTargetException e) {
bf2b37b0 510 error(e);
4357eb54
NR
511 }
512 }
513 }
c499d79f 514
bf2b37b0
NR
515 private void error(Exception e) {
516 Instance.getTraceHandler().error(e);
517 }
518
c499d79f
NR
519 private void setWaitingScreen(final boolean waiting) {
520 inUi(new Runnable() {
521 @Override
522 public void run() {
523 GuiReaderSearch.this.setEnabled(!waiting);
08e2185a
NR
524 books.setEnabled(!waiting);
525 submitKeywords.setEnabled(!waiting);
c499d79f
NR
526 }
527 });
528 }
4357eb54 529}