|
|
|
|
|
by keymone
1876 days ago
|
|
From the tech talks I vaguely recall, LiveView folks seem to disregard latency, which is where the entire model falls apart for me because the moment you need more control on the client over what to do when the server is not responding - you’re entirely out of luck. Though maybe I’m wrong and there has been some new developments to address this, I wasn’t following too closely. |
|
There are also use cases which are a bad fit for LiveView: Animations - animations, menus, and general UI events that do not need the server in the first place are a bad fit for LiveView. Those can be achieved without LiveView in multiple ways, such as with CSS and CSS transitions, using LiveView hooks, or even integrating with UI toolkits designed for this purpose, such as Bootstrap, Alpine.JS, and similar.
https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html#m...