use of com.vaadin.flow.data.binder.Binder in project karnak by OsiriX-Foundation.
the class TextFieldsBindSwitchingAlbum method buildBinder.
private Binder<KheopsAlbumsEntity> buildBinder() {
Binder<KheopsAlbumsEntity> b = new BeanValidationBinder<>(KheopsAlbumsEntity.class);
b.forField(textAuthorizationDestination).withValidator(StringUtils::isNotBlank, "Token destination is mandatory").withValidator(value -> {
if (!textUrlAPI.getValue().isBlank()) {
return validateToken(value, textUrlAPI.getValue(), SwitchingAlbum.MIN_SCOPE_DESTINATION);
}
return true;
}, "Token can't be validate, minimum permissions: [write]").bind(KheopsAlbumsEntity::getAuthorizationDestination, KheopsAlbumsEntity::setAuthorizationDestination);
b.forField(textAuthorizationSource).withValidator(StringUtils::isNotBlank, "Token source is mandatory").withValidator(value -> {
if (!textUrlAPI.getValue().isBlank()) {
return validateToken(value, textUrlAPI.getValue(), SwitchingAlbum.MIN_SCOPE_SOURCE);
}
return true;
}, "Token can't be validate, minimum permissions: [read, send]").bind(KheopsAlbumsEntity::getAuthorizationSource, KheopsAlbumsEntity::setAuthorizationSource);
b.forField(textUrlAPI).withValidator(StringUtils::isNotBlank, "Url API is mandatory").bind(KheopsAlbumsEntity::getUrlAPI, KheopsAlbumsEntity::setUrlAPI);
b.forField(textCondition).withValidator(value -> {
if (!textCondition.getValue().equals("")) {
expressionError = ExpressionResult.isValid(textCondition.getValue(), new ExprCondition(), Boolean.class);
textErrorConditionMsg.setText(expressionError.getMsg());
return expressionError.isValid();
}
textErrorConditionMsg.setText("");
return true;
}, "Condition is not valid").bind(KheopsAlbumsEntity::getCondition, KheopsAlbumsEntity::setCondition);
return b;
}
use of com.vaadin.flow.data.binder.Binder in project karnak by OsiriX-Foundation.
the class DestinationCondition method setBinder.
private void setBinder(Binder<DestinationEntity> binder) {
binder.forField(condition).withValidator(value -> {
if (!condition.getValue().equals("")) {
ExpressionError expressionError = ExpressionResult.isValid(condition.getValue(), new ExprCondition(), Boolean.class);
textErrorConditionMsg.setText(expressionError.getMsg());
return expressionError.isValid();
}
return true;
}, "Condition not valid").withValidationStatusHandler(status -> {
if (!status.isError()) {
textErrorConditionMsg.setText("");
}
}).bind(DestinationEntity::getCondition, DestinationEntity::setCondition);
}
use of com.vaadin.flow.data.binder.Binder in project flow-components by vaadin.
the class Helper method createPersonEditor.
static CrudEditor<Person> createPersonEditor() {
TextField firstName = new TextField("First name");
firstName.getElement().setAttribute("editor-role", "first-name");
TextField lastName = new TextField("Last name");
lastName.getElement().setAttribute("editor-role", "last-name");
FormLayout form = new FormLayout(firstName, lastName);
Binder<Person> binder = new Binder<>(Person.class);
binder.forField(firstName).asRequired().bind(Person::getFirstName, Person::setFirstName);
binder.forField(lastName).withValidator(value -> value != null && value.startsWith("O"), "Only last names starting with 'O' allowed").bind(Person::getLastName, Person::setLastName);
return new BinderCrudEditor<>(binder, form);
}
use of com.vaadin.flow.data.binder.Binder in project flow-components by vaadin.
the class GridViewEditorPage method createBufferedEditor.
private void createBufferedEditor() {
Div message = new Div();
message.setId("buffered-editor-msg");
Grid<Person> grid = new Grid<>();
List<Person> persons = getItems();
grid.setItems(persons);
Column<Person> nameColumn = grid.addColumn(Person::getFirstName).setHeader("Name");
Column<Person> subscriberColumn = grid.addColumn(Person::isSubscriber).setHeader("Subscriber");
Binder<Person> binder = new Binder<>(Person.class);
Editor<Person> editor = grid.getEditor();
editor.setBinder(binder);
editor.setBuffered(true);
Div validationStatus = new Div();
validationStatus.setId("validation");
TextField field = new TextField();
binder.forField(field).withValidator(name -> name.startsWith("Person"), "Name should start with Person").withStatusLabel(validationStatus).bind("firstName");
nameColumn.setEditorComponent(field);
Checkbox checkbox = new Checkbox();
binder.bind(checkbox, "subscriber");
subscriberColumn.setEditorComponent(checkbox);
Collection<Button> editButtons = Collections.newSetFromMap(new WeakHashMap<>());
Column<Person> editorColumn = grid.addComponentColumn(person -> {
Button edit = new Button("Edit");
edit.addClassName("edit");
edit.addClickListener(e -> {
editor.editItem(person);
field.focus();
});
edit.setEnabled(!editor.isOpen());
editButtons.add(edit);
return edit;
});
editor.addOpenListener(e -> editButtons.stream().forEach(button -> button.setEnabled(!editor.isOpen())));
editor.addCloseListener(e -> editButtons.stream().forEach(button -> button.setEnabled(!editor.isOpen())));
Button save = new Button("Save", e -> editor.save());
save.addClassName("save");
Button cancel = new Button("Cancel", e -> editor.cancel());
cancel.addClassName("cancel");
// Add a keypress listener that listens for an escape key up event.
// Note! some browsers return key as Escape and some as Esc
grid.getElement().addEventListener("keyup", event -> editor.cancel()).setFilter("event.key === 'Escape' || event.key === 'Esc'");
Div buttons = new Div(save, cancel);
editorColumn.setEditorComponent(buttons);
editor.addSaveListener(event -> message.setText(event.getItem().getFirstName() + ", " + event.getItem().isSubscriber()));
grid.setId("buffered-editor");
addCard("Grid Editor", "Editor in Buffered Mode", message, validationStatus, grid);
}
use of com.vaadin.flow.data.binder.Binder in project flow-components by vaadin.
the class GridViewEditorPage method createNotBufferedDynamicEditor.
private void createNotBufferedDynamicEditor() {
Div message = new Div();
message.setId("not-buffered-dynamic-editor-msg");
Grid<Person> grid = new Grid<>();
List<Person> persons = new ArrayList<>();
persons.addAll(createItems());
grid.setItems(persons);
Column<Person> nameColumn = grid.addColumn(Person::getFirstName).setHeader("Name");
Column<Person> subscriberColumn = grid.addColumn(Person::isSubscriber).setHeader("Subscriber");
Column<Person> emailColumn = grid.addColumn(Person::getEmail).setHeader("E-mail");
Binder<Person> binder = new Binder<>(Person.class);
Editor<Person> editor = grid.getEditor();
editor.setBinder(binder);
TextField field = new TextField();
// Close the editor in case of backward navigation between components
field.getElement().addEventListener("keydown", event -> grid.getEditor().closeEditor()).setFilter("event.key === 'Tab' && event.shiftKey");
binder.bind(field, "firstName");
nameColumn.setEditorComponent(field);
Checkbox checkbox = new Checkbox();
binder.bind(checkbox, "subscriber");
subscriberColumn.setEditorComponent(checkbox);
// Close the editor in case of forward navigation between components
checkbox.getElement().addEventListener("keydown", event -> {
if (!checkbox.getValue()) {
grid.getEditor().closeEditor();
}
}).setFilter("event.key === 'Tab' && !event.shiftKey");
TextField emailField = new TextField();
emailColumn.setEditorComponent(item -> {
if (item.isSubscriber()) {
binder.bind(emailField, "email");
return emailField;
} else {
return null;
}
});
// Close the editor in case of forward navigation between components
emailField.getElement().addEventListener("keydown", event -> grid.getEditor().closeEditor()).setFilter("event.key === 'Tab' && !event.shiftKey");
grid.addItemDoubleClickListener(event -> {
grid.getEditor().editItem(event.getItem());
field.focus();
});
// Re-validates the editors every time something changes on the Binder.
// This is needed for the email column to turn into nothing when the
// checkbox is deselected, for example.
binder.addValueChangeListener(event -> {
// Only updates from the client-side should be taken into account
if (event.isFromClient()) {
grid.getEditor().refresh();
}
});
grid.addItemClickListener(event -> {
if (binder.getBean() != null) {
message.setText(binder.getBean().getFirstName() + ", " + binder.getBean().isSubscriber() + ", " + binder.getBean().getEmail());
}
});
grid.setId("not-buffered-dynamic-editor");
addCard("Grid Editor", "Dynamic Editor in Not Buffered Mode", message, grid);
}
Aggregations