Add a built-in component for async view loading #2936
Replies: 5 comments
-
On the first thought: I see this in userland. |
Beta Was this translation helpful? Give feedback.
-
I agree. Promises can be difficult to deal with declaratively, but ultimately this isn't something that involves any Mithril-specific logic, other than a component to store state. I wrote this component to demonstrate the potential of nested vtree functions - |
Beta Was this translation helpful? Give feedback.
-
It's not really mandatory to have in core, and I addressed the primary use of route resolvers (auth) with a much better-suited abstraction. Would you all be okay with an out-of-core-but-officially-blessed This is probably the least significant facet of #2278, and I wouldn't have an issue separating this from that. |
Beta Was this translation helpful? Give feedback.
-
not bundled in core but opt in module would be great thought |
Beta Was this translation helpful? Give feedback.
-
@StephanHoyer Yeah, I'm starting to agree with that thought. I'll remove it from my list in #2278 and just keep it with my (newly filed) #2284. |
Beta Was this translation helpful? Give feedback.
-
Updates
signal
as that's what all the various DOM APIs use (and care about) and revised the examples (fixing a bug in the process).Async
instead ofm.async
.onevent
callback per-call form.redraw
#2074.onAbort
callback toinit
for cancelling requests and similar.I'm thinking we could add a new component for async view loading, for things like lazy component initialization based on app state, database loading, and reducing the need for route resolvers (which I'm proposing on partially removing in #2278).
Here's my proposed API:
If you want to reinitialize it, just wrap it in a keyed fragment and pass a new key.
Implementation-wise, it's pretty simple, and could be implemented trivially in userland.
This, of course, is slightly more complicated, but this has the semantics I'd prefer to see mod sync handling of non-promise
return
/throw
.Note that this depends on #2074 (comment).
Beta Was this translation helpful? Give feedback.
All reactions