accounting-manager/src/main/java/org/gcube/portlets/admin/accountingmanager/client/filters/ActiveFiltersPanel.java

952 lines
29 KiB
Java

package org.gcube.portlets.admin.accountingmanager.client.filters;
import java.util.ArrayList;
import java.util.List;
import org.gcube.portlets.admin.accountingmanager.client.event.AccountingPeriodEvent;
import org.gcube.portlets.admin.accountingmanager.client.event.AccountingPeriodRequestEvent;
import org.gcube.portlets.admin.accountingmanager.client.event.SessionExpiredEvent;
import org.gcube.portlets.admin.accountingmanager.client.event.StateChangeEvent;
import org.gcube.portlets.admin.accountingmanager.client.monitor.AccountingMonitor;
import org.gcube.portlets.admin.accountingmanager.client.properties.AccountingFilterProperties;
import org.gcube.portlets.admin.accountingmanager.client.resource.AccountingManagerResources;
import org.gcube.portlets.admin.accountingmanager.client.rpc.AccountingManagerServiceAsync;
import org.gcube.portlets.admin.accountingmanager.client.state.AccountingClientStateData;
import org.gcube.portlets.admin.accountingmanager.client.type.SessionExpiredType;
import org.gcube.portlets.admin.accountingmanager.client.utils.UtilsGXT3;
import org.gcube.portlets.admin.accountingmanager.shared.data.AccountingFilter;
import org.gcube.portlets.admin.accountingmanager.shared.data.AccountingFilterBasic;
import org.gcube.portlets.admin.accountingmanager.shared.data.AccountingFilterDefinition;
import org.gcube.portlets.admin.accountingmanager.shared.data.AccountingFilterTop;
import org.gcube.portlets.admin.accountingmanager.shared.data.ChartType;
import org.gcube.portlets.admin.accountingmanager.shared.data.FilterKey;
import org.gcube.portlets.admin.accountingmanager.shared.data.FilterValue;
import org.gcube.portlets.admin.accountingmanager.shared.data.FilterValuesRequest;
import org.gcube.portlets.admin.accountingmanager.shared.exception.SessionExpiredException;
import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.cell.client.AbstractCell;
import com.google.gwt.core.client.GWT;
import com.google.gwt.editor.client.Editor.Path;
import com.google.gwt.event.logical.shared.SelectionEvent;
import com.google.gwt.event.logical.shared.SelectionHandler;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.sencha.gxt.cell.core.client.ButtonCell.IconAlign;
import com.sencha.gxt.cell.core.client.form.ComboBoxCell.TriggerAction;
import com.sencha.gxt.core.client.Style.SelectionMode;
import com.sencha.gxt.core.client.XTemplates;
import com.sencha.gxt.core.client.util.Margins;
import com.sencha.gxt.data.shared.LabelProvider;
import com.sencha.gxt.data.shared.ListStore;
import com.sencha.gxt.data.shared.ModelKeyProvider;
import com.sencha.gxt.data.shared.PropertyAccess;
import com.sencha.gxt.dnd.core.client.DND.Feedback;
import com.sencha.gxt.dnd.core.client.DndDragStartEvent;
import com.sencha.gxt.dnd.core.client.DndDragStartEvent.DndDragStartHandler;
import com.sencha.gxt.dnd.core.client.GridDragSource;
import com.sencha.gxt.dnd.core.client.GridDropTarget;
import com.sencha.gxt.widget.core.client.button.ButtonBar;
import com.sencha.gxt.widget.core.client.button.TextButton;
import com.sencha.gxt.widget.core.client.container.BoxLayoutContainer.BoxLayoutData;
import com.sencha.gxt.widget.core.client.container.MarginData;
import com.sencha.gxt.widget.core.client.container.SimpleContainer;
import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer;
import com.sencha.gxt.widget.core.client.container.VerticalLayoutContainer.VerticalLayoutData;
import com.sencha.gxt.widget.core.client.event.BeforeStartEditEvent;
import com.sencha.gxt.widget.core.client.event.BeforeStartEditEvent.BeforeStartEditHandler;
import com.sencha.gxt.widget.core.client.event.CancelEditEvent;
import com.sencha.gxt.widget.core.client.event.CancelEditEvent.CancelEditHandler;
import com.sencha.gxt.widget.core.client.event.CompleteEditEvent;
import com.sencha.gxt.widget.core.client.event.CompleteEditEvent.CompleteEditHandler;
import com.sencha.gxt.widget.core.client.event.SelectEvent;
import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler;
import com.sencha.gxt.widget.core.client.form.ComboBox;
import com.sencha.gxt.widget.core.client.form.FieldLabel;
import com.sencha.gxt.widget.core.client.form.FieldSet;
import com.sencha.gxt.widget.core.client.form.IntegerSpinnerField;
import com.sencha.gxt.widget.core.client.form.StringComboBox;
import com.sencha.gxt.widget.core.client.grid.ColumnConfig;
import com.sencha.gxt.widget.core.client.grid.ColumnModel;
import com.sencha.gxt.widget.core.client.grid.Grid;
import com.sencha.gxt.widget.core.client.grid.Grid.GridCell;
import com.sencha.gxt.widget.core.client.grid.GridSelectionModel;
import com.sencha.gxt.widget.core.client.grid.editing.GridRowEditing;
import com.sencha.gxt.widget.core.client.toolbar.ToolBar;
/**
*
* @author giancarlo email: <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class ActiveFiltersPanel extends SimpleContainer {
private static final int TOP_NUMBER_DEFAULT = 5;
private static final int TOP_NUMBER_MAX = 10;
private static final int TOP_NUMBER_MIN = 1;
private EventBus eventBus;
private Grid<AccountingFilter> grid;
private ListStore<AccountingFilter> store;
private boolean addStatus;
private AccountingClientStateData accountingStateData;
private ListStore<FilterKey> storeComboFilterKey;
private ComboBox<FilterKey> comboFilterKey;
private ListStore<String> storeComboFilterValue;
private StringComboBox comboFilterValue;
private GridRowEditing<AccountingFilter> editing;
private TextButton addButton;
private int seq;
private ListStore<ChartType> storeComboChartType;
private ComboBox<ChartType> comboChartType;
private ListStore<FilterKey> storeComboTopFilterKey;
private ComboBox<FilterKey> comboTopFilterKey;
private FieldLabel comboTopFilterKeyLabel;
private ToolBar toolBar;
private IntegerSpinnerField topNumber;
private FieldLabel topNumberLabel;
private FilterKey filterKey;
private boolean cancelValue;
private AccountingMonitor accountingMonitor;
public interface FilterKeyPropertiesCombo extends PropertyAccess<FilterKey> {
@Path("id")
ModelKeyProvider<FilterKey> id();
LabelProvider<FilterKey> key();
}
/*
* public interface FilterValuePropertiesCombo extends
* PropertyAccess<FilterValue> {
*
* @Path("id") ModelKeyProvider<FilterValue> id();
*
* LabelProvider<FilterValue> value();
*
* }
*/
interface FilterKeyTemplates extends XTemplates {
@XTemplate("<span title=\"{value}\">{value}</span>")
SafeHtml format(String value);
}
interface FilterValueTemplates extends XTemplates {
@XTemplate("<span title=\"{value}\">{value}</span>")
SafeHtml format(String value);
}
public ActiveFiltersPanel(EventBus eventBus) {
super();
Log.debug("ActiveFiltersPanel");
this.eventBus = eventBus;
init();
create();
bindToEvents();
}
private void init() {
}
private void create() {
// Grid
AccountingFilterProperties props = GWT
.create(AccountingFilterProperties.class);
ColumnConfig<AccountingFilter, FilterKey> keyColumn = new ColumnConfig<AccountingFilter, FilterKey>(
props.filterKey(), 130, "Key");
keyColumn.setMenuDisabled(true);
keyColumn.setCell(new AbstractCell<FilterKey>() {
@Override
public void render(Context context, FilterKey filterKey,
SafeHtmlBuilder sb) {
FilterKeyTemplates filterKeyTemplates = GWT
.create(FilterKeyTemplates.class);
sb.append(filterKeyTemplates.format(filterKey.getKey()));
}
});
/*
* ColumnConfig<AccountingFilter, FilterValue> valueColumn = new
* ColumnConfig<AccountingFilter, FilterValue>( props.filterValue(),
* 130, "Value"); valueColumn.setMenuDisabled(true);
* valueColumn.setCell(new AbstractCell<FilterValue>() {
*
* @Override public void render(Context context, FilterValue
* filterValue, SafeHtmlBuilder sb) { FilterValueTemplates
* filterValueTemplates = GWT .create(FilterValueTemplates.class);
* sb.append(filterValueTemplates.format(filterValue.getValue())); } });
*/
ColumnConfig<AccountingFilter, String> valueColumn = new ColumnConfig<AccountingFilter, String>(
props.filterValue(), 130, "Value");
valueColumn.setMenuDisabled(true);
valueColumn.setCell(new AbstractCell<String>() {
@Override
public void render(Context context, String filterValue,
SafeHtmlBuilder sb) {
FilterValueTemplates filterValueTemplates = GWT
.create(FilterValueTemplates.class);
sb.append(filterValueTemplates.format(filterValue));
}
});
ArrayList<ColumnConfig<AccountingFilter, ?>> l = new ArrayList<ColumnConfig<AccountingFilter, ?>>();
l.add(keyColumn);
l.add(valueColumn);
ColumnModel<AccountingFilter> columns = new ColumnModel<AccountingFilter>(
l);
store = new ListStore<AccountingFilter>(props.id());
final GridSelectionModel<AccountingFilter> sm = new GridSelectionModel<AccountingFilter>();
sm.setSelectionMode(SelectionMode.SINGLE);
grid = new Grid<AccountingFilter>(store, columns);
grid.setSelectionModel(sm);
grid.getView().setStripeRows(true);
grid.getView().setColumnLines(true);
grid.getView().setAutoFill(true);
grid.setBorders(false);
grid.setColumnReordering(false);
grid.getView().setAutoExpandColumn(valueColumn);
grid.getView().setSortingEnabled(false);
GridDragSource<AccountingFilter> ds = new GridDragSource<AccountingFilter>(
grid);
ds.addDragStartHandler(new DndDragStartHandler() {
@Override
public void onDragStart(DndDragStartEvent event) {
@SuppressWarnings("unchecked")
ArrayList<AccountingFilter> draggingSelection = (ArrayList<AccountingFilter>) event
.getData();
Log.debug("Start Drag: " + draggingSelection);
}
});
GridDropTarget<AccountingFilter> dt = new GridDropTarget<AccountingFilter>(
grid);
dt.setFeedback(Feedback.BOTH);
dt.setAllowSelfAsSource(true);
// EDITING //
// Key
FilterKeyPropertiesCombo filterKeyPropertiesCombo = GWT
.create(FilterKeyPropertiesCombo.class);
storeComboFilterKey = new ListStore<FilterKey>(
filterKeyPropertiesCombo.id());
comboFilterKey = new ComboBox<FilterKey>(storeComboFilterKey,
filterKeyPropertiesCombo.key());
comboFilterKey.setClearValueOnParseError(false);
comboFilterKey.setEditable(false);
comboFilterKey.setTriggerAction(TriggerAction.ALL);
addHandlersForComboFilterKey(filterKeyPropertiesCombo.key());
// Value
/*
* FilterValuePropertiesCombo filterValuePropertiesCombo = GWT
* .create(FilterValuePropertiesCombo.class);
*/
storeComboFilterValue = new ListStore<String>(
new ModelKeyProvider<String>() {
@Override
public String getKey(String item) {
return item;
}
});
comboFilterValue = new StringComboBox();
comboFilterValue.setStore(storeComboFilterValue);
comboFilterValue.setClearValueOnParseError(false);
comboFilterValue.setEditable(true);
comboFilterValue.setForceSelection(false);
// comboFilterValue.setAllowBlank(false);
// comboFilterValue.setFinishEditOnEnter(false);
// comboFilterValue.setAutoValidate(true);
// comboFilterValue.addValidator(new EmptyValidator<String>());
comboFilterValue.setTriggerAction(TriggerAction.ALL);
// final TextField valueField = new TextField();
// valueField.addValidator(new EmptyValidator<String>());
editing = new GridRowEditing<AccountingFilter>(grid);
editing.addEditor(keyColumn, comboFilterKey);
editing.addEditor(valueColumn, comboFilterValue);
addButton = new TextButton("Add Filter");
addButton.setIcon(AccountingManagerResources.INSTANCE
.accountingFilter24());
addButton.setIconAlign(IconAlign.RIGHT);
addButton.setToolTip("Add Filter");
addButton.addSelectHandler(new SelectHandler() {
@Override
public void onSelect(SelectEvent event) {
addNewFilter(event);
}
});
TextButton deleteBtn = new TextButton("Delete");
deleteBtn.addSelectHandler(new SelectEvent.SelectHandler() {
public void onSelect(SelectEvent event) {
GridCell cell = editing.getActiveCell();
int rowIndex = cell.getRow();
editing.cancelEditing();
store.remove(rowIndex);
store.commitChanges();
editing.getCancelButton().setVisible(true);
addButton.setEnabled(true);
if (addStatus) {
addStatus = false;
}
}
});
ButtonBar buttonBar = editing.getButtonBar();
buttonBar.add(deleteBtn);
editing.addBeforeStartEditHandler(new BeforeStartEditHandler<AccountingFilter>() {
@Override
public void onBeforeStartEdit(
BeforeStartEditEvent<AccountingFilter> event) {
editingBeforeStart(event);
}
});
editing.addCancelEditHandler(new CancelEditHandler<AccountingFilter>() {
@Override
public void onCancelEdit(CancelEditEvent<AccountingFilter> event) {
store.rejectChanges();
addButton.setEnabled(true);
}
});
editing.addCompleteEditHandler(new CompleteEditHandler<AccountingFilter>() {
@Override
public void onCompleteEdit(CompleteEditEvent<AccountingFilter> event) {
try {
// GridCell cell = event.getEditCell();
// int rowIndex = cell.getRow();
// AccountingFilter editingFilter = store.get(rowIndex);
if (addStatus) {
addStatus = false;
}
store.commitChanges();
editing.getCancelButton().setVisible(true);
addButton.setEnabled(true);
} catch (Throwable e) {
Log.error("Error in RuleOnTableNewDefinitionCard: "
+ e.getLocalizedMessage());
e.printStackTrace();
}
}
});
//
toolBar = new ToolBar();
toolBar.add(addButton, new BoxLayoutData(new Margins(0)));
// ChartTypeSelection
storeComboChartType = new ListStore<ChartType>(
new ModelKeyProvider<ChartType>() {
@Override
public String getKey(ChartType item) {
// TODO Auto-generated method stub
return item.name();
}
});
storeComboChartType.addAll(ChartType.asList());
LabelProvider<ChartType> comboChartTypeLabelProvider = new LabelProvider<ChartType>() {
@Override
public String getLabel(ChartType item) {
return item.getLabel();
}
};
comboChartType = new ComboBox<>(storeComboChartType,
comboChartTypeLabelProvider);
comboChartType.setClearValueOnParseError(false);
comboChartType.setEditable(false);
comboChartType.setForceSelection(true);
// comboFilterValue.setAllowBlank(false);
comboChartType.setValue(ChartType.Basic);
// comboFilterValue.setFinishEditOnEnter(false);
// comboFilterValue.setAutoValidate(true);
// comboFilterValue.addValidator(new EmptyValidator<String>());
comboChartType.setTriggerAction(TriggerAction.ALL);
addHandlersForComboChartType(comboChartTypeLabelProvider);
FieldLabel comboChartTypeLabel = new FieldLabel(comboChartType, "Chart");
// FileterKeyCombo for Top Chart
storeComboTopFilterKey = new ListStore<FilterKey>(
filterKeyPropertiesCombo.id());
comboTopFilterKey = new ComboBox<FilterKey>(storeComboTopFilterKey,
filterKeyPropertiesCombo.key());
comboTopFilterKey.setClearValueOnParseError(false);
comboTopFilterKey.setEditable(false);
comboTopFilterKey.setTriggerAction(TriggerAction.ALL);
addHandlersForComboTopFilterKey(filterKeyPropertiesCombo.key());
comboTopFilterKeyLabel = new FieldLabel(comboTopFilterKey, "Key");
//
topNumber = new IntegerSpinnerField();
topNumber.setMaxValue(TOP_NUMBER_MAX);
topNumber.setMinValue(TOP_NUMBER_MIN);
topNumber.setAllowNegative(false);
topNumber.setAllowBlank(false);
topNumber.setValue(TOP_NUMBER_DEFAULT);
topNumber.setEditable(false);
topNumberLabel = new FieldLabel(topNumber, "Number");
// //
VerticalLayoutContainer vlc = new VerticalLayoutContainer();
vlc.add(comboChartTypeLabel, new VerticalLayoutData(1, -1, new Margins(
0)));
vlc.add(comboTopFilterKeyLabel, new VerticalLayoutData(1, -1,
new Margins(0)));
vlc.add(topNumberLabel, new VerticalLayoutData(1, -1, new Margins(0)));
vlc.add(toolBar, new VerticalLayoutData(1, -1, new Margins(0)));
vlc.add(grid, new VerticalLayoutData(1, 1, new Margins(0)));
FieldSet fieldSet = new FieldSet();
fieldSet.setHeadingHtml("<b>Active Filters</b>");
fieldSet.setCollapsible(false);
fieldSet.add(vlc);
add(fieldSet, new MarginData(0));
comboTopFilterKeyLabel.setVisible(false);
topNumberLabel.setVisible(false);
}
// Bind to Events
private void bindToEvents() {
eventBus.addHandler(StateChangeEvent.TYPE,
new StateChangeEvent.StateChangeEventHandler() {
@Override
public void onStateChange(StateChangeEvent event) {
Log.debug("Catch State Change Event");
doStateChangeCommand(event);
}
});
eventBus.addHandler(AccountingPeriodEvent.TYPE,
new AccountingPeriodEvent.AccountingPeriodEventHandler() {
@Override
public void onPeriod(AccountingPeriodEvent event) {
Log.debug("Catch Accounting Period Event");
manageAccountingPeriodEvent(event);
}
});
}
private void doStateChangeCommand(StateChangeEvent event) {
if (event.getStateChangeType() == null) {
return;
}
switch (event.getStateChangeType()) {
case Restore:
onRestoreStateChange(event);
break;
case Update:
break;
default:
break;
}
}
private void onRestoreStateChange(StateChangeEvent event) {
if (event.getAccountingStateData() != null) {
accountingStateData = event.getAccountingStateData();
changeActiveFilters();
} else {
accountingStateData = null;
seq = 0;
}
Log.debug("Set seq to: " + seq);
forceLayout();
}
private void changeActiveFilters() {
storeComboFilterKey.clear();
storeComboFilterKey
.addAll(accountingStateData.getAvailableFilterKeys());
storeComboFilterKey.commitChanges();
storeComboTopFilterKey.clear();
storeComboTopFilterKey.addAll(accountingStateData
.getAvailableFilterKeys());
storeComboTopFilterKey.commitChanges();
ChartType chartType = accountingStateData
.getSeriesRequest().getAccountingFilterDefinition()
.getChartType();
switch (chartType) {
case Basic:
changeActiveFiltersForBasic();
break;
case Top:
changeActiveFiltersForTop();
break;
default:
changeActiveFiltersForBasic();
break;
}
}
private void changeActiveFiltersForBasic() {
if (accountingStateData.getSeriesRequest() != null
&& accountingStateData.getSeriesRequest()
.getAccountingFilterDefinition() != null
&& accountingStateData.getSeriesRequest()
.getAccountingFilterDefinition() instanceof AccountingFilterBasic) {
AccountingFilterBasic accountingFilterBasic = (AccountingFilterBasic) accountingStateData
.getSeriesRequest().getAccountingFilterDefinition();
if (accountingFilterBasic.getFilters() != null) {
List<AccountingFilter> filters = accountingFilterBasic
.getFilters();
store.clear();
store.addAll(filters);
seq = 0;
for (AccountingFilter filter : filters) {
if (filter.getId() > seq) {
seq = filter.getId();
}
}
store.commitChanges();
} else {
store.clear();
store.commitChanges();
seq = 0;
}
} else {
store.clear();
store.commitChanges();
seq = 0;
}
comboChartType.setValue(ChartType.Basic);
comboTopFilterKey.reset();
comboTopFilterKeyLabel.setVisible(false);
topNumber.reset();
topNumberLabel.setVisible(false);
forceLayout();
}
private void changeActiveFiltersForTop() {
if (accountingStateData.getSeriesRequest() != null
&& accountingStateData.getSeriesRequest()
.getAccountingFilterDefinition() != null
&& accountingStateData.getSeriesRequest()
.getAccountingFilterDefinition() instanceof AccountingFilterTop) {
AccountingFilterTop accountingFilterTop = (AccountingFilterTop) accountingStateData
.getSeriesRequest().getAccountingFilterDefinition();
if (accountingFilterTop.getFilterKey() != null) {
comboTopFilterKey.setValue(accountingFilterTop.getFilterKey());
topNumber.setValue(accountingFilterTop.getTopNumber());
} else {
comboTopFilterKey.reset();
topNumber.reset();
topNumber.setValue(TOP_NUMBER_DEFAULT);
}
} else {
comboTopFilterKey.reset();
topNumber.reset();
topNumber.setValue(TOP_NUMBER_DEFAULT);
}
store.clear();
store.commitChanges();
seq = 0;
comboChartType.setValue(ChartType.Top);
comboTopFilterKeyLabel.setVisible(true);
topNumberLabel.setVisible(true);
forceLayout();
}
public AccountingFilterDefinition getActiveFilters() {
try {
ChartType chartType = comboChartType
.getCurrentValue();
switch (chartType) {
case Basic:
return getActiveFiltersForBasic();
case Top:
return getActiveFiltersForTop();
default:
return null;
}
} catch (Throwable e) {
Log.error(e.getLocalizedMessage());
e.printStackTrace();
UtilsGXT3.alert("Attention", e.getLocalizedMessage());
return null;
}
}
private AccountingFilterDefinition getActiveFiltersForBasic() {
if (store == null || store.size() <= 0) {
return new AccountingFilterBasic();
} else {
List<AccountingFilter> filtersActives = store.getAll();
ArrayList<AccountingFilter> filtersReady = new ArrayList<AccountingFilter>();
for (AccountingFilter filter : filtersActives) {
if (filter.getFilterValue() != null
&& !filter.getFilterValue().isEmpty()) {
filtersReady.add(filter);
}
}
if (filtersReady.size() > 0) {
return new AccountingFilterBasic(filtersReady);
} else {
return new AccountingFilterBasic();
}
}
}
private AccountingFilterDefinition getActiveFiltersForTop() {
FilterKey filterKey = comboTopFilterKey.getCurrentValue();
if (filterKey == null) {
return new AccountingFilterTop();
} else {
Integer topN = topNumber.getCurrentValue();
if (store == null || store.size() <= 0) {
return new AccountingFilterTop(filterKey, null, topN);
} else {
List<AccountingFilter> filtersActives = store.getAll();
ArrayList<AccountingFilter> filtersReady = new ArrayList<AccountingFilter>();
for (AccountingFilter filter : filtersActives) {
if (filter.getFilterValue() != null
&& !filter.getFilterValue().isEmpty()) {
filtersReady.add(filter);
}
}
if (filtersReady.size() > 0) {
return new AccountingFilterTop(filterKey, filtersReady,
topN);
} else {
return new AccountingFilterTop(filterKey, null, topN);
}
}
}
}
private void addNewFilter(SelectEvent event) {
List<AccountingFilter> filtersSet = store.getAll();
FilterKey fk = null;
if (accountingStateData == null
|| accountingStateData.getAvailableFilterKeys() == null
|| accountingStateData.getAvailableFilterKeys().size() < 0) {
UtilsGXT3.info("No key available", "No key available");
} else {
List<FilterKey> remainingFilterKeys = new ArrayList<FilterKey>(
accountingStateData.getAvailableFilterKeys());
List<FilterKey> removableFilterKeys = new ArrayList<FilterKey>();
for (AccountingFilter filterSet : filtersSet) {
removableFilterKeys.add(filterSet.getFilterKey());
}
if (comboChartType.getCurrentValue() != null
&& comboChartType.getCurrentValue().compareTo(
ChartType.Top) == 0) {
if (comboTopFilterKey.getCurrentValue() != null) {
removableFilterKeys
.add(comboTopFilterKey.getCurrentValue());
}
}
remainingFilterKeys.removeAll(removableFilterKeys);
if (remainingFilterKeys.size() > 0) {
/*
if (comboChartType.getCurrentValue() != null
&& comboChartType.getCurrentValue().compareTo(
ChartType.Top) == 0) {
if(!(store.getAll().size()<2)){
UtilsGXT3.info("Attention", "You can add at most 2 filters for top chart!");
return;
}
}
*/
fk = remainingFilterKeys.get(0);
seq++;
AccountingFilter newAccountingFilter = new AccountingFilter(
seq, fk, "");
Log.debug("newAccountingFilter: " + newAccountingFilter);
editing.cancelEditing();
addStatus = true;
editing.getCancelButton().setVisible(false);
store.add(newAccountingFilter);
int row = store.indexOf(newAccountingFilter);
storeComboFilterKey.clear();
storeComboFilterKey.addAll(remainingFilterKeys);
storeComboFilterKey.commitChanges();
editing.startEditing(new GridCell(row, 0));
} else {
UtilsGXT3.info("No key available", "No key available");
}
}
}
private void retrieveFilterValuesByKey(FilterKey filterKey,
final boolean cancelValue) {
this.filterKey=filterKey;
this.cancelValue=cancelValue;
AccountingPeriodRequestEvent event=new AccountingPeriodRequestEvent();
eventBus.fireEvent(event);
}
private void manageAccountingPeriodEvent(AccountingPeriodEvent event) {
if(event==null|| event.getAccountingPeriod()==null){
Log.debug("AccountingPeriod not valid");
return;
}
accountingMonitor=new AccountingMonitor();
FilterValuesRequest requestFilterValue = new FilterValuesRequest(
filterKey, accountingStateData.getAccountingType(), event.getAccountingPeriod());
AccountingManagerServiceAsync.INSTANCE.getFilterValues(
requestFilterValue,
new AsyncCallback<ArrayList<FilterValue>>() {
@Override
public void onFailure(Throwable caught) {
accountingMonitor.hide();
if (caught instanceof SessionExpiredException) {
eventBus.fireEvent(new SessionExpiredEvent(
SessionExpiredType.EXPIREDONSERVER));
} else {
Log.error("Error retrieving filter values:"
+ caught.getLocalizedMessage());
UtilsGXT3.alert("Error retrieving filter values",
caught.getLocalizedMessage());
}
}
@Override
public void onSuccess(ArrayList<FilterValue> result) {
Log.debug("FilterValues: " + result);
accountingMonitor.hide();
ArrayList<String> values = new ArrayList<String>();
for (FilterValue fv : result) {
values.add(fv.getValue());
}
if (cancelValue) {
comboFilterValue.clear();
}
storeComboFilterValue.clear();
storeComboFilterValue.addAll(values);
storeComboFilterValue.commitChanges();
}
});
}
private void editingBeforeStart(BeforeStartEditEvent<AccountingFilter> event) {
GridCell cell = event.getEditCell();
int rowIndex = cell.getRow();
AccountingFilter editingFilter = store.get(rowIndex);
List<AccountingFilter> filtersSet = store.getAll();
List<FilterKey> remainingFilterKeys = null;
if (accountingStateData == null
|| accountingStateData.getAvailableFilterKeys() == null) {
remainingFilterKeys = new ArrayList<FilterKey>();
} else {
remainingFilterKeys = new ArrayList<FilterKey>(
accountingStateData.getAvailableFilterKeys());
}
List<FilterKey> setFilterKeys = new ArrayList<FilterKey>();
if (comboChartType.getCurrentValue() != null
&& comboChartType.getCurrentValue().compareTo(
ChartType.Top) == 0) {
if (comboTopFilterKey.getCurrentValue() != null) {
setFilterKeys.add(comboTopFilterKey.getCurrentValue());
}
}
for (AccountingFilter filterSet : filtersSet) {
if (filterSet.getFilterKey().getKey()
.compareTo(editingFilter.getFilterKey().getKey()) != 0) {
setFilterKeys.add(filterSet.getFilterKey());
}
}
remainingFilterKeys.removeAll(setFilterKeys);
storeComboFilterKey.clear();
storeComboFilterKey.addAll(remainingFilterKeys);
storeComboFilterKey.commitChanges();
if (editingFilter.getFilterKey() != null) {
retrieveFilterValuesByKey(editingFilter.getFilterKey(), false);
}
addButton.setEnabled(false);
}
private void addHandlersForComboFilterKey(
final LabelProvider<FilterKey> labelProvider) {
comboFilterKey.addSelectionHandler(new SelectionHandler<FilterKey>() {
public void onSelection(SelectionEvent<FilterKey> event) {
Log.debug("FilterKey selected: " + event.getSelectedItem());
updateFilterKey(event.getSelectedItem());
}
});
}
private void updateFilterKey(FilterKey selectedFilterKey) {
retrieveFilterValuesByKey(selectedFilterKey, true);
}
private void addHandlersForComboChartType(
final LabelProvider<ChartType> labelProvider) {
comboChartType
.addSelectionHandler(new SelectionHandler<ChartType>() {
public void onSelection(
SelectionEvent<ChartType> event) {
Log.debug("FilterKey selected: "
+ event.getSelectedItem());
updateComboChartType(event.getSelectedItem());
}
});
}
private void updateComboChartType(ChartType chartType) {
if(chartType==null){
return;
}
switch (chartType) {
case Basic:
comboTopFilterKey.reset();
comboTopFilterKeyLabel.setVisible(false);
topNumber.reset();
topNumberLabel.setVisible(false);
store.clear();
store.commitChanges();
seq = 0;
forceLayout();
break;
case Top:
comboTopFilterKey.reset();
if (accountingStateData != null
&& accountingStateData.getAvailableFilterKeys() != null
&& accountingStateData.getAvailableFilterKeys().size() > 0) {
comboTopFilterKey.setValue(accountingStateData
.getAvailableFilterKeys().get(0));
}
comboTopFilterKeyLabel.setVisible(true);
topNumber.reset();
topNumber.setValue(TOP_NUMBER_DEFAULT);
topNumberLabel.setVisible(true);
store.clear();
store.commitChanges();
seq = 0;
forceLayout();
break;
default:
break;
}
}
private void addHandlersForComboTopFilterKey(
final LabelProvider<FilterKey> labelProvider) {
comboTopFilterKey
.addSelectionHandler(new SelectionHandler<FilterKey>() {
public void onSelection(SelectionEvent<FilterKey> event) {
Log.debug("FilterKey selected: "
+ event.getSelectedItem());
updateTopFilterKey(event.getSelectedItem());
}
});
}
private void updateTopFilterKey(FilterKey selectedFilterKey) {
store.clear();
store.commitChanges();
seq = 0;
}
}