com.vaadin.v7.client.connectors.SingleSelectionModelConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-client Show documentation
Show all versions of vaadin-compatibility-client Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.client.connectors;
import java.util.logging.Logger;
import com.google.gwt.event.shared.HandlerRegistration;
import com.vaadin.client.ServerConnector;
import com.vaadin.client.annotations.OnStateChange;
import com.vaadin.client.data.DataSource.RowHandle;
import com.vaadin.shared.ui.Connect;
import com.vaadin.v7.client.renderers.Renderer;
import com.vaadin.v7.client.widget.grid.selection.ClickSelectHandler;
import com.vaadin.v7.client.widget.grid.selection.HasUserSelectionAllowed;
import com.vaadin.v7.client.widget.grid.selection.SelectionModel;
import com.vaadin.v7.client.widget.grid.selection.SelectionModel.Single;
import com.vaadin.v7.client.widget.grid.selection.SpaceSelectHandler;
import com.vaadin.v7.shared.ui.grid.GridState;
import com.vaadin.v7.shared.ui.grid.selection.SingleSelectionModelServerRpc;
import com.vaadin.v7.shared.ui.grid.selection.SingleSelectionModelState;
import com.vaadin.v7.ui.Grid.SingleSelectionModel;
import elemental.json.JsonObject;
/**
* Connector for server-side {@link SingleSelectionModel}.
*
* @since 7.6
* @author Vaadin Ltd
*/
@Connect(SingleSelectionModel.class)
public class SingleSelectionModelConnector extends
AbstractSelectionModelConnector> {
private SpaceSelectHandler spaceHandler;
private ClickSelectHandler clickHandler;
private Single selectionModel = createSelectionModel();
private HandlerRegistration readOnlyStateChangeHandlerRegistration;
@Override
protected void extend(ServerConnector target) {
getGrid().setSelectionModel(selectionModel);
spaceHandler = new SpaceSelectHandler(getGrid());
clickHandler = new ClickSelectHandler(getGrid());
readOnlyStateChangeHandlerRegistration = target.addStateChangeHandler(
"readOnly", e -> updateUserSelectionAllowed());
}
@Override
public SingleSelectionModelState getState() {
return (SingleSelectionModelState) super.getState();
}
@Override
public void onUnregister() {
spaceHandler.removeHandler();
clickHandler.removeHandler();
readOnlyStateChangeHandlerRegistration.removeHandler();
super.onUnregister();
}
@Override
protected Single createSelectionModel() {
return new SingleSelectionModel();
}
@OnStateChange("deselectAllowed")
void updateDeselectAllowed() {
selectionModel.setDeselectAllowed(getState().deselectAllowed);
}
@OnStateChange("userSelectionAllowed")
void updateUserSelectionAllowed() {
if (selectionModel instanceof HasUserSelectionAllowed) {
((HasUserSelectionAllowed) selectionModel)
.setUserSelectionAllowed(getState().userSelectionAllowed);
} else {
getLogger().warning("userSelectionAllowed set to "
+ getState().userSelectionAllowed
+ " but the selection model does not implement "
+ HasUserSelectionAllowed.class.getSimpleName());
}
}
private static Logger getLogger() {
return Logger.getLogger(SingleSelectionModelConnector.class.getName());
}
/**
* SingleSelectionModel without a selection column renderer.
*/
public class SingleSelectionModel extends AbstractSelectionModel
implements SelectionModel.Single,
HasUserSelectionAllowed {
private RowHandle selectedRow;
private boolean deselectAllowed;
private boolean userSelectionAllowed = true;
@Override
public Renderer getSelectionColumnRenderer() {
return null;
}
@Override
public void reset() {
super.reset();
// Clean up selected row
if (selectedRow != null) {
clearSelectedRow();
}
}
@Override
public boolean select(JsonObject row) {
boolean changed = false;
if (row == null && !isDeselectAllowed()) {
// Attempting to deselect, even though it's not allowed.
} else {
if (selectedRow != null) {
// Check if currently re-selected row was deselected from
// the server.
if (row != null && getRowHandle(row).equals(selectedRow)) {
if (selectedRow.getRow()
.hasKey(GridState.JSONKEY_SELECTED)) {
// Everything is OK, no need to do anything.
return false;
}
}
// Remove old selected row
clearSelectedRow();
changed = true;
}
if (row != null) {
// Select the new row.
setSelectedRow(row);
changed = true;
}
}
if (changed) {
getRpcProxy(SingleSelectionModelServerRpc.class)
.select(getRowKey(row));
}
return changed;
}
private void setSelectedRow(JsonObject row) {
selectedRow = getRowHandle(row);
selectedRow.pin();
selectedRow.getRow().put(GridState.JSONKEY_SELECTED, true);
selectedRow.updateRow();
}
private void clearSelectedRow() {
selectedRow.getRow().remove(GridState.JSONKEY_SELECTED);
selectedRow.updateRow();
selectedRow.unpin();
selectedRow = null;
}
@Override
public boolean deselect(JsonObject row) {
if (isSelected(row)) {
// If no selection has happened client side, then selectedRow is
// null but must be set so that a deselection event with the
// correct key can be sent to the server
selectedRow = getRowHandle(row);
selectedRow.pin();
return select(null);
}
return false;
}
@Override
public JsonObject getSelectedRow() {
throw new UnsupportedOperationException(
"This client-side selection model "
+ getClass().getSimpleName()
+ " does not know selected row.");
}
@Override
public void setDeselectAllowed(boolean deselectAllowed) {
this.deselectAllowed = deselectAllowed;
}
@Override
public boolean isDeselectAllowed() {
return deselectAllowed;
}
@Override
public boolean isUserSelectionAllowed() {
return userSelectionAllowed;
}
@Override
public void setUserSelectionAllowed(boolean userSelectionAllowed) {
this.userSelectionAllowed = userSelectionAllowed
&& !getParent().isReadOnly();
}
}
}