You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last UI update has been published in OwlPlug 1.25.0, mostly to get rid of the deprecated JFoenix component. Small improvements have been made to the UI, but there is still a lot to do.
A global overhall of UI/UX would be something to consider along with some refactoring on the app presentation logic.
[controllers] Controllers (annotated with @Controller) are singleton controllers registered in DI and associated with an FXML template.
[controllers.dialogs] Dialogs Controllers are singleton controllers registered in DI, with self-loading FXML from a lazy view registry (pre-loading node graph during app startup)
[controllers.fragments] Fragment Controllers are classes outside of DI, with self-loading FXML and controller association.
Views are classes inheriting layout Node or Pane, or an entire FXML sheet.**
The last UI update has been published in OwlPlug 1.25.0, mostly to get rid of the deprecated JFoenix component. Small improvements have been made to the UI, but there is still a lot to do.
A global overhall of UI/UX would be something to consider along with some refactoring on the app presentation logic.
View,Fragments,Component, ...) and package name (ui,component,controller)Controllerscope from the defaultsingletontoprototype.ApplicationEventPublisherfor dispatching eventsActual wording
[controllers]Controllers (annotated with@Controller) are singleton controllers registered in DI and associated with an FXML template.[controllers.dialogs]Dialogs Controllers are singleton controllers registered in DI, with self-loading FXML from a lazy view registry (pre-loading node graph during app startup)[controllers.fragments]Fragment Controllers are classes outside of DI, with self-loading FXML and controller association.[ui]package contains various, utilities, views (or UI components), factories, ...Items breakdown
Controllerscope from the defaultsingletontoprototype.Controlleror aView.ApplicationEventPublisherfor dispatching eventsrefreshView()is used today)Platform.runLater()or utilityFX.run()in controller listeners.Service->ControllerandController->Controllerdependency injection.