java-tutorials/javafx/src/main/java/com/baeldung/view/SearchController.java

100 lines
2.8 KiB
Java
Raw Normal View History

2018-04-08 23:20:59 +04:00
package com.baeldung.view;
2018-03-22 09:20:32 +04:00
2018-04-08 23:20:59 +04:00
import com.baeldung.model.Person;
2018-03-22 09:20:32 +04:00
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.concurrent.Task;
import javafx.fxml.FXML;
import javafx.scene.Node;
2018-03-27 10:11:05 +04:00
import javafx.scene.control.*;
2018-03-22 09:20:32 +04:00
import javafx.scene.input.KeyCode;
import javafx.scene.layout.VBox;
2018-03-27 10:11:05 +04:00
import java.util.stream.Collectors;
2018-03-22 09:20:32 +04:00
public class SearchController {
2018-04-04 00:05:36 +04:00
public static final int PAGE_ITEMS_COUNT = 10;
2018-03-22 09:20:32 +04:00
@FXML
private TextField searchField;
@FXML
private Button searchButton;
@FXML
private Pagination pagination;
2018-03-27 10:11:05 +04:00
@FXML
private Label searchLabel;
2018-03-22 09:20:32 +04:00
2018-03-27 10:11:05 +04:00
private ObservableList<Person> masterData = FXCollections.observableArrayList();
2018-03-22 09:20:32 +04:00
public SearchController() {
2018-03-27 10:11:05 +04:00
masterData.add(new Person(5, "John", true));
masterData.add(new Person(7, "Albert", true));
masterData.add(new Person(11, "Monica", false));
2018-03-22 09:20:32 +04:00
}
@FXML
private void initialize() {
// search panel
searchButton.setText("Search");
searchButton.setOnAction(event -> loadData());
2018-04-04 00:05:36 +04:00
searchButton.setStyle("-fx-background-color: #457ecd; -fx-text-fill: #ffffff;");
2018-03-27 10:11:05 +04:00
2018-03-22 09:20:32 +04:00
searchField.setOnKeyPressed(event -> {
if (event.getCode().equals(KeyCode.ENTER)) {
loadData();
}
});
2018-03-27 10:11:05 +04:00
searchField.textProperty().addListener((observable, oldValue, newValue) -> {
searchLabel.setText(newValue);
});
2018-03-22 09:20:32 +04:00
pagination.setPageFactory(SearchController.this::createPage);
}
private Node createPage(Integer pageIndex) {
2018-04-04 00:05:36 +04:00
VBox dataContainer = new VBox();
2018-03-22 09:20:32 +04:00
2018-03-27 10:11:05 +04:00
TableView<Person> tableView = new TableView<>(masterData);
TableColumn id = new TableColumn("ID");
TableColumn name = new TableColumn("NAME");
TableColumn employed = new TableColumn("EMPLOYED");
tableView.getColumns().addAll(id, name, employed);
2018-04-04 00:05:36 +04:00
dataContainer.getChildren().add(tableView);
2018-03-22 09:20:32 +04:00
2018-04-04 00:05:36 +04:00
return dataContainer;
2018-03-22 09:20:32 +04:00
}
private void loadData() {
String searchText = searchField.getText();
2018-04-04 00:05:36 +04:00
Task<ObservableList<Person>> task = new Task<ObservableList<Person>>() {
2018-03-22 09:20:32 +04:00
@Override
2018-04-04 00:05:36 +04:00
protected ObservableList<Person> call() throws Exception {
2018-03-27 10:11:05 +04:00
updateMessage("Loading data");
2018-04-04 00:05:36 +04:00
return FXCollections.observableArrayList(masterData
2018-03-27 10:11:05 +04:00
.stream()
.filter(value -> value.getName().toLowerCase().contains(searchText))
2018-04-04 00:05:36 +04:00
.collect(Collectors.toList()));
2018-03-22 09:20:32 +04:00
}
};
task.setOnSucceeded(event -> {
2018-04-04 00:05:36 +04:00
masterData = task.getValue();
2018-03-22 09:20:32 +04:00
pagination.setVisible(true);
pagination.setPageCount(masterData.size() / PAGE_ITEMS_COUNT);
});
Thread th = new Thread(task);
th.setDaemon(true);
th.start();
}
}