Zaid Ajaj
Zaid Ajaj
That would be awesome @Kavignon ❤️ it is quite a lot of work but here are a couple headlines: - Restructure the application using [Discriminated Union Composition](https://zaid-ajaj.github.io/the-elmish-book/#/chapters/scaling/composition-forms#discriminated-union-composition) instead of State-Field...
That is what I thought at first too but storing the sub states is necessary: the top-level components sometimes need to "peek" into the data of other components in the...
> Components should avoid at most being related to each other They are not related by the code and they don't know each other even exist, they are *conceptually* related...
Thanks for the clarification, I think I will adopt the `ExtenalMsg` approach, I like the explicitness of what will be handled within the child and what will be handled or...
@FoggyFinder Maintainers seem to have no interest in this issue. It has been almost one and half years since I opened it
Fabulous already does something similar by executing parts of the diffed code. I know the specifics by there has already been work done towards the same goal in there
Please no, port 8080 is very common to use in front-end development and using a random will only confuse people. In modern Vue.js applications, the CLI tool will check whether...
@reneederer Why do you return a boxed list from the server?
@reneederer I see, working with dynamic data can be annoying. Note that on the client side, `unbox` doesn't do _anything_ at runtime! This is not a bug, that's by design....
One more thing about the serving file recipe, there is this snippet ```fs open System // We need this for the `Byte` type type IFileAPI = { //...other routes download...