TornadoFX绑定不同视图模型的脏属性

时间:2018-05-16 07:09:01

标签: kotlin tornadofx

我有一个使用模型的MVVM模式的tornadoFX应用程序:

data class Person (
    val name: String,
    val cars: List<Car>
)

data class Car (
    val brand: String,
    val model: String
)

该应用程序定义了以下视图:

enter image description here

列表视图列出了所有人。除了listView之外,还有一个详细信息视图,其中包含人员姓名的文本字段和人员车辆的表格视图。 双击表格中的汽车条目会打开一个对话框,可以在其中编辑汽车的属性。

我想,如果我打开汽车详细信息并编辑条目,更改将反映在表格视图中。由于我不能通过添加fx-properties来改变Car-model(这是一个不可变类型),我提出了以下视图模型:

class PersonViewModel(): ItemViewModel<Person> {
    val name = bind(Person::name)
    val cars = bind { SimpleListProperty<CarViewModel>(item?.cars?.map{CarViewModel(it)}?.observable()) }

    override fun onCommit {
        // create new person based on ViewModel and store it
    }
}

class CarViewModel(item: Car): ItemViewModel<Car> {
    val brand = bind(Car::name)
    val model = bind(Car::model)

    init {
        this.item = item
    }
}

这样,如果双击表格视图中的车辆入口并打开车辆细节视图,车辆的更新将直接反映在表格视图中。

我的问题是,我找不到将表中所有CarViewModel的脏属性绑定到PersonViewModel的方法。因此,如果我更换汽车,PersonViewModel不会被标记为脏。

有没有办法绑定PersonViewModel和CarViewModel的脏属性? (并且如果选择了另一个人,也会重新绑定它们。)

或者甚至有更好的方法来定义我的视图模型?

1 个答案:

答案 0 :(得分:5)

我对框架进行了更改,以允许ViewModel绑定到列表以观察ListChange事件。这使您可以通过以某种方式更改列表来触发列表属性的脏状态。仅仅更改列表中项目内的属性不会触发它,因此在下面的示例中,我只是在提交之前获取Car的索引,并将Car重新分配给相同的索引。这将触发框架现在侦听的ListChange事件。

重要操作发生在Car对话框保存功能中:

button("Save").action {
    val index = person.cars.indexOf(car.item)

    car.commit {
        person.cars[index] = car.item
        close()
    }
}

在提交值之前记录汽车的索引(为了确保equals / hashCode匹配相同的条目),然后将新提交的项插入到同一索引中,从而触发列表上的更改事件。

这是一个完整的示例,使用可变的JavaFX属性,因为它们是惯用的JavaFX方式。您可以很容易地将其调整为使用不可变项,或使用包装器。

class Person(name: String, cars: List<Car>) {
    val nameProperty = SimpleStringProperty(name)
    var name by nameProperty

    val carsProperty = SimpleListProperty<Car>(FXCollections.observableArrayList(cars))
    var cars by carsProperty
}

class PersonModel : ItemViewModel<Person>() {
    val name = bind(Person::nameProperty)
    val cars: SimpleListProperty<Car> = bind(Person::carsProperty)
}


class Car(brand: String, model: String) {
    val brandProperty = SimpleStringProperty(brand)
    var brand by brandProperty

    val modelProperty = SimpleStringProperty(model)
    var model by modelProperty
}

class CarModel(car: Car? = null) : ItemViewModel<Car>(car) {
    val brand = bind(Car::brandProperty)
    val model = bind(Car::modelProperty)
}

class DataController : Controller() {
    val people = FXCollections.observableArrayList<Person>()

    init {
        people.add(
                Person("Person 1", listOf(Car("BMW", "M3"), Car("Ford", "Fiesta")))
        )
    }
}

class PersonMainView : View() {
    val data: DataController by inject()
    val selectedPerson: PersonModel by inject()

    override val root = borderpane {
        center {
            tableview(data.people) {
                column("Name", Person::nameProperty)
                bindSelected(selectedPerson)
            }
        }
        right(PersonEditor::class)
    }
}

class PersonEditor : View() {
    val person: PersonModel by inject()
    val selectedCar : CarModel by inject()

    override val root = form {
        fieldset {
            field("Name") {
                textfield(person.name).required()
            }
            field("Cars") {
                tableview(person.cars) {
                    column("Brand", Car::brandProperty)
                    column("Model", Car::modelProperty)
                    bindSelected(selectedCar)
                    onUserSelect(2) {
                        find<CarEditor>().openModal()
                    }
                }
            }
            button("Save") {
                enableWhen(person.dirty)
                action {
                    person.commit()
                }
            }
        }
    }
}

class CarEditor : View() {
    val car: CarModel by inject()
    val person: PersonModel by inject()

    override val root = form {
        fieldset {
            field("Brand") {
                textfield(car.brand).required()
            }
            field("Model") {
                textfield(car.model).required()
            }
            button("Save").action {
                val index = person.cars.indexOf(car.item)

                car.commit {
                    person.cars[index] = car.item
                    close()
                }
            }
        }
    }
}

该功能在TornadoFX 1.7.17-SNAPSHOT中可用。