所以这是一个基本问题 我想要实现的是从另一个视图刷新视图。
假设我有一个EmployeeTableView视图,它通过执行REST API调用显示员工的表格表示。
在另一个视图中,我有一个过滤器EmployeeFilterView,其中我有性别,工资范围,员工类型等
我还有一个userContext对象,我在其中存储用户首选项。所以默认情况下我可以说我已将性别过滤器的值存储为男性,工资范围为ALL等。此对象作为参数发送到EmployeeTableView。
当加载EmployeeTableView时,我使用userContext值进行restAPI调用以获取员工详细信息。所以这很好。现在我将性别过滤器更改为“女性”,并在我的userContext中指定此值 现在,如果我可以使用userContext对象重新加载EmployeeTableView,则restapi调用将获得更新的值。
但我怎么能这样做呢? 如果有的话,还建议一个更好的方法。
答案 0 :(得分:3)
EventBus是一个有效的解决方案。另一种方法是使用ViewModel或Controller作为UserContext对象,让它包含实际的可观察员工列表,然后将该列表绑定到TableView
中的EmployeeTableView
。每当更新上下文中的列表时,TableView也会更新。
过滤器视图将调用UserContext中的函数来执行实际的REST调用,并根据该调用更新员工列表。
您可以创建一个单独的EmployeeQuery对象,该对象可以注入EmployeeFilterView
和UserContext
,以便它可以提取选定的过滤器值来执行查询。此查询对象包含要传递给服务器的所有搜索参数的列表。
如果对您的体系结构有意义,您还可以考虑创建一个单独的范围来保持这些组件分离。
你究竟如何定义这些组件主要是品味问题,这里有一个建议。我使用来自ControlsFX的RangeSlider
作为模拟搜索UI。
为了更容易想象这是如何联系在一起的,这是一个截图:
(所有名字和工资都是虚构的:)
/**
* The employee domain model, implementing JsonModel so it can be fetched
* via the REST API
*/
class Employee : JsonModel {
val nameProperty = SimpleStringProperty()
var name by nameProperty
val salaryProperty = SimpleIntegerProperty()
var salary by salaryProperty
val genderProperty = SimpleObjectProperty<Gender>()
var gender by genderProperty
override fun updateModel(json: JsonObject) {
with (json) {
name = getString("name")
salary = getInt("salary")
gender = Gender.valueOf(getString("gender"))
}
}
}
enum class Gender { Male, Female }
/**
* Container for the list of employees as well as a search function called by the filter
* view whenever it should update the employee list.
*/
class EmployeeContext : Controller() {
val api: Rest by inject()
val query: EmployeeQuery by inject()
val employees = SimpleListProperty<Employee>()
fun search() {
runAsync {
FXCollections.observableArrayList(Employee().apply {
name = "Edvin Syse"
gender = Gender.Male
salary = 200_000
})
//api.post("employees/query", query).list().toModel<Employee>()
} ui {
employees.value = it
}
}
}
/**
* Query object used to define the query sent to the server
*/
class EmployeeQuery : ViewModel(), JsonModel {
val genderProperty = SimpleObjectProperty<Gender>(Gender.Female)
var gender by genderProperty
val salaryMinProperty = SimpleIntegerProperty(50_000)
var salaryMin by salaryMinProperty
val salaryMaxProperty = SimpleIntegerProperty(250_000)
var salaryMax by salaryMaxProperty
val salaryDescription = stringBinding(salaryMinProperty, salaryMaxProperty) {
"$$salaryMin - $$salaryMax"
}
override fun toJSON(json: JsonBuilder) {
with(json) {
add("gender", gender.toString())
add("salaryMin", salaryMin)
add("salaryMax", salaryMax)
}
}
}
/**
* The search/filter UI
*/
class EmployeeFilterView : View() {
val query: EmployeeQuery by inject()
val context: EmployeeContext by inject()
override val root = form {
fieldset("Employee Filter") {
field("Gender") {
combobox(query.genderProperty, Gender.values().toList())
}
field("Salary Range") {
vbox {
alignment = Pos.CENTER
add(RangeSlider().apply {
max = 500_000.0
lowValueProperty().bindBidirectional(query.salaryMinProperty)
highValueProperty().bindBidirectional(query.salaryMaxProperty)
})
label(query.salaryDescription)
}
}
button("Search").action {
context.search()
}
}
}
}
/**
* The UI that shows the search results
*/
class EmployeeTableView : View() {
val context: EmployeeContext by inject()
override val root = borderpane {
center {
tableview(context.employees) {
column("Name", Employee::nameProperty)
column("Gender", Employee::genderProperty)
column("Salary", Employee::salaryProperty)
}
}
}
}
/**
* A sample view that ties the filter UI and result UI together
*/
class MainView : View("Employee App") {
override val root = hbox {
add(EmployeeFilterView::class)
add(EmployeeTableView::class)
}
}
答案 1 :(得分:0)
我最终使用了Tornadofx - &gt; EventBus
基本上,当我更改任何过滤器时,我会触发一个使用更新值重建Node的even。
不确定方法是否正确,这就是为什么仍然保持开放讨论的原因。