Replies: 1 comment
-
I'm having a very hard time following this question:
what's an internal loading state setter function? |
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
Uh oh!
There was an error while loading. Please reload this page.
-
current implementation uses an internal loading state setter function, hence making it difficult to render loaders based on type of request (for example currently when implementing searching, data filtering or loading of next page items you are expected to listen to the same loader you listened to on initial page load, hence you are forced to display a loader at the same location irrespective of the user action that triggers the loading ).
if there is a means for different processes like searching to set and listening to there own loading using a means like
options.setLoadingFunction(customLoaderFunc)
on the query options users can display loaders in different places specific to the type of action the user is taking at the time.Beta Was this translation helpful? Give feedback.
All reactions