|
|
@@ -1,7 +1,10 @@ |
|
|
|
package xyz.veronie.bgg.ui.contributions;
|
|
|
|
package xyz.veronie.bgg.ui.filters;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
|
|
|
import org.eclipse.e4.core.services.events.IEventBroker;
|
|
|
|
import org.eclipse.swt.SWT;
|
|
|
|
import org.eclipse.swt.events.FocusEvent;
|
|
|
|
import org.eclipse.swt.events.FocusListener;
|
|
|
@@ -14,65 +17,36 @@ import org.eclipse.swt.widgets.Combo; |
|
|
|
import org.eclipse.swt.widgets.Composite;
|
|
|
|
import org.eclipse.swt.widgets.Label;
|
|
|
|
|
|
|
|
import xyz.veronie.bgg.data.EventConstants;
|
|
|
|
import xyz.veronie.bgg.data.FilterFlagState;
|
|
|
|
import xyz.veronie.bgg.data.UserFlag;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum FilterState {
|
|
|
|
IS(0), ISNOT(1), IGNORE(2);
|
|
|
|
|
|
|
|
private int state;
|
|
|
|
|
|
|
|
private FilterState(int state) {
|
|
|
|
this.state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int get() {
|
|
|
|
return this.state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum UserFlag {
|
|
|
|
|
|
|
|
OWN("owned"),
|
|
|
|
PREVIOUSLY_OWNED("previously owned"),
|
|
|
|
FOR_TRADE("for trade"),
|
|
|
|
WANTED("wanted"),
|
|
|
|
WTP("want to play"),
|
|
|
|
WTB("want to buy"),
|
|
|
|
WISHLIST("on wishlist"),
|
|
|
|
PREORDERED("preordered");
|
|
|
|
|
|
|
|
private String flag;
|
|
|
|
|
|
|
|
private UserFlag(String flag) {
|
|
|
|
this.flag = flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return this.flag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// These are the controls to retrieve thing IDs for a given BGG user
|
|
|
|
/// Filters can be set for the state of the thing in the user's collection
|
|
|
|
/// (i.e. owned, previously owned, wishlist, etc.)
|
|
|
|
public class BggUserSourceFilter {
|
|
|
|
// TODO: have to protect this static because threading?
|
|
|
|
private static String user = "";
|
|
|
|
|
|
|
|
private static HashMap<UserFlag, FilterState> flags = new HashMap<UserFlag, FilterState>() {
|
|
|
|
@Inject
|
|
|
|
private IEventBroker eventBroker;
|
|
|
|
|
|
|
|
private HashMap<UserFlag, FilterFlagState> flags = new HashMap<UserFlag, FilterFlagState>() {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
{
|
|
|
|
put(UserFlag.OWN, FilterState.IS);
|
|
|
|
put(UserFlag.PREVIOUSLY_OWNED, FilterState.ISNOT);
|
|
|
|
put(UserFlag.FOR_TRADE, FilterState.IGNORE);
|
|
|
|
put(UserFlag.WANTED, FilterState.IGNORE);
|
|
|
|
put(UserFlag.WTP, FilterState.IGNORE);
|
|
|
|
put(UserFlag.WTB, FilterState.IGNORE);
|
|
|
|
put(UserFlag.WISHLIST, FilterState.IGNORE);
|
|
|
|
put(UserFlag.PREORDERED, FilterState.IGNORE);
|
|
|
|
put(UserFlag.OWN, FilterFlagState.IS);
|
|
|
|
put(UserFlag.PREVIOUSLY_OWNED, FilterFlagState.ISNOT);
|
|
|
|
put(UserFlag.FOR_TRADE, FilterFlagState.IGNORE);
|
|
|
|
put(UserFlag.WANTED, FilterFlagState.IGNORE);
|
|
|
|
put(UserFlag.WTP, FilterFlagState.IGNORE);
|
|
|
|
put(UserFlag.WTB, FilterFlagState.IGNORE);
|
|
|
|
put(UserFlag.WISHLIST, FilterFlagState.IGNORE);
|
|
|
|
put(UserFlag.PREORDERED, FilterFlagState.IGNORE);
|
|
|
|
}};
|
|
|
|
|
|
|
|
public static void create(Composite parent, int style) {
|
|
|
|
public void create(Composite parent, int style) {
|
|
|
|
|
|
|
|
GridLayout filterLayout = new GridLayout(4, false);
|
|
|
|
parent.setLayout(filterLayout);
|
|
|
@@ -86,7 +60,6 @@ public class BggUserSourceFilter { |
|
|
|
cbUserName.addSelectionListener(new SelectionAdapter() {
|
|
|
|
public void widgetDefaultSelected(SelectionEvent e) {
|
|
|
|
setUser(cbUserName.getText());
|
|
|
|
System.out.println("set user to '" + getUser() + "'");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
cbUserName.addFocusListener(new FocusListener() {
|
|
|
@@ -134,27 +107,26 @@ public class BggUserSourceFilter { |
|
|
|
// Filters are tri-state: include iff has flag, include iff it does not have the flag,
|
|
|
|
// don't care if it has that flag.
|
|
|
|
// TODO: create a three-way toggle button instead.
|
|
|
|
private static void makeFilter(Composite parent, UserFlag key) {
|
|
|
|
private void makeFilter(Composite parent, UserFlag key) {
|
|
|
|
Combo filterCombo = new Combo(parent, SWT.READ_ONLY);
|
|
|
|
filterCombo.add("is");
|
|
|
|
filterCombo.add("is not");
|
|
|
|
filterCombo.add("ignored");
|
|
|
|
filterCombo.select(flags.get(key).get());
|
|
|
|
filterCombo.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false));
|
|
|
|
// TODO: add listener - send a CONFIG_CHANGED event when something changes
|
|
|
|
|
|
|
|
Label filterLabel = new Label(parent, SWT.LEFT);
|
|
|
|
filterLabel.setText(key.toString());
|
|
|
|
filterLabel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static String getUser() {
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void setUser(String user) {
|
|
|
|
BggUserSourceFilter.user = user;
|
|
|
|
public void setUser(String user) {
|
|
|
|
if(eventBroker != null) {
|
|
|
|
eventBroker.post(EventConstants.TOPIC_USER_CHANGED, user);
|
|
|
|
} else {
|
|
|
|
System.out.println("null???");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|