X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2Fui%2FGuiReaderSearch.java;h=f0285d789b7859e6b008344a273af517e5b75a88;hb=e581bb8a2d391b5ce12b7a82134640d01d9c4843;hp=229b5dbde6a28111315d65e9d7724084b4db5bba;hpb=a12b668f37bdaf852ca2377739fd73b610f928c8;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/reader/ui/GuiReaderSearch.java b/src/be/nikiroo/fanfix/reader/ui/GuiReaderSearch.java index 229b5db..f0285d7 100644 --- a/src/be/nikiroo/fanfix/reader/ui/GuiReaderSearch.java +++ b/src/be/nikiroo/fanfix/reader/ui/GuiReaderSearch.java @@ -1,6 +1,7 @@ package be.nikiroo.fanfix.reader.ui; import java.awt.BorderLayout; +import java.awt.Color; import java.awt.Component; import java.awt.EventQueue; import java.awt.event.ActionEvent; @@ -10,14 +11,17 @@ import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.List; +import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JLabel; +import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTabbedPane; import javax.swing.JTextField; +import javax.swing.ListCellRenderer; import be.nikiroo.fanfix.Instance; import be.nikiroo.fanfix.data.MetaData; @@ -43,7 +47,10 @@ public class GuiReaderSearch extends JFrame { private int page; private int maxPage; - private JComboBox comboSupportTypes; + private JPanel tagBars; + private List combos; + + private JComboBox comboSupportTypes; private JTabbedPane searchTabs; private JTextField keywordsField; private JButton submitKeywords; @@ -69,7 +76,7 @@ public class GuiReaderSearch extends JFrame { } supportType = supportTypes.isEmpty() ? null : supportTypes.get(0); - comboSupportTypes = new JComboBox( + comboSupportTypes = new JComboBox( supportTypes.toArray(new SupportType[] {})); comboSupportTypes.addActionListener(new ActionListener() { @Override @@ -112,6 +119,8 @@ public class GuiReaderSearch extends JFrame { JScrollPane scroll = new JScrollPane(books); scroll.getVerticalScrollBar().setUnitIncrement(16); add(scroll, BorderLayout.CENTER); + + updateTags(null); } private JPanel createByNameSearchPanel() { @@ -136,9 +145,12 @@ public class GuiReaderSearch extends JFrame { } private JPanel createByTagSearchPanel() { + combos = new ArrayList(); + JPanel byTag = new JPanel(); - JPanel searchBars = new JPanel(); - add(searchBars, BorderLayout.NORTH); + tagBars = new JPanel(); + tagBars.setLayout(new BoxLayout(tagBars, BoxLayout.Y_AXIS)); + byTag.add(tagBars, BorderLayout.NORTH); return byTag; } @@ -148,7 +160,7 @@ public class GuiReaderSearch extends JFrame { this.supportType = supportType; comboSupportTypes.setSelectedItem(supportType); books.clear(); - // TODO: reset all tags + updateTags(null); } } @@ -193,12 +205,43 @@ public class GuiReaderSearch extends JFrame { } } - // can be NULL + // update and reset the tagsbar + // can be NULL, for base tags private void updateTags(final SearchableTag tag) { + final List parents = new ArrayList(); + SearchableTag parent = (tag == null) ? null : tag; + while (parent != null) { + parents.add(parent); + parent = parent.getParent(); + } + inUi(new Runnable() { @Override public void run() { - // TODO + tagBars.invalidate(); + tagBars.removeAll(); + + // TODO: Slow UI + // TODO: select the right one + try { + SearchableTag selectedChild = parents.isEmpty() ? null + : parents.get(parents.size() - 1); + addTagBar(BasicSearchable.getSearchable(supportType) + .getTags(), selectedChild); + } catch (IOException e) { + error(e); + } + + for (int i = parents.size() - 1; i >= 0; i--) { + SearchableTag selectedChild = null; + if (i > 0) { + selectedChild = parents.get(i - 1); + } + SearchableTag parent = parents.get(i); + addTagBar(parent.getChildren(), selectedChild); + } + + tagBars.validate(); } }); } @@ -214,6 +257,134 @@ public class GuiReaderSearch extends JFrame { }); } + // not 1.6 compatible + @SuppressWarnings({ "unchecked", "rawtypes" }) + private void addTagBar(List tags, + final SearchableTag selected) { + tags.add(0, null); + + final int comboIndex = combos.size(); + + final JComboBox combo = new JComboBox( + tags.toArray(new SearchableTag[] {})); + combo.setSelectedItem(selected); + + final ListCellRenderer basic = combo.getRenderer(); + + combo.setRenderer(new ListCellRenderer() { + @Override + public Component getListCellRendererComponent(JList list, + Object value, int index, boolean isSelected, + boolean cellHasFocus) { + + Object displayValue = value; + if (value instanceof SearchableTag) { + displayValue = ((SearchableTag) value).getName(); + } else { + displayValue = "Select a tag..."; + cellHasFocus = false; + isSelected = false; + } + + Component rep = basic.getListCellRendererComponent(list, + displayValue, index, isSelected, cellHasFocus); + + if (value == null) { + rep.setForeground(Color.GRAY); + } + + return rep; + } + }); + + combo.addActionListener(new ActionListener() { + @Override + public void actionPerformed(ActionEvent e) { + final SearchableTag tag = (SearchableTag) combo + .getSelectedItem(); + if (tag != null) { + while (comboIndex + 1 < combos.size()) { + JComboBox combo = combos.remove(comboIndex + 1); + tagBars.remove(combo); + } + + addTagBar(tag, new Runnable() { + @Override + public void run() { + // TODO: slow ui + SearchableTag tag = ((SearchableTag) combo + .getSelectedItem()); + if (tag != null && tag.isLeaf()) { + BasicSearchable searchable = BasicSearchable + .getSearchable(supportType); + List metas = new ArrayList(); + try { + metas = searchable.search(tag, 1); + search(metas, 1, + searchable.searchPages(tag), 0); + } catch (IOException e) { + error(e); + } + } + + setWaitingScreen(false); + } + }); + } + } + }); + + combos.add(combo); + tagBars.add(combo); + } + + // async, add children of tag, NULL = base tags + private void addTagBar(final SearchableTag tag, final Runnable inUi) { + new Thread(new Runnable() { + @Override + public void run() { + BasicSearchable searchable = BasicSearchable + .getSearchable(supportType); + + List children = new ArrayList(); + if (tag == null) { + try { + List baseTags = searchable.getTags(); + children = baseTags; + } catch (IOException e) { + error(e); + } + } else { + try { + searchable.fillTag(tag); + } catch (IOException e) { + error(e); + } + + if (!tag.isLeaf()) { + children = tag.getChildren(); + } else { + children = null; + } + } + + final List fchildren = children; + inUi(new Runnable() { + @Override + public void run() { + if (fchildren != null) { + addTagBar(fchildren, tag); + } + + if (inUi != null) { + inUi.run(); + } + } + }); + } + }).start(); + } + // item 0 = no selection, else = default selection public void search(final SupportType searchOn, final String keywords, final int page, final int item) { @@ -231,27 +402,26 @@ public class GuiReaderSearch extends JFrame { BasicSearchable search = BasicSearchable .getSearchable(searchOn); + int maxPage = -1; + try { + maxPage = search.searchPages(keywords); + } catch (IOException e) { + error(e); + } + if (page <= 0) { - int maxPage = -1; - try { - maxPage = search.searchPages(keywords); - } catch (IOException e) { - Instance.getTraceHandler().error(e); - } updateBooks(new ArrayList()); updatePages(0, maxPage); } else { - List infos = new ArrayList(); + List results; try { - for (MetaData meta : search.search(keywords, page)) { - infos.add(GuiReaderBookInfo.fromMeta(meta)); - } + results = search.search(keywords, page); } catch (IOException e) { - Instance.getTraceHandler().error(e); + error(e); + results = new ArrayList(); } - updateBooks(infos); - updatePages(page, maxPage); + search(results, page, maxPage, item); // ! 1-based index ! if (item > 0 && item <= books.getBooksCount()) { @@ -264,6 +434,7 @@ public class GuiReaderSearch extends JFrame { }).start(); } + // tag: must be filled (or NULL for base tags) public void searchTag(final SupportType searchOn, final int page, final int item, final SearchableTag tag) { @@ -285,48 +456,67 @@ public class GuiReaderSearch extends JFrame { try { maxPage = search.searchPages(tag); } catch (IOException e) { - Instance.getTraceHandler().error(e); + error(e); } updatePages(page, maxPage); if (page > 0) { - List metas = null; - List subtags = null; - int count; + List metas = new ArrayList(); if (tag.isLeaf()) { try { metas = search.search(tag, page); } catch (IOException e) { - metas = new ArrayList(); - Instance.getTraceHandler().error(e); + error(e); } - count = metas.size(); } else { - subtags = tag.getChildren(); - count = subtags.size(); - } - - if (item > 0) { - if (item <= count) { - if (metas != null) { - MetaData meta = metas.get(item - 1); - // TODO: select story - } else { - SearchableTag subtag = subtags - .get(item - 1); - // TODO: search on tag + List subtags = tag.getChildren(); + if (item > 0 && item <= subtags.size()) { + SearchableTag subtag = subtags.get(item - 1); + try { + metas = search.search(subtag, page); + maxPage = subtag.getPages(); + } catch (IOException e) { + error(e); } } } + + updatePages(page, maxPage); + search(metas, page, maxPage, item); } } + setWaitingScreen(false); } }).start(); } + // item 0 = no selection, else = default selection + public void search(final List results, final int page, + final int maxPage, final int item) { + + updatePages(page, maxPage); + + if (page <= 0) { + updateBooks(new ArrayList()); + updatePages(0, maxPage); + } else { + List infos = new ArrayList(); + for (MetaData meta : results) { + infos.add(GuiReaderBookInfo.fromMeta(meta)); + } + + updateBooks(infos); + + // ! 1-based index ! + if (item > 0 && item <= books.getBooksCount()) { + // TODO: "click" on item ITEM + } + } + } + /** * Process the given action in the main Swing UI thread. *

@@ -345,13 +535,17 @@ public class GuiReaderSearch extends JFrame { try { EventQueue.invokeAndWait(run); } catch (InterruptedException e) { - Instance.getTraceHandler().error(e); + error(e); } catch (InvocationTargetException e) { - Instance.getTraceHandler().error(e); + error(e); } } } + private void error(Exception e) { + Instance.getTraceHandler().error(e); + } + private void setWaitingScreen(final boolean waiting) { inUi(new Runnable() { @Override