use of com.haulmont.cuba.gui.components.data.meta.EntityOptions in project cuba by cuba-platform.
the class LookupBuilderProcessor method handleSelectionWithField.
@SuppressWarnings("unchecked")
protected <E extends Entity> void handleSelectionWithField(@SuppressWarnings("unused") LookupBuilder<E> builder, HasValue<E> field, Collection<E> itemsFromLookup) {
if (itemsFromLookup.isEmpty()) {
return;
}
Collection<E> selectedItems = transform(itemsFromLookup, builder);
Entity newValue = selectedItems.iterator().next();
View viewForField = clientConfig.getReloadUnfetchedAttributesFromLookupScreens() && metadataTools.isPersistent(newValue.getClass()) ? getViewForField(field) : null;
if (viewForField != null && !entityStates.isLoadedWithView(newValue, viewForField)) {
newValue = dataManager.reload(newValue, viewForField);
}
if (field instanceof LookupPickerField) {
LookupPickerField lookupPickerField = (LookupPickerField) field;
Options options = lookupPickerField.getOptions();
if (options instanceof EntityOptions) {
EntityOptions entityOptions = (EntityOptions) options;
if (entityOptions.containsItem(newValue)) {
entityOptions.updateItem(newValue);
}
if (lookupPickerField.isRefreshOptionsOnLookupClose()) {
entityOptions.refresh();
}
}
}
// In case of PickerField set the value as if the user had set it
if (field instanceof SupportsUserAction) {
((SupportsUserAction<E>) field).setValueFromUser((E) newValue);
} else {
field.setValue((E) newValue);
}
}
use of com.haulmont.cuba.gui.components.data.meta.EntityOptions in project cuba by cuba-platform.
the class EditorBuilderProcessor method buildEditor.
@SuppressWarnings("unchecked")
public <E extends Entity, S extends Screen> S buildEditor(EditorBuilder<E> builder) {
FrameOwner origin = builder.getOrigin();
Screens screens = getScreenContext(origin).getScreens();
ListComponent<E> listComponent = builder.getListComponent();
CollectionContainer<E> container = builder.getContainer();
if (container == null && listComponent != null) {
DataUnit items = listComponent.getItems();
container = items instanceof ContainerDataUnit ? ((ContainerDataUnit) items).getContainer() : null;
}
E entity = initEntity(builder, container);
if (builder.getMode() == EditMode.EDIT && entity == null) {
throw new IllegalStateException(String.format("Editor of %s cannot be open with mode EDIT, entity is not set", builder.getEntityClass()));
}
Screen screen = createScreen(builder, screens, entity);
EditorScreen<E> editorScreen = (EditorScreen<E>) screen;
editorScreen.setEntityToEdit(entity);
DataContext parentDataContext = setupParentDataContext(origin, screen, container, builder.getParentDataContext());
if (container != null) {
CollectionContainer<E> ct = container;
screen.addAfterCloseListener(event -> {
CloseAction closeAction = event.getCloseAction();
if (isCommitCloseAction(closeAction)) {
E entityFromEditor = getCommittedEntity(editorScreen, parentDataContext);
E reloadedEntity = reloadIfNeeded(entityFromEditor, ct, builder);
E committedEntity = transform(reloadedEntity, builder);
E mergedEntity = merge(committedEntity, origin, parentDataContext);
if (builder.getMode() == EditMode.CREATE) {
boolean addsFirst;
if (!(ct instanceof Nested)) {
addsFirst = clientConfig.getCreateActionAddsFirst();
if (builder.getAddFirst() != null) {
addsFirst = builder.getAddFirst();
}
} else {
addsFirst = false;
}
if (ct instanceof Nested || !addsFirst) {
ct.getMutableItems().add(mergedEntity);
} else {
ct.getMutableItems().add(0, mergedEntity);
}
} else {
ct.replaceItem(mergedEntity);
}
}
if (listComponent instanceof com.haulmont.cuba.gui.components.Component.Focusable) {
((com.haulmont.cuba.gui.components.Component.Focusable) listComponent).focus();
}
});
}
HasValue<E> field = builder.getField();
if (field != null) {
if (parentDataContext == null && field instanceof HasValueSource) {
ValueSource fieldValueSource = ((HasValueSource) field).getValueSource();
if (fieldValueSource instanceof EntityValueSource) {
if (isCompositionProperty((EntityValueSource) fieldValueSource)) {
DataContext thisDataContext = UiControllerUtils.getScreenData(origin).getDataContext();
DataContext dataContext = UiControllerUtils.getScreenData(screen).getDataContext();
checkDataContext(screen, dataContext);
dataContext.setParent(thisDataContext);
}
}
}
screen.addAfterCloseListener(event -> {
CloseAction closeAction = event.getCloseAction();
if (isCommitCloseAction(closeAction)) {
E entityFromEditor = editorScreen.getEditedEntity();
E editedEntity = transform(entityFromEditor, builder);
if (field instanceof LookupPickerField) {
LookupPickerField lookupPickerField = ((LookupPickerField) field);
Options options = lookupPickerField.getOptions();
if (options instanceof EntityOptions) {
EntityOptions entityOptions = (EntityOptions) options;
if (entityOptions.containsItem(editedEntity)) {
entityOptions.updateItem(editedEntity);
}
}
}
if (field instanceof SupportsUserAction) {
((SupportsUserAction) field).setValueFromUser(editedEntity);
} else {
field.setValue(editedEntity);
}
}
if (field instanceof com.haulmont.cuba.gui.components.Component.Focusable) {
((com.haulmont.cuba.gui.components.Component.Focusable) field).focus();
}
});
}
if (builder instanceof EditorClassBuilder) {
@SuppressWarnings("unchecked") Consumer<AfterScreenCloseEvent> closeListener = ((EditorClassBuilder) builder).getCloseListener();
if (closeListener != null) {
screen.addAfterCloseListener(new AfterCloseListenerAdapter(closeListener));
}
}
return (S) screen;
}
use of com.haulmont.cuba.gui.components.data.meta.EntityOptions in project cuba by cuba-platform.
the class WebSearchPickerField method setOptions.
@Override
public void setOptions(Options<V> options) {
if (this.optionsBinding != null) {
this.optionsBinding.unbind();
this.optionsBinding = null;
}
if (options != null) {
OptionsBinder optionsBinder = beanLocator.get(OptionsBinder.NAME);
this.optionsBinding = optionsBinder.bind(options, this, this::setItemsToPresentation);
this.optionsBinding.activate();
if (getMetaClass() == null && options instanceof EntityOptions) {
setMetaClass(((EntityOptions<V>) options).getEntityMetaClass());
}
}
}
use of com.haulmont.cuba.gui.components.data.meta.EntityOptions in project cuba by cuba-platform.
the class WebLookupPickerField method setOptions.
@Override
public void setOptions(Options<V> options) {
if (this.optionsBinding != null) {
this.optionsBinding.unbind();
this.optionsBinding = null;
}
if (options != null) {
OptionsBinder optionsBinder = beanLocator.get(OptionsBinder.NAME);
this.optionsBinding = optionsBinder.bind(options, this, this::setItemsToPresentation);
this.optionsBinding.activate();
if (getMetaClass() == null && options instanceof EntityOptions) {
setMetaClass(((EntityOptions<V>) options).getEntityMetaClass());
}
}
}
use of com.haulmont.cuba.gui.components.data.meta.EntityOptions in project cuba by cuba-platform.
the class WebTokenList method updateMasterRefIfOptionsRefreshed.
/**
* Sets master-entity reference to the value and remove master-entity reference
* from options if they are not in nested container.
*
* @param value value items
*/
protected void updateMasterRefIfOptionsRefreshed(Collection<V> value) {
if (!isRefreshOptionsEnabled()) {
return;
}
if (!(getValueSource() instanceof ContainerValueSource)) {
return;
}
EntityOptions<V> options = (EntityOptions<V>) getOptions();
if (options == null) {
return;
}
ContainerValueSource valueSource = (ContainerValueSource) getValueSource();
MetaPropertyPath mpp = valueSource.getMetaPropertyPath();
MetaProperty inverseProperty = mpp.getMetaProperty().getInverse();
Entity masterEntity = valueSource.getItem();
if (inverseProperty == null || masterEntity == null) {
return;
}
List<V> optionItems = getOptions().getOptions().collect(Collectors.toList());
for (V option : optionItems) {
// skip all options that did not load master-reference
if (!entityStates.isLoaded(option, inverseProperty.getName())) {
continue;
}
if (value.contains(option)) {
// reset master-entity reference
option.setValue(inverseProperty.getName(), masterEntity);
} else {
Entity ref = option.getValue(inverseProperty.getName());
if (ref == null) {
continue;
}
// remove ref to the master entity if option is not in value
if (Objects.equals(ref.getId(), masterEntity.getId())) {
option.setValue(inverseProperty.getName(), null);
}
}
}
}
Aggregations