use of org.magic.services.MagicWebSiteGenerator in project MtgDesktopCompanion by nicho92.
the class CollectionPanelGUI method initGUI.
public void initGUI() throws IOException, SQLException, ClassNotFoundException {
logger.info("init collection GUI");
MagicEditionsTableModel model;
JProgressBar progressBar;
JTabbedPane tabbedPane;
TypeRepartitionPanel typeRepartitionPanel;
ManaRepartitionPanel manaRepartitionPanel;
RarityRepartitionPanel rarityRepartitionPanel;
MagicCardDetailPanel magicCardDetailPanel;
CardStockPanel statsPanel;
JLabel lblTotal;
// //////INIT COMPONENTS
JPanel panneauHaut = new JPanel();
JButton btnAdd = new JButton(MTGConstants.ICON_NEW);
JButton btnRefresh = new JButton(MTGConstants.ICON_REFRESH);
JButton btnRemove = new JButton(MTGConstants.ICON_DELETE);
JButton btnAddAllSet = new JButton(MTGConstants.ICON_CHECK);
JButton btnExport = new JButton(MTGConstants.ICON_EXPORT);
JButton btnMassCollection = new JButton(MTGConstants.ICON_IMPORT);
JButton btnExportPriceCatalog = new JButton(MTGConstants.ICON_EURO);
JButton btnGenerateWebSite = new JButton(MTGConstants.ICON_WEBSITE);
JScrollPane scrollPaneCollections = new JScrollPane();
JScrollPane scrollPrices = new JScrollPane();
JSplitPane splitListPanel = new JSplitPane();
JSplitPane splitPane = new JSplitPane();
JPanel panneauGauche = new JPanel();
JScrollPane scrollPane = new JScrollPane();
JPanel panelTotal = new JPanel();
JPanel panneauDroite = new JPanel();
MagicCollectionTableCellRenderer render = new MagicCollectionTableCellRenderer();
tabbedPane = new JTabbedPane(JTabbedPane.TOP);
progressBar = new JProgressBar();
lblTotal = new JLabel();
magicEditionDetailPanel = new MagicEditionDetailPanel(true, false);
magicCardDetailPanel = new MagicCardDetailPanel();
typeRepartitionPanel = new TypeRepartitionPanel();
manaRepartitionPanel = new ManaRepartitionPanel();
rarityRepartitionPanel = new RarityRepartitionPanel();
statsPanel = new CardStockPanel();
historyPricesPanel = new HistoryPricesPanel();
jsonPanel = new JSONPanel();
tree = new LazyLoadingTree();
tableEditions = new JXTable();
// //////MODELS
model = new MagicEditionsTableModel();
DefaultRowSorter sorterEditions = new TableRowSorter<DefaultTableModel>(model);
modelPrices = new CardsPriceTableModel();
tablePrices = new JXTable(modelPrices);
model.init(provider.loadEditions());
tableEditions.setModel(model);
new TableFilterHeader(tableEditions, AutoChoices.ENABLED);
// ///////CONFIGURE COMPONENTS
splitListPanel.setDividerLocation(0.5);
splitListPanel.setResizeWeight(0.5);
progressBar.setVisible(false);
btnRemove.setEnabled(true);
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
splitPane.setResizeWeight(0.5);
splitPane.setOrientation(JSplitPane.VERTICAL_SPLIT);
scrollPaneCollections.setMinimumSize(new Dimension(0, 0));
tree.setCellRenderer(new MagicCardsTreeCellRenderer());
tablePrices.setColumnControlVisible(true);
magicCardDetailPanel.setPreferredSize(new Dimension(0, 0));
magicCardDetailPanel.enableThumbnail(true);
tableEditions.setDefaultRenderer(Object.class, render);
tableEditions.setDefaultRenderer(String.class, render);
tableEditions.setDefaultRenderer(Integer.class, render);
tableEditions.setDefaultRenderer(double.class, render);
tableEditions.setRowHeight(25);
tableEditions.setRowSorter(sorterEditions);
// ///////LAYOUT
setLayout(new BorderLayout(0, 0));
panneauDroite.setLayout(new BorderLayout());
panneauGauche.setLayout(new BorderLayout(0, 0));
// ///////ADD PANELS
add(panneauHaut, BorderLayout.NORTH);
panneauHaut.add(btnAdd);
panneauHaut.add(btnRefresh);
panneauHaut.add(btnRemove);
panneauHaut.add(btnAddAllSet);
panneauHaut.add(btnMassCollection);
panneauHaut.add(btnExport);
panneauHaut.add(btnExportPriceCatalog);
panneauHaut.add(btnGenerateWebSite);
panneauHaut.add(progressBar);
add(splitListPanel, BorderLayout.CENTER);
splitListPanel.setRightComponent(panneauDroite);
panneauDroite.add(splitPane, BorderLayout.CENTER);
splitPane.setLeftComponent(scrollPaneCollections);
scrollPaneCollections.setViewportView(tree);
splitPane.setRightComponent(tabbedPane);
scrollPrices.setViewportView(tablePrices);
splitListPanel.setLeftComponent(panneauGauche);
panneauGauche.add(scrollPane);
scrollPane.setViewportView(tableEditions);
panneauGauche.add(panelTotal, BorderLayout.SOUTH);
panelTotal.add(lblTotal);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("DETAILS"), null, magicCardDetailPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_EDITIONS"), null, magicEditionDetailPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICES"), null, scrollPrices, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_TYPES"), null, typeRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_MANA"), null, manaRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_RARITY"), null, rarityRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("STOCK_MODULE"), null, statsPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICE_VARIATIONS"), null, historyPricesPanel, null);
if (MTGControler.getInstance().get("debug-json-panel").equalsIgnoreCase("true"))
tabbedPane.addTab("Json", null, jsonPanel, null);
// ///////Labels
lblTotal.setText("Total : " + model.getCountDefaultLibrary() + "/" + model.getCountTotal());
btnAdd.setToolTipText(MTGControler.getInstance().getLangService().get("COLLECTION_ADD"));
btnRefresh.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_REFRESH"));
btnRemove.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("ITEM_SELECTED_REMOVE"));
btnAddAllSet.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_SET_FULL"));
btnExport.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("EXPORT_AS"));
btnMassCollection.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_IMPORT"));
btnExportPriceCatalog.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_EXPORT_PRICES"));
btnGenerateWebSite.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("GENERATE_WEBSITE"));
List<SortKey> keys = new ArrayList<>();
// column index 2
SortKey sortKey = new SortKey(3, SortOrder.DESCENDING);
keys.add(sortKey);
sorterEditions.setSortKeys(keys);
tableEditions.packAll();
initPopupCollection();
tableEditions.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent arg0) {
int row = tableEditions.getSelectedRow();
MagicEdition ed = (MagicEdition) tableEditions.getValueAt(row, 1);
magicEditionDetailPanel.setMagicEdition(ed);
historyPricesPanel.init(null, ed, ed.getSet());
jsonPanel.show(ed);
}
});
btnAdd.addActionListener(e -> {
String name = JOptionPane.showInputDialog(MTGControler.getInstance().getLangService().getCapitalize("NAME") + " ?");
MagicCollection collectionAdd = new MagicCollection();
collectionAdd.setName(name);
try {
dao.saveCollection(collectionAdd);
((LazyLoadingTree.MyNode) getJTree().getModel().getRoot()).add(new DefaultMutableTreeNode(collectionAdd));
getJTree().refresh();
initPopupCollection();
} catch (Exception ex) {
logger.error(ex);
JOptionPane.showMessageDialog(null, ex, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
});
btnRefresh.addActionListener(e -> ThreadManager.getInstance().execute(() -> {
progressBar.setVisible(true);
tree.refresh();
try {
model.calculate();
lblTotal.setText("Total : " + model.getCountDefaultLibrary() + "/" + model.getCountTotal());
} catch (Exception ex) {
logger.error(ex);
}
model.fireTableDataChanged();
progressBar.setVisible(false);
}, "update Tree"));
btnExport.addActionListener(ae -> {
JPopupMenu menu = new JPopupMenu();
for (final MTGCardsExport exp : MTGControler.getInstance().getEnabledDeckExports()) {
JMenuItem it = new JMenuItem();
it.setIcon(exp.getIcon());
it.setText(exp.getName());
it.addActionListener(arg0 -> ThreadManager.getInstance().execute(() -> {
try {
DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
JFileChooser jf = new JFileChooser();
MagicCollection mc = null;
MagicEdition ed = null;
if (curr.getUserObject() instanceof MagicEdition) {
ed = (MagicEdition) curr.getUserObject();
mc = (MagicCollection) ((DefaultMutableTreeNode) curr.getParent()).getUserObject();
} else {
mc = (MagicCollection) curr.getUserObject();
}
jf.setSelectedFile(new File(mc.getName() + exp.getFileExtension()));
int result = jf.showSaveDialog(null);
File f = jf.getSelectedFile();
exp.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
if (result == JFileChooser.APPROVE_OPTION) {
progressBar.setVisible(true);
if (ed == null)
exp.export(dao.listCardsFromCollection(mc), f);
else
exp.export(dao.listCardsFromCollection(mc, ed), f);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, MTGControler.getInstance().getLangService().combine("EXPORT", "FINISHED"), MTGControler.getInstance().getLangService().getCapitalize("FINISHED"), JOptionPane.INFORMATION_MESSAGE);
}
} catch (Exception e) {
logger.error(e);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, e, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}, "export collection with " + exp));
menu.add(it);
}
Component b = (Component) ae.getSource();
Point p = b.getLocationOnScreen();
menu.show(b, 0, 0);
menu.setLocation(p.x, p.y + b.getHeight());
});
splitPane.addComponentListener(new ComponentAdapter() {
@Override
public void componentShown(ComponentEvent componentEvent) {
splitPane.setDividerLocation(.5);
removeComponentListener(this);
}
});
tablePrices.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent ev) {
if (ev.getClickCount() == 2 && !ev.isConsumed()) {
ev.consume();
try {
String url = tablePrices.getValueAt(tablePrices.getSelectedRow(), CardsPriceTableModel.ROW_URL).toString();
Desktop.getDesktop().browse(new URI(url));
} catch (Exception e) {
logger.error(e);
}
}
}
});
tree.addTreeSelectionListener(tse -> {
path = tse.getPath();
final DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
if (curr.getUserObject() instanceof String) {
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
statsPanel.enabledAdd(false);
}
if (curr.getUserObject() instanceof MagicCollection) {
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(true);
selectedcol = (MagicCollection) curr.getUserObject();
statsPanel.enabledAdd(false);
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(true);
}
if (curr.getUserObject() instanceof MagicEdition) {
magicEditionDetailPanel.setMagicEdition((MagicEdition) curr.getUserObject());
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(false);
statsPanel.enabledAdd(false);
ThreadManager.getInstance().execute(() -> {
try {
MagicCollection collec = (MagicCollection) ((DefaultMutableTreeNode) curr.getParent()).getUserObject();
List<MagicCard> list = dao.listCardsFromCollection(collec, (MagicEdition) curr.getUserObject());
rarityRepartitionPanel.init(list);
typeRepartitionPanel.init(list);
manaRepartitionPanel.init(list);
historyPricesPanel.init(null, (MagicEdition) curr.getUserObject(), curr.getUserObject().toString());
jsonPanel.show(curr.getUserObject());
} catch (Exception e) {
logger.error(e);
}
}, "Refresh Collection");
}
if (curr.getUserObject() instanceof MagicCard) {
final MagicCard card = (MagicCard) ((DefaultMutableTreeNode) path.getLastPathComponent()).getUserObject();
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
magicCardDetailPanel.setMagicCard((MagicCard) curr.getUserObject());
magicEditionDetailPanel.setMagicEdition(card.getEditions().get(0));
magicCardDetailPanel.enableThumbnail(true);
jsonPanel.show(curr.getUserObject());
ThreadManager.getInstance().execute(() -> {
statsPanel.initMagicCardStock(card, (MagicCollection) ((DefaultMutableTreeNode) curr.getParent().getParent()).getUserObject());
statsPanel.enabledAdd(true);
}, "Update Collection");
if (tabbedPane.getSelectedIndex() == 2) {
loadPrices(card);
}
ThreadManager.getInstance().execute(() -> {
try {
historyPricesPanel.init(card, null, card.getName());
} catch (Exception e) {
logger.error(e);
}
}, "update history");
}
});
tabbedPane.addChangeListener(e -> {
if ((tabbedPane.getSelectedIndex() == 2) && ((DefaultMutableTreeNode) tree.getLastSelectedPathComponent()).getUserObject() instanceof MagicCard)
loadPrices((MagicCard) ((DefaultMutableTreeNode) tree.getLastSelectedPathComponent()).getUserObject());
});
tree.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
int row = tree.getClosestRowForLocation(e.getX(), e.getY());
tree.setSelectionRow(row);
final DefaultMutableTreeNode node = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
if (node.getUserObject() instanceof MagicEdition) {
popupMenuEdition.show(e.getComponent(), e.getX(), e.getY());
}
if (node.getUserObject() instanceof MagicCard) {
popupMenuCards.show(e.getComponent(), e.getX(), e.getY());
}
if (node.getUserObject() instanceof MagicCollection) {
JPopupMenu p = new JPopupMenu();
JMenuItem it = new JMenuItem("Mass movement");
p.add(it);
it.addActionListener(ae -> {
MassMoverDialog d = new MassMoverDialog((MagicCollection) node.getUserObject(), null);
d.setVisible(true);
logger.debug("closing mass import with change =" + d.hasChange());
});
p.show(e.getComponent(), e.getX(), e.getY());
}
}
}
});
btnMassCollection.addActionListener(ae -> {
MassCollectionImporterDialog diag = new MassCollectionImporterDialog();
diag.setVisible(true);
try {
model.calculate();
} catch (Exception e) {
logger.error(e);
}
model.fireTableDataChanged();
});
btnExportPriceCatalog.addActionListener(ae -> ThreadManager.getInstance().execute(() -> {
try {
PriceCatalogExportDialog diag = new PriceCatalogExportDialog(selectedcol);
diag.setVisible(true);
if (diag.value()) {
progressBar.setVisible(true);
progressBar.setStringPainted(true);
progressBar.setMinimum(0);
progressBar.setMaximum(dao.getCardsCount(selectedcol, null));
CSVExport exp = new CSVExport();
exp.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
exp.exportPriceCatalog(dao.listCardsFromCollection(selectedcol), diag.getDest(), diag.getPriceProviders());
JOptionPane.showMessageDialog(null, MTGControler.getInstance().getLangService().combine("EXPORT", "FINISHED"));
progressBar.setVisible(false);
}
} catch (Exception e) {
logger.error(e);
}
}, "btnExportPriceCatalog export Prices"));
btnGenerateWebSite.addActionListener(ae -> ThreadManager.getInstance().execute(() -> {
try {
WebSiteGeneratorDialog diag = new WebSiteGeneratorDialog(dao.getCollections());
diag.setVisible(true);
if (diag.value()) {
progressBar.setVisible(true);
progressBar.setStringPainted(true);
progressBar.setMinimum(0);
int max = 0;
for (MagicCollection col : diag.getSelectedCollections()) max += dao.getCardsCount(col, null);
progressBar.setMaximum(max);
progressBar.setValue(0);
MagicWebSiteGenerator gen = new MagicWebSiteGenerator(diag.getTemplate(), diag.getDest().getAbsolutePath());
gen.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
gen.generate(diag.getSelectedCollections(), diag.getPriceProviders());
int res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("WEBSITE_CONFIRMATION_VIEW"));
if (res == JOptionPane.YES_OPTION) {
Path p = Paths.get(diag.getDest().getAbsolutePath() + "/index.htm");
Desktop.getDesktop().browse(p.toUri());
}
progressBar.setVisible(false);
}
} catch (Exception e) {
logger.error("error generating website", e);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, e, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}, "btnGenerateWebSite generate website"));
btnAddAllSet.addActionListener(evt -> {
MagicEdition ed = (MagicEdition) tableEditions.getValueAt(tableEditions.getSelectedRow(), 1);
int res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_ADDITION", ed, MTGControler.getInstance().get("default-library")));
if (res == JOptionPane.YES_OPTION)
try {
List<MagicCard> list = provider.searchCardByCriteria("set", ed.getId(), null, false);
logger.debug("save " + list.size() + " cards from " + ed.getId());
for (MagicCard mc : list) {
MagicCollection col = new MagicCollection();
col.setName(MTGControler.getInstance().get("default-library"));
dao.saveCard(mc, col);
}
model.calculate();
model.fireTableDataChanged();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
logger.error(e);
}
});
btnRemove.addActionListener(evt -> {
MagicCollection col = (MagicCollection) ((DefaultMutableTreeNode) path.getPathComponent(1)).getUserObject();
int res = 0;
DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
if (curr.getUserObject() instanceof MagicCard) {
MagicCard card = (MagicCard) ((DefaultMutableTreeNode) path.getLastPathComponent()).getUserObject();
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_DELETE", card, col));
if (res == JOptionPane.YES_OPTION) {
dao.removeCard(card, col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (curr.getUserObject() instanceof MagicEdition) {
MagicEdition me = (MagicEdition) ((DefaultMutableTreeNode) path.getPathComponent(2)).getUserObject();
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_DELETE", me, col));
if (res == JOptionPane.YES_OPTION) {
dao.removeEdition(me, col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (curr.getUserObject() instanceof MagicCollection) {
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_DELETE", col, dao.getCardsCount(col, null)));
if (res == JOptionPane.YES_OPTION) {
dao.removeCollection(col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (res == JOptionPane.YES_OPTION) {
try {
model.calculate();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
tree.refresh();
}
});
}
Aggregations