use of org.eclipse.sirius.components.forms.description.CheckboxDescription in project sirius-components by eclipse-sirius.
the class WidgetComponent method render.
@Override
public Element render() {
VariableManager variableManager = this.props.getVariableManager();
AbstractWidgetDescription widgetDescription = this.props.getWidgetDescription();
Element element = null;
if (widgetDescription instanceof TextfieldDescription) {
TextfieldComponentProps textfieldProps = new TextfieldComponentProps(variableManager, (TextfieldDescription) widgetDescription);
element = new Element(TextfieldComponent.class, textfieldProps);
} else if (widgetDescription instanceof TextareaDescription) {
TextareaComponentProps textareaProps = new TextareaComponentProps(variableManager, (TextareaDescription) widgetDescription);
element = new Element(TextareaComponent.class, textareaProps);
} else if (widgetDescription instanceof CheckboxDescription) {
CheckboxComponentProps checkboxProps = new CheckboxComponentProps(variableManager, (CheckboxDescription) widgetDescription);
element = new Element(CheckboxComponent.class, checkboxProps);
} else if (widgetDescription instanceof SelectDescription) {
SelectComponentProps selectProps = new SelectComponentProps(variableManager, (SelectDescription) widgetDescription);
element = new Element(SelectComponent.class, selectProps);
} else if (widgetDescription instanceof MultiSelectDescription) {
MultiSelectComponentProps multiSelectProps = new MultiSelectComponentProps(variableManager, (MultiSelectDescription) widgetDescription);
element = new Element(MultiSelectComponent.class, multiSelectProps);
} else if (widgetDescription instanceof RadioDescription) {
RadioComponentProps radioProps = new RadioComponentProps(variableManager, (RadioDescription) widgetDescription);
element = new Element(RadioComponent.class, radioProps);
} else if (widgetDescription instanceof ListDescription) {
ListComponentProps listProps = new ListComponentProps(variableManager, (ListDescription) widgetDescription);
element = new Element(ListComponent.class, listProps);
} else if (widgetDescription instanceof LinkDescription) {
LinkComponentProps linkProps = new LinkComponentProps(variableManager, (LinkDescription) widgetDescription);
element = new Element(LinkComponent.class, linkProps);
} else {
// $NON-NLS-1$
String pattern = "Unsupported widget description: {}";
this.logger.warn(pattern, widgetDescription.getClass().getSimpleName());
}
return element;
}
use of org.eclipse.sirius.components.forms.description.CheckboxDescription in project sirius-components by eclipse-sirius.
the class WidgetDescriptionConverter method convertCheckbox.
private CheckboxDescription convertCheckbox(org.eclipse.sirius.properties.CheckboxDescription checkboxDescription) {
StringValueProvider labelProvider = new StringValueProvider(this.interpreter, checkboxDescription.getLabelExpression());
BiFunction<VariableManager, Boolean, IStatus> newValueHandler = (variableManager, newValue) -> {
Map<String, Object> variables = variableManager.getVariables();
variables.put(NEW_VALUE, newValue);
InitialOperation initialOperation = checkboxDescription.getInitialOperation();
ModelOperation modelOperation = initialOperation.getFirstModelOperations();
var modelOperationHandlerSwitch = this.modelOperationHandlerSwitchProvider.getModelOperationHandlerSwitch(this.interpreter);
Optional<IModelOperationHandler> optionalModelOperationHandler = modelOperationHandlerSwitch.apply(modelOperation);
return optionalModelOperationHandler.map(handler -> {
return handler.handle(variables);
}).orElse(// $NON-NLS-1$
new Failure(""));
};
// $NON-NLS-1$
String valueExpression = Optional.ofNullable(checkboxDescription.getValueExpression()).orElse("");
Function<VariableManager, Boolean> valueProvider = new BooleanValueProvider(this.interpreter, valueExpression);
// @formatter:off
return CheckboxDescription.newCheckboxDescription(this.identifierProvider.getIdentifier(checkboxDescription)).idProvider(new WidgetIdProvider()).labelProvider(labelProvider).valueProvider(valueProvider).newValueHandler(newValueHandler).diagnosticsProvider((variableManager) -> List.of()).kindProvider(// $NON-NLS-1$
(object) -> "").messageProvider(// $NON-NLS-1$
(object) -> "").build();
// @formatter:on
}
use of org.eclipse.sirius.components.forms.description.CheckboxDescription in project sirius-components by eclipse-sirius.
the class CheckboxComponent method render.
@Override
public Element render() {
VariableManager variableManager = this.props.getVariableManager();
CheckboxDescription checkboxDescription = this.props.getCheckboxDescription();
String id = checkboxDescription.getIdProvider().apply(variableManager);
String label = checkboxDescription.getLabelProvider().apply(variableManager);
Boolean value = checkboxDescription.getValueProvider().apply(variableManager);
BiFunction<VariableManager, Boolean, IStatus> genericHandler = checkboxDescription.getNewValueHandler();
Function<Boolean, IStatus> specializedHandler = newValue -> genericHandler.apply(variableManager, newValue);
List<Element> children = List.of(new Element(DiagnosticComponent.class, new DiagnosticComponentProps(checkboxDescription, variableManager)));
// @formatter:off
CheckboxElementProps checkboxElementProps = CheckboxElementProps.newCheckboxElementProps(id).label(label).value(value.booleanValue()).newValueHandler(specializedHandler).children(children).build();
return new Element(CheckboxElementProps.TYPE, checkboxElementProps);
// @formatter:on
}
use of org.eclipse.sirius.components.forms.description.CheckboxDescription in project sirius-components by eclipse-sirius.
the class NodeStylePropertiesConfigurer method createCheckbox.
private CheckboxDescription createCheckbox(String id, String title, Function<Object, Boolean> reader, BiConsumer<Object, Boolean> writer, Object feature) {
Function<VariableManager, Boolean> valueProvider = variableManager -> variableManager.get(VariableManager.SELF, Object.class).map(reader).orElse(Boolean.FALSE);
BiFunction<VariableManager, Boolean, IStatus> newValueHandler = (variableManager, newValue) -> {
var optionalDiagramMapping = variableManager.get(VariableManager.SELF, Object.class);
if (optionalDiagramMapping.isPresent()) {
writer.accept(optionalDiagramMapping.get(), newValue);
return new Success();
} else {
// $NON-NLS-1$
return new Failure("");
}
};
// @formatter:off
return CheckboxDescription.newCheckboxDescription(id).idProvider(variableManager -> id).labelProvider(variableManager -> title).valueProvider(valueProvider).newValueHandler(newValueHandler).diagnosticsProvider(this.getDiagnosticsProvider(feature)).kindProvider(this::kindProvider).messageProvider(this::messageProvider).build();
// @formatter:on
}
Aggregations