rebo
rebo
Another update, a Layout System is pretty much complete. With this you can create your layout declaratively. Then wire up specific views to typed areas once you have written them....
Given the above I am looking for efficiencies that can be made that have the following characteristics 1) Can be applied generally to all apps. 2) Don't require massive structural...
> What takes the most of time during the render? `view` function logic? `Node` allocations? Or VDOM diff? Or DOM patching? Or something else / mix? I think it is...
In my experience VDOM diffing doesn't seem to be the slowest part of the render process in seed. Indeed even though it isn't really optimised at all at the moment...
Despite what I said, I just couldn't help myself. Svelte/SolidJS/ImbaJS/Valerie-rs style direct DOM patching without V-DOM works just fine in Seed. **I'm sorry I promise I will stop now** and...
>After your experimentation, do you think that is still true? I have mixed thoughts, vdom-less infrastructure seems to require accurate change detection, basically the system needs to understand when a...
Having spent quite a bit of time with local state hacking vs TEA I think there are benefits (and drawbacks) to both approaches. As Martin suggested above it's difficult to...
So as mentioned on discord I think in theory this could be a great idea however the interop between seed infrastructure and a Web Component would need to be carefully...
Good summary of the goals of such a feature. Currently in Seed and other Elm style frameworks there are competing concerns regarding application composability, modularity and code reuse. There are...
**React Hooks** [React hooks](https://reactjs.org/docs/hooks-intro.html) are used within React to allow for local state (amongst other features). Fundamentally the api it exposes is via `useState` i.e. `const [count, setCount] = useState(0);`...