fix(DatePicker): Fix compatibility with strict mode #3964
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related issue
#3528
Overview
This:
Reason
Strict mode should be supported. (Previously the day picker would not open when strict mode is on.)
Work carried out
clickOutsideDeactivates
andescapeDeactivates
focus-trap callbacks instead ofonDeactivate
DATEPICKER_ACTION.TOGGLE_OPEN
reducer action (as reducer functions are called twice in strict mode)Developer notes
See https://github.com/focus-trap/focus-trap-react?tab=readme-ov-file#%EF%B8%8F%EF%B8%8F-react-18-strict-mode-%EF%B8%8F%EF%B8%8F for the react-focus-trap node about strict mode –
onDeactivate
wasn't really the right callback as it gets called when the component is unmounted.Strict mode is still disabled in Storybook as there were some other unrelated failures with it on (mainly in the form usage examples).