net.officefloor.eclipse.section.ExternalFlowItem Maven / Gradle / Ivy
/*
* OfficeFloor - http://www.officefloor.net
* Copyright (C) 2005-2018 Daniel Sagenschneider
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package net.officefloor.eclipse.section;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import net.officefloor.eclipse.configurer.ValueValidator;
import net.officefloor.eclipse.editor.AdaptedChildVisualFactoryContext;
import net.officefloor.eclipse.editor.DefaultConnectors;
import net.officefloor.eclipse.ide.editor.AbstractConfigurableItem;
import net.officefloor.model.section.ExternalFlowModel;
import net.officefloor.model.section.ExternalFlowModel.ExternalFlowEvent;
import net.officefloor.model.section.FunctionEscalationToExternalFlowModel;
import net.officefloor.model.section.FunctionFlowToExternalFlowModel;
import net.officefloor.model.section.FunctionToNextExternalFlowModel;
import net.officefloor.model.section.SectionChanges;
import net.officefloor.model.section.SectionModel;
import net.officefloor.model.section.SectionModel.SectionEvent;
import net.officefloor.model.section.SubSectionOutputToExternalFlowModel;
/**
* Configuration for {@link ExternalFlowModel}.
*
* @author Daniel Sagenschneider
*/
public class ExternalFlowItem extends
AbstractConfigurableItem {
/**
* Test configuration.
*
* @param args
* Command line arguments.
*/
public static void main(String[] args) {
SectionEditor.launchConfigurer(new ExternalFlowItem(), (flow) -> flow.setArgumentType(String.class.getName()));
}
/**
* Name.
*/
private String name;
/**
* Argument type.
*/
private String argumentType;
/*
* ================= AbstractParentConfigurableItem ============
*/
@Override
public ExternalFlowModel prototype() {
return new ExternalFlowModel("External Flow", null);
}
@Override
public IdeExtractor extract() {
return new IdeExtractor((parent) -> parent.getExternalFlows(), SectionEvent.ADD_EXTERNAL_FLOW,
SectionEvent.REMOVE_EXTERNAL_FLOW);
}
@Override
public void loadToParent(SectionModel parentModel, ExternalFlowModel itemModel) {
parentModel.addExternalFlow(itemModel);
}
@Override
public Pane visual(ExternalFlowModel model, AdaptedChildVisualFactoryContext context) {
HBox container = new HBox();
context.addNode(container,
context.connector(DefaultConnectors.FLOW, FunctionToNextExternalFlowModel.class,
FunctionFlowToExternalFlowModel.class, FunctionEscalationToExternalFlowModel.class,
SubSectionOutputToExternalFlowModel.class).getNode());
context.label(container);
return container;
}
@Override
public IdeLabeller label() {
return new IdeLabeller((model) -> model.getExternalFlowName(), ExternalFlowEvent.CHANGE_EXTERNAL_FLOW_NAME);
}
@Override
public String style() {
return new IdeStyle().rule("-fx-background-color", "orchid").toString();
}
@Override
protected ExternalFlowItem item(ExternalFlowModel model) {
ExternalFlowItem item = new ExternalFlowItem();
if (model != null) {
item.name = model.getExternalFlowName();
item.argumentType = model.getArgumentType();
}
return item;
}
@Override
public IdeConfigurer configure() {
return new IdeConfigurer().addAndRefactor((builder, context) -> {
builder.title("External Flow");
builder.text("Name").init((model) -> model.name).setValue((model, value) -> model.name = value)
.validate(ValueValidator.notEmptyString("Must specify name"));
builder.clazz("Argument").init((model) -> model.argumentType)
.setValue((model, value) -> model.argumentType = value);
}).add((builder, context) -> {
builder.apply("Add",
(item) -> context.execute(context.getOperations().addExternalFlow(item.name, item.argumentType)));
}).refactor((builder, context) -> {
builder.apply("Refactor", (item) -> {
// TODO implement refactor of external flow
throw new UnsupportedOperationException("TODO renameExternalFlow to be refactorExternalFlow");
});
}).delete((context) -> {
context.execute(context.getOperations().removeExternalFlow(context.getModel()));
});
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy