Quick Select Support for the GroupCreationTab #77
@ -11,17 +11,18 @@ import envoy.client.util.IconUtil;
|
||||
import envoy.data.User;
|
||||
|
||||
/**
|
||||
* Displays a user as a quickSelectControl which is used in the quickSelectList.
|
||||
* Displays an {@link User} as a quickSelectControl which is used in the
|
||||
mpk marked this conversation as resolved
Outdated
|
||||
* quickSelectList.
|
||||
*
|
||||
* @author Maximilian Käfer
|
||||
* @since Envoy Client v0.3-beta
|
||||
*/
|
||||
public class QuickSelectControl extends VBox {
|
||||
|
||||
mpk marked this conversation as resolved
Outdated
kske
commented
Please make this Please make this `private`.
|
||||
User user;
|
||||
private User user;
|
||||
|
||||
/**
|
||||
mpk marked this conversation as resolved
Outdated
delvh
commented
As I've already been conditioned by a certain member of the Envoy team (the coffee machine guy) to not use It might be beneficial to create a convention for such cases from here on. As I've already been conditioned by a certain member of the Envoy team (the coffee machine guy) to not use `@link` in constructors for the own component, I've since swapped to using `@code`, so maybe you should too.
It might be beneficial to create a convention for such cases from here on.
|
||||
* Creates an instance of the {@link QuickSelectControl}.
|
||||
* Creates an instance of the {@code QuickSelectControl}.
|
||||
*
|
||||
* @param user the user whose data is used to create this instance.
|
||||
* @param tab the parent tab ({@link GroupCreationTab}).
|
||||
@ -49,7 +50,6 @@ public class QuickSelectControl extends VBox {
|
||||
clip.setArcHeight(32);
|
||||
clip.setArcWidth(32);
|
||||
contactProfilePic.setClip(clip);
|
||||
mpk marked this conversation as resolved
delvh
commented
This is, as far as I can see, unnecessary. This is, as far as I can see, unnecessary.
Have tested it, it is.
|
||||
setAlignment(Pos.TOP_CENTER);
|
||||
picHold.getChildren().add(contactProfilePic);
|
||||
stackPane.getChildren().add(picHold);
|
||||
|
||||
@ -59,7 +59,7 @@ public class QuickSelectControl extends VBox {
|
||||
hBox.setMinHeight(12);
|
||||
var region = new Region();
|
||||
hBox.getChildren().add(region);
|
||||
hBox.setHgrow(region, Priority.ALWAYS);
|
||||
HBox.setHgrow(region, Priority.ALWAYS);
|
||||
mpk marked this conversation as resolved
Outdated
delvh
commented
This line should be
( This line should be
```
HBox.setHgrow(region, Priority.ALWAYS);
```
(`setHgrow` is a static method)
|
||||
|
||||
var removeBtn = new Button();
|
||||
removeBtn.setPrefSize(12, 12);
|
||||
@ -85,7 +85,7 @@ public class QuickSelectControl extends VBox {
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the user whose data is used in this instance.
|
||||
* @return the user whose data is used in this instance
|
||||
mpk marked this conversation as resolved
Outdated
kske
commented
The dot at the end is unnecessary. The dot at the end is unnecessary.
|
||||
* @since Envoy Client v0.3-beta
|
||||
*/
|
||||
public User getUser() { return user; }
|
||||
|
@ -7,6 +7,7 @@ import java.util.stream.Collectors;
|
||||
import javafx.application.Platform;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.*;
|
||||
import javafx.scene.input.MouseEvent;
|
||||
import javafx.scene.layout.HBox;
|
||||
|
||||
import envoy.client.data.*;
|
||||
@ -82,6 +83,7 @@ public class GroupCreationTab implements EventListener {
|
||||
.map(User.class::cast)
|
||||
.collect(Collectors.toList()));
|
||||
resizeQuickSelectSpace(0);
|
||||
quickSelectList.addEventFilter(MouseEvent.MOUSE_PRESSED, evt -> evt.consume());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -91,11 +93,13 @@ public class GroupCreationTab implements EventListener {
|
||||
*/
|
||||
@FXML
|
||||
delvh marked this conversation as resolved
Outdated
delvh
commented
Isn't that the wrong check here? Shouldn't it be
Isn't that the wrong check here? Shouldn't it be
```
setDisable(quickSelectList.getItems().isEmpty() && userList.getSelectionModel().isEmpty() || ...);
```
mpk
commented
Yes there was an issue but it was not the one you suggested. Yes there was an issue but it was not the one you suggested.
|
||||
private void userListClicked() {
|
||||
mpk marked this conversation as resolved
Outdated
delvh
commented
You need to insert a null check for You need to insert a null check for `userList.getSelectionModel().getSelectedItem()` as it can also happen that no element has been selected. This is especially the case if you click on the userList after every user has been removed from it.
|
||||
createButton.setDisable(userList.getSelectionModel().isEmpty() || groupNameField.getText().isBlank());
|
||||
quickSelectList.getItems().add(new QuickSelectControl(userList.getSelectionModel().getSelectedItem(), this));
|
||||
resizeQuickSelectSpace(60);
|
||||
userList.getItems().remove(userList.getSelectionModel().getSelectedItem());
|
||||
userList.getSelectionModel().clearSelection();
|
||||
if (userList.getSelectionModel().getSelectedItem() != null) {
|
||||
quickSelectList.getItems().add(new QuickSelectControl(userList.getSelectionModel().getSelectedItem(), this));
|
||||
createButton.setDisable(quickSelectList.getItems().isEmpty() || groupNameField.getText().isBlank());
|
||||
resizeQuickSelectSpace(60);
|
||||
userList.getItems().remove(userList.getSelectionModel().getSelectedItem());
|
||||
userList.getSelectionModel().clearSelection();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -105,7 +109,7 @@ public class GroupCreationTab implements EventListener {
|
||||
* @since Envoy Client v0.1-beta
|
||||
*/
|
||||
@FXML
|
||||
private void textUpdated() { createButton.setDisable(quickSelectList.getItems().size() == 0 || groupNameField.getText().isBlank()); }
|
||||
private void textUpdated() { createButton.setDisable(quickSelectList.getItems().isEmpty() || groupNameField.getText().isBlank()); }
|
||||
|
||||
/**
|
||||
* Sends a {@link GroupCreation} to the server and closes this scene.
|
||||
@ -173,7 +177,7 @@ public class GroupCreationTab implements EventListener {
|
||||
public void removeFromQuickSelection(QuickSelectControl element) {
|
||||
quickSelectList.getItems().remove(element);
|
||||
userList.getItems().add(element.getUser());
|
||||
if (quickSelectList.getItems().size() == 0) {
|
||||
if (quickSelectList.getItems().isEmpty()) {
|
||||
resizeQuickSelectSpace(0);
|
||||
createButton.setDisable(true);
|
||||
mpk marked this conversation as resolved
Outdated
delvh
commented
You really do like it if no one except you can ever resize components, right? You really do like it if no one except you can ever resize components, right?
mpk
commented
I have absolutely no clue what you mean but as I see it this is just a usefull little method. I have absolutely no clue what you mean but as I see it this is just a usefull little method.
|
||||
}
|
||||
|
We don't use camelCase is Javadoc.