use of org.talend.sdk.component.form.model.uischema.UiSchema in project component-runtime by Talend.
the class FieldSetWidgetConverter method convert.
@Override
public CompletionStage<PropertyContext> convert(final CompletionStage<PropertyContext> cs) {
return cs.thenCompose(context -> {
final UiSchema uiSchema = newUiSchema(context);
uiSchema.setWidget("fieldset");
uiSchema.setItems(new ArrayList<>());
final List<SimplePropertyDefinition> properties = new ArrayList<>();
final UiSchemaConverter uiSchemaConverter = new UiSchemaConverter(null, family, uiSchema.getItems(), properties, client, this.properties, actions);
// Create Nested UI Items
return CompletableFuture.allOf(this.properties.stream().filter(context::isDirectChild).map(PropertyContext::new).map(CompletableFuture::completedFuture).map(uiSchemaConverter::convert).toArray(CompletableFuture[]::new)).thenApply(done -> {
addActions(context, uiSchema, properties);
return context;
});
});
}
use of org.talend.sdk.component.form.model.uischema.UiSchema in project component-runtime by Talend.
the class GridLayoutWidgetConverter method createLayout.
private CompletionStage<UiSchema> createLayout(final PropertyContext root, final String layout, final String layoutFilter) {
final UiSchema uiSchema = newOrphanSchema(root);
uiSchema.setItems(new ArrayList<>());
final Collection<SimplePropertyDefinition> visitedProperties = new ArrayList<>();
final Map<String, SimplePropertyDefinition> childProperties = properties.stream().filter(root::isDirectChild).collect(toMap(SimplePropertyDefinition::getName, identity()));
return CompletableFuture.allOf(Stream.of(layout.split("\\|")).map(line -> line.split(",")).map(line -> {
if (line.length == 1 && childProperties.containsKey(line[0])) {
return new UiSchemaConverter(layoutFilter, family, uiSchema.getItems(), visitedProperties, client, properties, actions).convert(completedFuture(new PropertyContext(childProperties.get(line[0])))).thenApply(r -> uiSchema);
} else if (line.length > 1) {
final UiSchema schema = new UiSchema();
schema.setWidget("columns");
schema.setItems(new ArrayList<>());
final UiSchemaConverter columnConverter = new UiSchemaConverter(layoutFilter, family, schema.getItems(), visitedProperties, client, properties, actions);
return CompletableFuture.allOf(Stream.of(line).map(String::trim).map(childProperties::get).filter(Objects::nonNull).map(PropertyContext::new).map(CompletableFuture::completedFuture).map(columnConverter::convert).toArray(CompletableFuture[]::new)).thenApply(r -> {
final Collection<UiSchema> items = uiSchema.getItems();
synchronized (items) {
items.add(schema);
}
return uiSchema;
});
}
return completedFuture(null);
}).toArray(CompletableFuture[]::new)).thenApply(done -> {
addActions(root, uiSchema, visitedProperties);
return uiSchema;
});
}
use of org.talend.sdk.component.form.model.uischema.UiSchema in project component-runtime by Talend.
the class MultiSelectTagWidgetConverter method convert.
@Override
public CompletionStage<PropertyContext> convert(final CompletionStage<PropertyContext> cs) {
return cs.thenCompose(context -> {
final UiSchema schema = newUiSchema(context);
schema.setWidget("multiSelectTag");
schema.setRestricted(false);
final String actionName = context.getProperty().getMetadata().get("action::dynamic_values");
if (client != null && actionName != null) {
return client.action(family, "dynamic_values", actionName, emptyMap()).exceptionally(e -> {
log.warn(e.getMessage(), e);
return emptyMap();
}).thenApply(values -> {
final List<UiSchema.NameValue> namedValues = ofNullable(values).map(v -> v.get("items")).filter(Collection.class::isInstance).map(c -> {
final Collection<?> dynamicValues = Collection.class.cast(c);
return dynamicValues.stream().filter(Map.class::isInstance).filter(m -> Map.class.cast(m).get("id") != null && Map.class.cast(m).get("id") instanceof String).map(Map.class::cast).map(entry -> {
final UiSchema.NameValue val = new UiSchema.NameValue();
val.setName((String) entry.get("id"));
val.setValue(entry.get("label") == null ? (String) entry.get("id") : (String) entry.get("label"));
return val;
}).collect(toList());
}).orElse(emptyList());
schema.setTitleMap(namedValues);
return context;
});
} else {
schema.setTitleMap(emptyList());
}
return CompletableFuture.completedFuture(context);
});
}
use of org.talend.sdk.component.form.model.uischema.UiSchema in project component-runtime by Talend.
the class ObjectArrayWidgetConverter method convert.
@Override
public CompletionStage<PropertyContext> convert(final CompletionStage<PropertyContext> cs) {
return cs.thenCompose(context -> {
final UiSchema arraySchema = newUiSchema(context);
arraySchema.setTitle(context.getProperty().getDisplayName());
arraySchema.setItems(new ArrayList<>());
arraySchema.setItemWidget("collapsibleFieldset");
final UiSchemaConverter converter = new UiSchemaConverter(gridLayoutFilter, family, arraySchema.getItems(), new ArrayList<>(), client, properties, actions);
return CompletableFuture.allOf(nestedProperties.stream().map(p -> converter.convert(CompletableFuture.completedFuture(new PropertyContext(p)))).toArray(CompletableFuture[]::new)).thenApply(r -> context);
});
}
use of org.talend.sdk.component.form.model.uischema.UiSchema in project component-runtime by Talend.
the class ObjectWidgetConverter method addActions.
protected void addActions(final PropertyContext root, final UiSchema uiSchema, final Collection<SimplePropertyDefinition> includedProperties) {
final Optional<SimplePropertyDefinition> schemaBinding = includedProperties.stream().filter(p -> "OUT".equals(p.getMetadata().get("ui::structure::type"))).findFirst();
final Collection<UiSchema> items = uiSchema.getItems();
if (schemaBinding.isPresent()) {
SimplePropertyDefinition bindingProp = schemaBinding.get();
final String schemaActionName = ofNullable(bindingProp.getMetadata().get("action::schema")).filter(n -> !n.isEmpty()).orElse("default");
actions.stream().filter(a -> a.getName().equals(schemaActionName) && "schema".equals(a.getType())).findFirst().ifPresent(ref -> {
final UiSchema.Trigger trigger = toTrigger(properties, root.getProperty(), ref);
trigger.setOptions(singletonList(new UiSchema.Option.Builder().withPath(bindingProp.getPath().replace("[]", "")).withType("array".equalsIgnoreCase(bindingProp.getType()) ? "array" : "object").build()));
if (trigger.getParameters() == null || trigger.getParameters().isEmpty()) {
// find the matching dataset
Optional<SimplePropertyDefinition> findParameters = properties.stream().filter(nested -> ref.getName().equals(nested.getMetadata().get("configurationtype::name")) && "dataset".equals(nested.getMetadata().get("configurationtype::type"))).findFirst();
if (!findParameters.isPresent()) {
// if not ambiguous grab the unique dataset
final Collection<SimplePropertyDefinition> datasets = properties.stream().filter(nested -> "dataset".equals(nested.getMetadata().get("configurationtype::type"))).collect(toSet());
if (datasets.size() == 1) {
findParameters = of(datasets.iterator().next());
}
}
findParameters.ifPresent(dataset -> {
final UiSchema.Parameter parameter = new UiSchema.Parameter();
parameter.setKey(ofNullable(ref.getProperties()).orElse(Collections.emptyList()).stream().filter(p -> !p.getPath().contains(".")).findFirst().map(SimplePropertyDefinition::getName).orElse("dataset"));
parameter.setPath(dataset.getPath());
trigger.setParameters(toParams(properties, dataset, ref, dataset.getPath()));
});
}
final UiSchema button = new UiSchema();
button.setKey("button_schema_" + root.getProperty().getPath());
button.setTitle("Guess Schema");
button.setWidget("button");
button.setTriggers(singletonList(trigger));
synchronized (items) {
items.add(button);
}
});
}
ofNullable(root.getProperty().getMetadata().get("action::healthcheck")).flatMap(v -> (actions == null ? Stream.<ActionReference>empty() : actions.stream()).filter(a -> a.getName().equals(v) && "healthcheck".equals(a.getType())).findFirst()).ifPresent(ref -> {
final UiSchema.Trigger trigger = toTrigger(properties, root.getProperty(), ref);
if (trigger.getParameters() == null || trigger.getParameters().isEmpty()) {
// find the matching dataset
properties.stream().filter(nested -> "datastore".equals(nested.getMetadata().get("configurationtype::type")) && ref.getName().equals(nested.getMetadata().get("configurationtype::name"))).findFirst().ifPresent(datastore -> trigger.setParameters(toParams(properties, datastore, ref, datastore.getPath())));
}
final UiSchema button = new UiSchema();
button.setKey("button_healthcheck_" + root.getProperty().getPath());
button.setTitle("Validate Datastore");
button.setWidget("button");
button.setTriggers(singletonList(trigger));
synchronized (items) {
items.add(button);
}
});
}
Aggregations