GUI search: regorg done
[fanfix.git] / src / be / nikiroo / fanfix / reader / ui / GuiReaderSearchFrame.java
1 package be.nikiroo.fanfix.reader.ui;
2
3 import java.awt.BorderLayout;
4 import java.awt.Component;
5 import java.awt.EventQueue;
6 import java.awt.event.ActionEvent;
7 import java.awt.event.ActionListener;
8 import java.lang.reflect.InvocationTargetException;
9 import java.util.ArrayList;
10 import java.util.List;
11
12 import javax.swing.JComboBox;
13 import javax.swing.JFrame;
14 import javax.swing.JLabel;
15 import javax.swing.JPanel;
16 import javax.swing.JScrollPane;
17
18 import be.nikiroo.fanfix.Instance;
19 import be.nikiroo.fanfix.data.MetaData;
20 import be.nikiroo.fanfix.reader.ui.GuiReaderBook.BookActionListener;
21 import be.nikiroo.fanfix.searchable.BasicSearchable;
22 import be.nikiroo.fanfix.searchable.SearchableTag;
23 import be.nikiroo.fanfix.supported.SupportType;
24
25 /**
26 * This frame will allow you to search through the supported websites for new
27 * stories/comics.
28 *
29 * @author niki
30 */
31 // JCombobox<E> not 1.6 compatible
32 @SuppressWarnings({ "unchecked", "rawtypes" })
33 public class GuiReaderSearchFrame extends JFrame {
34 private static final long serialVersionUID = 1L;
35
36 private List<SupportType> supportTypes;
37 private SupportType supportType;
38 private int page;
39 private int maxPage;
40
41 private JComboBox comboSupportTypes;
42 private GuiReaderSearchByPanel searchPanel;
43
44 private boolean seeWordcount;
45 private GuiReaderGroup books;
46
47 public GuiReaderSearchFrame(final GuiReader reader) {
48 super("Browse stories");
49 setLayout(new BorderLayout());
50 setSize(800, 600);
51
52 page = 1;
53 maxPage = -1;
54
55 supportTypes = new ArrayList<SupportType>();
56 for (SupportType type : SupportType.values()) {
57 if (BasicSearchable.getSearchable(type) != null) {
58 supportTypes.add(type);
59 }
60 }
61 supportType = supportTypes.isEmpty() ? null : supportTypes.get(0);
62
63 comboSupportTypes = new JComboBox(
64 supportTypes.toArray(new SupportType[] {}));
65 comboSupportTypes.addActionListener(new ActionListener() {
66 @Override
67 public void actionPerformed(ActionEvent e) {
68 setWaiting(true);
69 updateSupportType(
70 (SupportType) comboSupportTypes.getSelectedItem(),
71 new Runnable() {
72 @Override
73 public void run() {
74 setWaiting(false);
75 }
76 });
77 }
78 });
79 JPanel searchSites = new JPanel(new BorderLayout());
80 searchSites.add(comboSupportTypes, BorderLayout.CENTER);
81 searchSites.add(new JLabel(" " + "Website : "), BorderLayout.WEST);
82
83 searchPanel = new GuiReaderSearchByPanel(supportType,
84 new GuiReaderSearchByPanel.Waitable() {
85 @Override
86 public void setWaiting(boolean waiting) {
87 GuiReaderSearchFrame.this.setWaiting(waiting);
88 }
89 });
90
91 searchPanel.addActionListener(new ActionListener() {
92 @Override
93 public void actionPerformed(ActionEvent e) {
94 updatePages(searchPanel.getPage(), searchPanel.getMaxPage());
95 List<GuiReaderBookInfo> infos = new ArrayList<GuiReaderBookInfo>();
96 for (MetaData meta : searchPanel.getStories()) {
97 infos.add(GuiReaderBookInfo.fromMeta(meta));
98 }
99
100 updateBooks(infos);
101
102 // ! 1-based index !
103 int item = searchPanel.getStoryItem();
104 if (item > 0 && item <= books.getBooksCount()) {
105 // TODO: "click" on item ITEM
106 }
107 }
108 });
109
110 JPanel top = new JPanel(new BorderLayout());
111 top.add(searchSites, BorderLayout.NORTH);
112 top.add(searchPanel, BorderLayout.CENTER);
113
114 add(top, BorderLayout.NORTH);
115
116 books = new GuiReaderGroup(reader, null, null);
117 books.setActionListener(new BookActionListener() {
118 @Override
119 public void select(GuiReaderBook book) {
120 }
121
122 @Override
123 public void popupRequested(GuiReaderBook book, Component target,
124 int x, int y) {
125 }
126
127 @Override
128 public void action(GuiReaderBook book) {
129 new GuiReaderSearchAction(reader.getLibrary(), book.getInfo())
130 .setVisible(true);
131 }
132 });
133 JScrollPane scroll = new JScrollPane(books);
134 scroll.getVerticalScrollBar().setUnitIncrement(16);
135 add(scroll, BorderLayout.CENTER);
136 }
137
138 private void updateSupportType(final SupportType supportType,
139 final Runnable inUi) {
140 this.supportType = supportType;
141 comboSupportTypes.setSelectedItem(supportType);
142 books.clear();
143
144 new Thread(new Runnable() {
145 @Override
146 public void run() {
147 searchPanel.setSupportType(supportType);
148 inUi(inUi);
149 }
150 }).start();
151 }
152
153 private void updatePages(final int page, final int maxPage) {
154 inUi(new Runnable() {
155 @Override
156 public void run() {
157 GuiReaderSearchFrame.this.page = page;
158 GuiReaderSearchFrame.this.maxPage = maxPage;
159
160 // TODO: gui
161 System.out.println("page: " + page);
162 System.out.println("max page: " + maxPage);
163 }
164 });
165 }
166
167 private void updateBooks(final List<GuiReaderBookInfo> infos) {
168 setWaiting(true);
169 inUi(new Runnable() {
170 @Override
171 public void run() {
172 books.refreshBooks(infos, seeWordcount);
173 setWaiting(false);
174 }
175 });
176 }
177
178 // item 0 = no selection, else = default selection
179 public void search(final SupportType searchOn, final String keywords,
180 final int page, final int item) {
181 setWaiting(true);
182 new Thread(new Runnable() {
183 @Override
184 public void run() {
185 searchPanel.setSupportType(searchOn);
186 searchPanel.search(keywords, page, item);
187 inUi(new Runnable() {
188 @Override
189 public void run() {
190 setWaiting(false);
191 }
192 });
193 }
194 }).start();
195 }
196
197 // tag: null = base tags
198 public void searchTag(final SupportType searchOn, final int page,
199 final int item, final SearchableTag tag) {
200 setWaiting(true);
201 new Thread(new Runnable() {
202 @Override
203 public void run() {
204 searchPanel.setSupportType(searchOn);
205 searchPanel.searchTag(tag, page, item);
206 inUi(new Runnable() {
207 @Override
208 public void run() {
209 setWaiting(false);
210 }
211 });
212 }
213 }).start();
214 }
215
216 /**
217 * Process the given action in the main Swing UI thread.
218 * <p>
219 * The code will make sure the current thread is the main UI thread and, if
220 * not, will switch to it before executing the runnable.
221 * <p>
222 * Synchronous operation.
223 *
224 * @param run
225 * the action to run
226 */
227 static void inUi(final Runnable run) {
228 if (EventQueue.isDispatchThread()) {
229 run.run();
230 } else {
231 try {
232 EventQueue.invokeAndWait(run);
233 } catch (InterruptedException e) {
234 error(e);
235 } catch (InvocationTargetException e) {
236 error(e);
237 }
238 }
239 }
240
241 static void error(Exception e) {
242 Instance.getTraceHandler().error(e);
243 }
244
245 static void error(String e) {
246 Instance.getTraceHandler().error(e);
247 }
248
249 /**
250 * Enables or disables this component, depending on the value of the
251 * parameter <code>b</code>. An enabled component can respond to user input
252 * and generate events. Components are enabled initially by default.
253 * <p>
254 * Disabling this component will also affect its children.
255 *
256 * @param b
257 * If <code>true</code>, this component is enabled; otherwise
258 * this component is disabled
259 */
260 @Override
261 public void setEnabled(boolean b) {
262 super.setEnabled(b);
263 books.setEnabled(b);
264 searchPanel.setEnabled(b);
265 }
266
267 private void setWaiting(final boolean waiting) {
268 inUi(new Runnable() {
269 @Override
270 public void run() {
271 GuiReaderSearchFrame.this.setEnabled(!waiting);
272 }
273 });
274 }
275 }