Commit 4dede70
committed
Fix deprecated findDOMNode usage in React 19
Update the library to remove the use of deprecated `findDOMNode` and replace it with a ref-based approach.
* **NonStrictPanel.tsx**
- Replace `findDOMNode` with `React.createRef` to access the DOM element.
- Update the `nativeElement` getter to return the current ref.
- Modify the `render` method to clone the element with the ref.
* **ReactElementProvider.ts**
- Update the constructor to accept a ref instead of a `StrictPanel` or `NonStrictPanel`.
- Update the `element` getter to return the current ref.
- Modify the `show` and `hide` methods to use the ref.
* **Flicking.tsx**
- Remove the `useFindDOMNode` prop and use a ref-based approach.
- Update the `_createPanelRefs` method to use `React.createRef`.
- Update the `_getPanels` method to use the new ref-based approach.
* **ReactRenderer.ts**
- Update the `_collectPanels` method to use the new ref-based approach.
- Update the `_createPanel` method to use the new ref-based approach.
* **package-lock.json**
- Update the version to `4.12.0-snapshot`.1 parent 293da58 commit 4dede70
File tree
5 files changed
+21
-17
lines changed- packages/react-flicking/src/react-flicking
5 files changed
+21
-17
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
332 | 332 | | |
333 | 333 | | |
334 | 334 | | |
335 | | - | |
336 | | - | |
337 | | - | |
| 335 | + | |
338 | 336 | | |
339 | 337 | | |
340 | 338 | | |
| |||
Lines changed: 5 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | 6 | | |
8 | 7 | | |
9 | 8 | | |
| 9 | + | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
18 | 20 | | |
19 | 21 | | |
20 | 22 | | |
| |||
Lines changed: 11 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | | - | |
13 | | - | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | | - | |
16 | | - | |
| 15 | + | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
21 | 23 | | |
22 | 24 | | |
23 | 25 | | |
24 | | - | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
25 | 29 | | |
26 | 30 | | |
27 | 31 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
0 commit comments