Questions tagged [model-view-update]

Relating to the model-view-update architecture that originated in Elm.

The model-view-update architecture that originated in Elm and which has been adopted by other projects, such as Fable.Elmish and Fabulous and others.

4 questions
2
votes
1 answer

Can Model View Update be used with Uno Platform?

I am looking into using the Model View Update pattern in Uno Platform. Just like this project: https://github.com/unoplatform/Elmish.Uno However, Elmish.Uno is troubled: A: 3 years since last maintainance B: from the page and docs, it is unclear to…
user7470355
2
votes
3 answers

Elm Architecture (MVU) in C# and Deep Copy

I'm looking into the possibility of implementing an MVU pattern in a Xamarin app using C#. This mostly seems to hinge on the immutability of the model being provided to the view and the Update function that will keep producing a new model whenever…
MobDev
  • 163
  • 2
  • 11
1
vote
0 answers

Update flask view with value from dropdown not a form

I have a function to filter a .csv file by year to then visualize a plot with bokeh/change the df before it be plotted. On jupyter notebook I am using ipywidgets with the interact function to change it and works just fine, the problem that when I…
ReinholdN
  • 526
  • 5
  • 22
1
vote
1 answer

Equivalent of data binding model updates in Elm-style model-view-update

MVU State Changes As I understand Elm-style model-view-update architectures, changes to application state follow the sending of a message that defines the updated state. The state here is immutable, so changes result in a whole new set of…
Sean Kearon
  • 10,987
  • 13
  • 77
  • 93