-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple Range Latency #383
Comments
Hey! Thanks for opening the issue. Can you provide a minimal repro which demonstrates the issue? Posting a snippet of your code in the issue is useful, but it's not usually straightforward to run. A repro will help us debug the issue faster. Please try to keep the repro as small as possible. The easiest way to provide a repro is on snack.expo.dev. If it's not possible to repro it on snack.expo.dev, then you can also provide the repro in a GitHub repository. |
@RichardLindhout Do you have any initial thoughts? |
@RichardLindhout Do you have any insight into this? I'm going to try to fix this in the next couple of weeks as it's affecting my app and any ideas you might have will serve as a good starting point. |
Hey! It is probably because array will re-render everything because some property is not stable 'enough' so something triggers the day to re-render. I thought we only used simple promps in day to prevent this but maybe something else is slow |
Yeah, I'm still looking into it but I've noticed that this renders 5 times ( react-native-paper-dates/src/Date/Month.tsx Line 112 in ce9d1ba
|
Do the days also re-render? I think thats the biggest bottleneck |
I'll have to put some logs in. I just know it only happens on iOS and the rendering of grid gets increasingly slower, but perhaps the days is the real culprit. The multiple on iOS is borderline unusable after only a few dates have been selected so I'd let to get to the bottom of it. |
It appears its rendering all the days again for each month, so I'll have to explore how we can avoid that from happening. |
Any ideas? It seems strange it only happens on iOS when the all the re-renders are happening on both platforms...It looks like it goes through this loop with rendering all of the days for each month again on selection react-native-paper-dates/src/Date/Month.tsx Line 332 in ce9d1ba
|
Current behaviour
The multiple dates picker appears to gradually get slower the more dates that are selected. This seems to be more noticeable on iOS as opposed to Android and Web.
Expected behaviour
The dates should be selected in a reasonable time.
How to reproduce?
https://snack.expo.dev/@fitzwabs/react-native-paper-dates-multiple-picker or it also seen in the repositories example app.
Preview
Screen_Recording_2024-04-14_at_11.56.43_AM.mov
What have you tried so far?
@RichardLindhout I haven't looked into this yet, but I'm assuming it is performing a lot of re-renders. Perhaps you have more insight off the top of your head.
Your Environment
The text was updated successfully, but these errors were encountered: