io.ultreia.gc.lfn.ui.LogFieldNotesUI Maven / Gradle / Ivy
package io.ultreia.gc.lfn.ui;
/*-
* #%L
* GC toolkit :: LFN
* %%
* Copyright (C) 2017 Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import io.ultreia.gc.lfn.GcLfnConfig;
import io.ultreia.gc.lfn.LogFieldNotesContext;
import io.ultreia.gc.model.GcFieldNote;
import io.ultreia.gc.ui.GcApplicationUISupport;
import java.util.Collections;
import java.util.List;
/**
* Created by tchemit on 15/04/17.
*
* @author Tony Chemit - [email protected]
*/
public class LogFieldNotesUI extends GcApplicationUISupport {
public LogFieldNotesUI(LogFieldNotesContext applicationContext, LogFieldNotesUIModel model) {
super(applicationContext, model, "Archeo challenges checker");
}
@Override
protected LogFieldNotesContentPanelUI createContentPanel(LogFieldNotesUIModel model) {
return new LogFieldNotesContentPanelUI(this, model);
}
@Override
protected void afterLogOut() {
loadFieldNotes(Collections.emptyList());
}
@Override
public void afterLogin(String authId) {
super.afterLogin(authId);
loadFieldNotes();
// GcLog gcL = getApplicationContext().newGcLogService().getMyLogFromCacheGuid("8f90a3bd-590f-4469-88ff-a198c4827250");
// System.out.println("My log:" + gcL.getLogText());
}
public void loadFieldNotes() {
List fieldNotes = getApplicationContext().newFieldNotesService().loadFieldNotes();
loadFieldNotes(fieldNotes);
}
private void loadFieldNotes(List fieldNotes) {
getModel().setFieldNotes(fieldNotes);
LogFieldNotesContentPanelUI contentPanel = getContentPanel();
contentPanel.getFieldNotesTable().clearSelection();
LogFieldNotesTableModel tableModel = (LogFieldNotesTableModel) contentPanel.getFieldNotesTable().getModel();
tableModel.fireTableDataChanged();
contentPanel.updateApply();
}
}