-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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
fix(datetime): do not animate to new value when multiple values in different months are set #28847
Conversation
…fferent months are set
@@ -5,7 +5,7 @@ import { configs, test } from '@utils/test/playwright'; | |||
|
|||
const SINGLE_DATE = '2022-06-01'; | |||
const MULTIPLE_DATES = ['2022-06-01', '2022-06-02', '2022-06-03']; | |||
const MULTIPLE_DATES_SEPARATE_MONTHS = ['2022-04-01', '2022-05-01', '2022-06-01']; | |||
const MULTIPLE_DATES_SEPARATE_MONTHS = ['2022-03-01', '2022-04-01', '2022-05-01']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was changed to avoid any of these dates being in the same month as the MULTIPLE_DATES
set above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix works well, just one question on the test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test was missing an annotation, but otherwise looks good!
Co-authored-by: Liam DeBeasi <[email protected]>
Issue number: resolves #28602
What is the current behavior?
We animate to the new date when the value is changed, but we do not account for multiple selection. This behavior is valuable for when the value is set asynchronously on a different month than what it shown.
However, this is confusing when there are multiple dates selected in different months, because we do not reasonably know which date to animate to.
What is the new behavior?
Datetime no longer animates to the new value if more than one date is selected, and the selected dates aren't all in the same month.
An alternative strategy would be to always animate unless one of the selected dates is in the month currently being viewed. However, this would still mean guessing at which value the user wants to see, which we are trying to avoid.
Based on this PR: #28605
Does this introduce a breaking change?
Other information
Co-authored-by: Liam DeBeasi [email protected]