Inertia v2 #6560
Unanswered
tylernathanreed
asked this question in
Ideas & Feature Requests
Inertia v2
#6560
Replies: 1 comment
-
We will look into integrating Inertia 2 feature when we remove The current objective with Laravel Nova 5 is to allow applications to upgrade to Inertia.js v2 as soon as possible while still allowing applications locked to Inertia.js v1 to receive the latest code. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With Inertia v2 now in beta, I wanted to open a thread to brainstorm how the new Inertia features could be implemented into Nova. I'm not looking for any resolution on this thread, just ideas regarding how the v2 features could be implemented into Nova. If the Nova maintainers have plans already, I'd love to hear them!
Polling
Nova already supports Polling, but it doesn't offer throttling. Having the ability to throttle polling would be helpful, as it can reduce server load.
Prefetching
Nova's URL and relation fields could make use of prefetching. This would likely need to be opt-in behavior, so perhaps we could chain a
->prefetch()
method on these fields.Infinite Scrolling
I immediately see Infinite Scrolling as a new type of pagination. I definitely have some index pages that would benefit from this.
Lazy Loading on Scroll
Inertia's load when visible would be super handy for pages that use a lot of metrics. Honestly, any component that asynchronously loads in should have some sort of
->lazyLoad()
helper that we could chain onto it.Beta Was this translation helpful? Give feedback.
All reactions