Skip to content

Commit 7d2e54c

Browse files
authored
[PLAY-1888] React Date Picker - initializeOnce - Reinitialization with Other Inputs Bug (#4240)
**What does this PR do?** A clear and concise description with your runway ticket url. - Add prop, `initializeOnce`, which uses an empty dependency array in useEffect to React Date Picker kit so flatpickr init runs only on first render. If the prop is false, use undefined so date picker remains unchanged. - If a form had other inputs and date picker(s), any update to the parent form's state would trigger a reinitialization to the date picker(s). Now date pickers should initialize only once. **How to test?** Steps to confirm the desired behavior: 1. In Nitro, go to a page with a React form that has the date picker and other inputs in Safari 2. Type and make sure the React Date Picker does not "restart" on every event / slows down other inputs. #### Checklist: - [x] **LABELS** Add a label: `enhancement`, `bug`, `improvement`, `new kit`, `deprecated`, or `breaking`. See [Changelog & Labels](https://github.com/powerhome/playbook/wiki/Changelog-&-Labels) for details. - [x] **DEPLOY** I have added the `milano` label to show I'm ready for a review.
1 parent 21818b1 commit 7d2e54c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

playbook/app/pb_kits/playbook/pb_date_picker/_date_picker.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ type DatePickerProps = {
2929
hideLabel?: boolean,
3030
htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
3131
id?: string,
32+
initializeOnce?: boolean,
3233
inLine?: boolean,
3334
inputAria?: { [key: string]: string },
3435
inputData?: { [key: string]: string },
@@ -73,6 +74,7 @@ const DatePicker = (props: DatePickerProps): React.ReactElement => {
7374
hideLabel = false,
7475
htmlOptions = {},
7576
id,
77+
initializeOnce = false,
7678
inLine = false,
7779
inputAria = {},
7880
inputData = {},
@@ -134,7 +136,7 @@ useEffect(() => {
134136
yearRange,
135137
required: false,
136138
}, scrollContainer)
137-
})
139+
}, initializeOnce ? [] : undefined)
138140
const filteredProps = {...props}
139141
if (filteredProps.marginBottom === undefined) {
140142
filteredProps.marginBottom = "sm"

0 commit comments

Comments
 (0)