use of org.drools.workbench.models.guided.dtable.shared.model.ActionCol52 in project drools-wb by kiegroup.
the class DependentEnumsUtilities method getCurrentValueMap.
/**
* Create a map of Field Values keyed on Field Names used by
* SuggestionCompletionEngine.getEnums(String, String, Map<String, String>)
* to drive dependent enumerations.
*
* @param context The Context of the cell being edited containing physical
* coordinate in the data-space.
*/
@Override
public Map<String, String> getCurrentValueMap(final Context context) {
Map<String, String> currentValueMap = new HashMap<String, String>();
final int iBaseRowIndex = context.getRowIndex();
final int iBaseColIndex = context.getColumnIndex();
final List<DTCellValue52> rowData = this.model.getData().get(iBaseRowIndex);
// Get the column for the cell being edited
final List<BaseColumn> allColumns = this.model.getExpandedColumns();
final BaseColumn baseColumn = allColumns.get(iBaseColIndex);
// Get values for all Constraints or Actions on the same pattern as the baseColumn
if (baseColumn instanceof BRLConditionVariableColumn) {
final BRLConditionVariableColumn baseBRLConditionColumn = (BRLConditionVariableColumn) baseColumn;
final BRLConditionColumn brl = model.getBRLColumn(baseBRLConditionColumn);
final RuleModel rm = new RuleModel();
IPattern[] lhs = new IPattern[brl.getDefinition().size()];
brl.getDefinition().toArray(lhs);
rm.lhs = lhs;
final RuleModelPeerVariableVisitor peerVariableVisitor = new RuleModelPeerVariableVisitor(rm, baseBRLConditionColumn.getVarName());
List<ValueHolder> peerVariables = peerVariableVisitor.getPeerVariables();
// Add other variables values
for (ValueHolder valueHolder : peerVariables) {
switch(valueHolder.getType()) {
case TEMPLATE_KEY:
final BRLConditionVariableColumn vc = getConditionVariableColumnIndex(brl.getChildColumns(), valueHolder.getValue());
final int iCol = allColumns.indexOf(vc);
final DTCellValue52 dcv = rowData.get(iCol);
final String field = vc.getFactField();
currentValueMap.put(field, cellUtilities.asString(dcv));
break;
case VALUE:
currentValueMap.put(valueHolder.getFieldName(), valueHolder.getValue());
}
}
} else if (baseColumn instanceof BRLActionVariableColumn) {
final BRLActionVariableColumn baseBRLActionColumn = (BRLActionVariableColumn) baseColumn;
final BRLActionColumn brl = model.getBRLColumn(baseBRLActionColumn);
final RuleModel rm = new RuleModel();
IAction[] rhs = new IAction[brl.getDefinition().size()];
brl.getDefinition().toArray(rhs);
rm.rhs = rhs;
final RuleModelPeerVariableVisitor peerVariableVisitor = new RuleModelPeerVariableVisitor(rm, baseBRLActionColumn.getVarName());
List<ValueHolder> peerVariables = peerVariableVisitor.getPeerVariables();
// Add other variables values
for (ValueHolder valueHolder : peerVariables) {
switch(valueHolder.getType()) {
case TEMPLATE_KEY:
final BRLActionVariableColumn vc = getActionVariableColumnIndex(brl.getChildColumns(), valueHolder.getValue());
final int iCol = allColumns.indexOf(vc);
final DTCellValue52 dcv = rowData.get(iCol);
final String field = vc.getFactField();
currentValueMap.put(field, cellUtilities.asString(dcv));
break;
case VALUE:
currentValueMap.put(valueHolder.getFieldName(), valueHolder.getValue());
}
}
} else if (baseColumn instanceof ConditionCol52) {
final ConditionCol52 baseConditionColumn = (ConditionCol52) baseColumn;
final Pattern52 basePattern = this.model.getPattern(baseConditionColumn);
for (ConditionCol52 cc : basePattern.getChildColumns()) {
final int iCol = allColumns.indexOf(cc);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(cc.getFactField(), cellUtilities.asString(dcv));
}
} else if (baseColumn instanceof ActionSetFieldCol52) {
ActionSetFieldCol52 baseActionColumn = (ActionSetFieldCol52) baseColumn;
final String binding = baseActionColumn.getBoundName();
for (ActionCol52 ac : this.model.getActionCols()) {
if (ac instanceof ActionSetFieldCol52) {
final ActionSetFieldCol52 asf = (ActionSetFieldCol52) ac;
if (asf.getBoundName().equals(binding)) {
final int iCol = allColumns.indexOf(asf);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(asf.getFactField(), cellUtilities.asString(dcv));
}
}
}
} else if (baseColumn instanceof ActionInsertFactCol52) {
ActionInsertFactCol52 baseActionColumn = (ActionInsertFactCol52) baseColumn;
final String binding = baseActionColumn.getBoundName();
for (ActionCol52 ac : this.model.getActionCols()) {
if (ac instanceof ActionInsertFactCol52) {
final ActionInsertFactCol52 aif = (ActionInsertFactCol52) ac;
if (aif.getBoundName().equals(binding)) {
final int iCol = allColumns.indexOf(aif);
final DTCellValue52 dcv = rowData.get(iCol);
currentValueMap.put(aif.getFactField(), cellUtilities.asString(dcv));
}
}
}
}
return currentValueMap;
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionCol52 in project drools-wb by kiegroup.
the class PluginHandlerTest method testEditWhenColumnIsInvalid.
@Test
public void testEditWhenColumnIsInvalid() {
final ActionCol52 column = mock(ActionCol52.class);
final DecisionTableColumnPlugin plugin = mock(DecisionTableColumnPlugin.class);
doReturn(plugin).when(actionWorkItemSetFieldPlugin).get();
pluginHandler.edit(column);
verify(plugin, never()).setOriginalColumnConfig52(column);
verify(pluginHandler, never()).openWizard(plugin);
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionCol52 in project drools-wb by kiegroup.
the class ColumnManagementView method renderColumn.
HorizontalPanel renderColumn(final ActionCol52 actionColumn) {
HorizontalPanel action = newHorizontalPanel();
final ColumnLabelWidget actionLabel = makeColumnLabel(actionColumn);
action.add(actionLabel);
final FlowPanel buttons = new FlowPanel() {
{
add(editAnchor((clickEvent) -> {
presenter.getActiveDecisionTable().ifPresent(dt -> dt.editAction(actionColumn));
}));
if (presenter.isActiveDecisionTableEditable()) {
add(deleteAnchor(actionColumn.getHeader(), () -> {
try {
final Optional<GuidedDecisionTableView.Presenter> dtPresenter = presenter.getActiveDecisionTable();
if (dtPresenter.isPresent()) {
dtPresenter.get().deleteColumn(actionColumn);
}
} catch (VetoDeletePatternInUseException veto) {
presenter.getView().showUnableToDeleteColumnMessage(actionColumn);
} catch (VetoException veto) {
presenter.getView().showGenericVetoMessage();
}
}));
}
}
};
action.add(buttons);
return action;
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionCol52 in project drools-wb by kiegroup.
the class BaseActionColumnDefinitionBuilder method generateActionColumn.
protected void generateActionColumn(final GuidedDecisionTableView.Presenter dtPresenter, final BaseColumn column, final Callback<String> afterGenerationCallback) {
final GuidedDecisionTable52 existingModel = dtPresenter.getModel();
final GuidedDecisionTable52 partialModel = new GuidedDecisionTable52();
final ColumnUtilities columnUtilities = new ColumnUtilities(existingModel, dtPresenter.getDataModelOracle());
final ActionCol52 ac = (ActionCol52) column;
partialModel.getActionCols().add(ac);
partialModel.getData().add(makeRowData(columnUtilities, ac));
generateDefinitionOnServer(partialModel, dtPresenter.getCurrentPath(), (String drl) -> afterGenerationCallback.callback(getRHS(drl)));
}
use of org.drools.workbench.models.guided.dtable.shared.model.ActionCol52 in project drools-wb by kiegroup.
the class ActionRetractFactColumnSynchronizer method append.
@Override
public void append(final ColumnMetaData metaData) throws VetoException {
if (!handlesAppend(metaData)) {
return;
}
final ActionCol52 column = (ActionCol52) metaData.getColumn();
model.getActionCols().add(column);
synchroniseAppendColumn(column);
}
Aggregations