Skip to content

Commit 64f6784

Browse files
authoredDec 22, 2024··
Merge pull request #98 from JairajJangle/beta
Made `data` prop stateful
2 parents 0719885 + 8e1dd24 commit 64f6784

9 files changed

+734
-852
lines changed
 

‎CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
1+
# [1.7.0-beta.2](https://github.com/JairajJangle/react-native-tree-multi-select/compare/v1.7.0-beta.1...v1.7.0-beta.2) (2024-12-19)
2+
3+
4+
### Bug Fixes
5+
6+
* fixed updated data state not reflecting due to issues in deep compare effect ([fb5a745](https://github.com/JairajJangle/react-native-tree-multi-select/commit/fb5a745bf494cd3dec15e68fc05fa1a17034f75d))
7+
8+
9+
### Performance Improvements
10+
11+
* optimized flatten tree helper func ([012f981](https://github.com/JairajJangle/react-native-tree-multi-select/commit/012f9812edd6107a46fc24bd176862a73683435f))
12+
113
## [1.6.1](https://github.com/JairajJangle/react-native-tree-multi-select/compare/v1.6.0...v1.6.1) (2024-12-17)
214

315

416
### Performance Improvements
517

618
* optimized flatten tree helper func ([012f981](https://github.com/JairajJangle/react-native-tree-multi-select/commit/012f9812edd6107a46fc24bd176862a73683435f))
19+
# [1.7.0-beta.1](https://github.com/JairajJangle/react-native-tree-multi-select/compare/v1.6.0...v1.7.0-beta.1) (2024-12-09)
20+
21+
22+
### Features
23+
24+
* made data prop reactive ([f5f3699](https://github.com/JairajJangle/react-native-tree-multi-select/commit/f5f369996e5c67b32c87caa0edad6131d037f1a9))
725

826
# [1.6.0](https://github.com/JairajJangle/react-native-tree-multi-select/compare/v1.5.1...v1.6.0) (2024-12-07)
927

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
⚡️Super-fast Tree view with multi-selection capabilities, using checkboxes and search filtering.
44

5-
[![npm version](https://img.shields.io/npm/v/react-native-tree-multi-select)](https://badge.fury.io/js/react-native-tree-multi-select) [![License](https://img.shields.io/github/license/JairajJangle/react-native-tree-multi-select)](https://github.com/JairajJangle/react-native-tree-multi-select/blob/main/LICENSE) [![Workflow Status](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml/badge.svg)](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml) [![cov](https://raw.githubusercontent.com/JairajJangle/react-native-tree-multi-select/gh-pages/badges/coverage.svg)](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml) ![Android](https://img.shields.io/badge/-Android-555555?logo=android&logoColor=3DDC84) ![iOS](https://img.shields.io/badge/-iOS-555555?logo=apple&logoColor=white) ![Web](https://img.shields.io/badge/-Web-555555?logo=google-chrome&logoColor=0096FF) [![GitHub issues](https://img.shields.io/github/issues/JairajJangle/react-native-tree-multi-select)](https://github.com/JairajJangle/react-native-tree-multi-select/issues?q=is%3Aopen+is%3Aissue) ![TS](https://img.shields.io/badge/TypeScript-strict_💪-blue) [![Known Vulnerabilities](https://snyk.io/test/github/jairajjangle/react-native-tree-multi-select/badge.svg)](https://snyk.io/test/github/jairajjangle/react-native-tree-multi-select) [![Expo Snack](https://img.shields.io/badge/Expo%20Snack-555555?style=flat&logo=expo&logoColor=white)](https://snack.expo.dev/@futurejj/react-native-tree-multi-select-example)
5+
[![npm version](https://img.shields.io/npm/v/react-native-tree-multi-select)](https://badge.fury.io/js/react-native-tree-multi-select) [![License](https://img.shields.io/github/license/JairajJangle/react-native-tree-multi-select)](https://github.com/JairajJangle/react-native-tree-multi-select/blob/main/LICENSE) [![Workflow Status](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml/badge.svg)](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml) [![cov](https://raw.githubusercontent.com/JairajJangle/react-native-tree-multi-select/gh-pages/badges/coverage.svg)](https://github.com/JairajJangle/react-native-tree-multi-select/actions/workflows/ci.yml) ![Android](https://img.shields.io/badge/-Android-555555?logo=android&logoColor=3DDC84) ![iOS](https://img.shields.io/badge/-iOS-555555?logo=apple&logoColor=white) ![Web](https://img.shields.io/badge/-Web-555555?logo=google-chrome&logoColor=0096FF) [![GitHub issues](https://img.shields.io/github/issues/JairajJangle/react-native-tree-multi-select)](https://github.com/JairajJangle/react-native-tree-multi-select/issues?q=is%3Aopen+is%3Aissue) ![TS](https://img.shields.io/badge/TypeScript-strict_💪-blue) [![Known Vulnerabilities](https://snyk.io/test/github/jairajjangle/react-native-tree-multi-select/badge.svg)](https://snyk.io/test/github/jairajjangle/react-native-tree-multi-select) [![Expo Snack](https://img.shields.io/badge/Expo%20Snack-555555?style=flat&logo=expo&logoColor=white)](https://snack.expo.dev/@futurejj/react-native-tree-multi-select-example) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/react-native-tree-multi-select)
66

77

88

@@ -131,8 +131,6 @@ export function TreeViewUsageExample(){
131131
| `ExpandCollapseTouchableComponent` | `ComponentType<`[TouchableOpacityProps](https://reactnative.dev/docs/touchableopacity#props)`>` | No | A custom expand/collapse touchable component |
132132
| `CustomNodeRowComponent` | `React.ComponentType<`[NodeRowProps](#noderowprops)`>` | No | Custom row item component |
133133

134-
ℹ️ `data` prop is not stateful! You will need to update the `key` prop to force `TreeView` to re-render.
135-
136134
ℹ️ If `CustomNodeRowComponent` is provided then below props are not applied:
137135

138136
1. `indentationMultiplier`

‎example/yarn.lock

+80-76
Original file line numberDiff line numberDiff line change
@@ -2288,9 +2288,9 @@ camelcase@^6.2.0:
22882288
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
22892289

22902290
caniuse-lite@^1.0.30001688:
2291-
version "1.0.30001689"
2292-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001689.tgz#67ca960dd5f443903e19949aeacc9d28f6e10910"
2293-
integrity sha512-CmeR2VBycfa+5/jOfnp/NpWPGd06nf1XYiefUvhXFfZE4GkRc9jv+eGPS4nT558WS/8lYCzV8SlANCIPvbWP1g==
2291+
version "1.0.30001690"
2292+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz#f2d15e3aaf8e18f76b2b8c1481abde063b8104c8"
2293+
integrity sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==
22942294

22952295
chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2:
22962296
version "4.1.2"
@@ -2531,11 +2531,11 @@ data-view-byte-length@^1.0.1:
25312531
is-data-view "^1.0.1"
25322532

25332533
data-view-byte-offset@^1.0.0:
2534-
version "1.0.0"
2535-
resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a"
2536-
integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==
2534+
version "1.0.1"
2535+
resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191"
2536+
integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==
25372537
dependencies:
2538-
call-bind "^1.0.6"
2538+
call-bound "^1.0.2"
25392539
es-errors "^1.3.0"
25402540
is-data-view "^1.0.1"
25412541

@@ -2641,7 +2641,7 @@ doctrine@^2.1.0:
26412641
dependencies:
26422642
esutils "^2.0.2"
26432643

2644-
dunder-proto@^1.0.0:
2644+
dunder-proto@^1.0.0, dunder-proto@^1.0.1:
26452645
version "1.0.1"
26462646
resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a"
26472647
integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
@@ -2702,7 +2702,7 @@ errorhandler@^1.5.1:
27022702
accepts "~1.3.7"
27032703
escape-html "~1.0.3"
27042704

2705-
es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5:
2705+
es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6:
27062706
version "1.23.6"
27072707
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.6.tgz#55f0e1ce7128995cc04ace0a57d7dca348345108"
27082708
integrity sha512-Ifco6n3yj2tMZDWNLyloZrytt9lqqlwvS83P3HtaETR0NUOYnIULGGHpktqYGObGy+8wc1okO25p8TjemhImvA==
@@ -3112,9 +3112,9 @@ flow-enums-runtime@^0.0.6:
31123112
integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==
31133113

31143114
flow-parser@0.*:
3115-
version "0.256.0"
3116-
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.256.0.tgz#2a453925caa0f40beb83ef72ea6479ef7b25d739"
3117-
integrity sha512-HFb/GgB7hq+TYosLJuMLdLp8aGlyAVfrJaTvcM0w2rz2T33PjkVbRU419ncK/69cjowUksewuspkBheq9ZX9Hw==
3115+
version "0.257.0"
3116+
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.257.0.tgz#7bac8843ca43c7ba46611dfdef4acb0828351a02"
3117+
integrity sha512-j1odE5mnPe6GOd5W1H/i8EXJvkhVquZCdoFVsZxUW8Yzda0OvjISCBBhDMjxtSkI1YU3d15BkTEeSYb5TLsVuw==
31183118

31193119
flow-parser@^0.206.0:
31203120
version "0.206.0"
@@ -3205,13 +3205,13 @@ get-stream@^6.0.0:
32053205
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
32063206

32073207
get-symbol-description@^1.0.2:
3208-
version "1.0.2"
3209-
resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5"
3210-
integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==
3208+
version "1.1.0"
3209+
resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee"
3210+
integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==
32113211
dependencies:
3212-
call-bind "^1.0.5"
3212+
call-bound "^1.0.3"
32133213
es-errors "^1.3.0"
3214-
get-intrinsic "^1.2.4"
3214+
get-intrinsic "^1.2.6"
32153215

32163216
glob-parent@^5.1.2:
32173217
version "5.1.2"
@@ -3283,9 +3283,9 @@ graphemer@^1.4.0:
32833283
integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
32843284

32853285
has-bigints@^1.0.2:
3286-
version "1.0.2"
3287-
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
3288-
integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
3286+
version "1.1.0"
3287+
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe"
3288+
integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==
32893289

32903290
has-flag@^4.0.0:
32913291
version "4.0.0"
@@ -3624,11 +3624,11 @@ is-set@^2.0.3:
36243624
integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
36253625

36263626
is-shared-array-buffer@^1.0.3:
3627-
version "1.0.3"
3628-
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688"
3629-
integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==
3627+
version "1.0.4"
3628+
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f"
3629+
integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==
36303630
dependencies:
3631-
call-bind "^1.0.7"
3631+
call-bound "^1.0.3"
36323632

36333633
is-stream@^2.0.0:
36343634
version "2.0.1"
@@ -3652,12 +3652,12 @@ is-symbol@^1.0.4, is-symbol@^1.1.1:
36523652
has-symbols "^1.1.0"
36533653
safe-regex-test "^1.1.0"
36543654

3655-
is-typed-array@^1.1.13:
3656-
version "1.1.13"
3657-
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229"
3658-
integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==
3655+
is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15:
3656+
version "1.1.15"
3657+
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b"
3658+
integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==
36593659
dependencies:
3660-
which-typed-array "^1.1.14"
3660+
which-typed-array "^1.1.16"
36613661

36623662
is-unicode-supported@^0.1.0:
36633663
version "0.1.0"
@@ -4022,9 +4022,9 @@ makeerror@1.0.12:
40224022
tmpl "1.0.5"
40234023

40244024
math-intrinsics@^1.0.0:
4025-
version "1.0.0"
4026-
resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.0.0.tgz#4e04bf87c85aa51e90d078dac2252b4eb5260817"
4027-
integrity sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==
4025+
version "1.1.0"
4026+
resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9"
4027+
integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
40284028

40294029
memoize-one@^5.0.0:
40304030
version "5.2.1"
@@ -4913,13 +4913,15 @@ object-keys@^1.1.1:
49134913
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
49144914

49154915
object.assign@^4.1.4, object.assign@^4.1.5:
4916-
version "4.1.5"
4917-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0"
4918-
integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
4916+
version "4.1.7"
4917+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d"
4918+
integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==
49194919
dependencies:
4920-
call-bind "^1.0.5"
4920+
call-bind "^1.0.8"
4921+
call-bound "^1.0.3"
49214922
define-properties "^1.2.1"
4922-
has-symbols "^1.0.3"
4923+
es-object-atoms "^1.0.0"
4924+
has-symbols "^1.1.0"
49234925
object-keys "^1.1.1"
49244926

49254927
object.entries@^1.1.8:
@@ -4942,11 +4944,12 @@ object.fromentries@^2.0.8:
49424944
es-object-atoms "^1.0.0"
49434945

49444946
object.values@^1.1.6, object.values@^1.2.0:
4945-
version "1.2.0"
4946-
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b"
4947-
integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==
4947+
version "1.2.1"
4948+
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216"
4949+
integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==
49484950
dependencies:
4949-
call-bind "^1.0.7"
4951+
call-bind "^1.0.8"
4952+
call-bound "^1.0.3"
49504953
define-properties "^1.2.1"
49514954
es-object-atoms "^1.0.0"
49524955

@@ -5404,19 +5407,19 @@ recyclerlistview@4.2.1:
54045407
prop-types "15.8.1"
54055408
ts-object-utils "0.0.5"
54065409

5407-
reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.8:
5408-
version "1.0.8"
5409-
resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz#c58afb17a4007b4d1118c07b92c23fca422c5d82"
5410-
integrity sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ==
5410+
reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.8, reflect.getprototypeof@^1.0.9:
5411+
version "1.0.9"
5412+
resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.9.tgz#c905f3386008de95a62315f3ea8630404be19e2f"
5413+
integrity sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==
54115414
dependencies:
54125415
call-bind "^1.0.8"
54135416
define-properties "^1.2.1"
5414-
dunder-proto "^1.0.0"
5415-
es-abstract "^1.23.5"
5417+
dunder-proto "^1.0.1"
5418+
es-abstract "^1.23.6"
54165419
es-errors "^1.3.0"
5417-
get-intrinsic "^1.2.4"
5420+
get-intrinsic "^1.2.6"
54185421
gopd "^1.2.0"
5419-
which-builtin-type "^1.2.0"
5422+
which-builtin-type "^1.2.1"
54205423

54215424
regenerate-unicode-properties@^10.2.0:
54225425
version "10.2.0"
@@ -6062,37 +6065,37 @@ type-fest@^0.7.1:
60626065
integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
60636066

60646067
typed-array-buffer@^1.0.2:
6065-
version "1.0.2"
6066-
resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3"
6067-
integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==
6068+
version "1.0.3"
6069+
resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536"
6070+
integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==
60686071
dependencies:
6069-
call-bind "^1.0.7"
6072+
call-bound "^1.0.3"
60706073
es-errors "^1.3.0"
6071-
is-typed-array "^1.1.13"
6074+
is-typed-array "^1.1.14"
60726075

60736076
typed-array-byte-length@^1.0.1:
6074-
version "1.0.1"
6075-
resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67"
6076-
integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==
6077+
version "1.0.3"
6078+
resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce"
6079+
integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==
60776080
dependencies:
6078-
call-bind "^1.0.7"
6081+
call-bind "^1.0.8"
60796082
for-each "^0.3.3"
6080-
gopd "^1.0.1"
6081-
has-proto "^1.0.3"
6082-
is-typed-array "^1.1.13"
6083+
gopd "^1.2.0"
6084+
has-proto "^1.2.0"
6085+
is-typed-array "^1.1.14"
60836086

60846087
typed-array-byte-offset@^1.0.3:
6085-
version "1.0.3"
6086-
resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz#3fa9f22567700cc86aaf86a1e7176f74b59600f2"
6087-
integrity sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==
6088+
version "1.0.4"
6089+
resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355"
6090+
integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==
60886091
dependencies:
60896092
available-typed-arrays "^1.0.7"
6090-
call-bind "^1.0.7"
6093+
call-bind "^1.0.8"
60916094
for-each "^0.3.3"
6092-
gopd "^1.0.1"
6093-
has-proto "^1.0.3"
6094-
is-typed-array "^1.1.13"
6095-
reflect.getprototypeof "^1.0.6"
6095+
gopd "^1.2.0"
6096+
has-proto "^1.2.0"
6097+
is-typed-array "^1.1.15"
6098+
reflect.getprototypeof "^1.0.9"
60966099

60976100
typed-array-length@^1.0.7:
60986101
version "1.0.7"
@@ -6253,7 +6256,7 @@ which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1:
62536256
is-string "^1.1.1"
62546257
is-symbol "^1.1.1"
62556258

6256-
which-builtin-type@^1.2.0:
6259+
which-builtin-type@^1.2.1:
62576260
version "1.2.1"
62586261
resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e"
62596262
integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==
@@ -6287,15 +6290,16 @@ which-module@^2.0.0:
62876290
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
62886291
integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
62896292

6290-
which-typed-array@^1.1.14, which-typed-array@^1.1.16:
6291-
version "1.1.16"
6292-
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.16.tgz#db4db429c4706feca2f01677a144278e4a8c216b"
6293-
integrity sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==
6293+
which-typed-array@^1.1.16:
6294+
version "1.1.18"
6295+
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.18.tgz#df2389ebf3fbb246a71390e90730a9edb6ce17ad"
6296+
integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==
62946297
dependencies:
62956298
available-typed-arrays "^1.0.7"
6296-
call-bind "^1.0.7"
6299+
call-bind "^1.0.8"
6300+
call-bound "^1.0.3"
62976301
for-each "^0.3.3"
6298-
gopd "^1.0.1"
6302+
gopd "^1.2.0"
62996303
has-tostringtag "^1.0.2"
63006304

63016305
which@^2.0.1:

‎package-lock.json

+145-106
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-tree-multi-select",
3-
"version": "1.6.1",
3+
"version": "1.7.0-beta.2",
44
"description": "A super-fast, customizable tree view component for React Native with multi-selection, checkboxes, and search filtering capabilities.",
55
"main": "lib/commonjs/index.js",
66
"module": "lib/module/index.js",
@@ -95,6 +95,7 @@
9595
"@testing-library/react-native": "^12.6.1",
9696
"@types/color": "^3.0.6",
9797
"@types/jest": "^29.5.3",
98+
"@types/lodash": "^4.17.13",
9899
"@types/react": "~17.0.21",
99100
"@types/react-native": "0.70.0",
100101
"@types/react-native-vector-icons": "^6.4.18",
@@ -128,7 +129,7 @@
128129
"react-native-vector-icons": "*"
129130
},
130131
"engines": {
131-
"node": ">= 16.0.0"
132+
"node": ">= 18.0.0"
132133
},
133134
"packageManager": "yarn@1.22.22",
134135
"jest": {
@@ -208,6 +209,7 @@
208209
]
209210
},
210211
"dependencies": {
212+
"lodash": "^4.17.21",
211213
"react-native-uuid": "^2.0.3",
212214
"zustand": "^4.5.5"
213215
},

‎src/TreeView.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { useTreeViewStore } from './store/treeView.store';
2222
import usePreviousState from './utils/usePreviousState';
2323
import { useShallow } from "zustand/react/shallow";
2424
import uuid from "react-native-uuid";
25+
import useDeepCompareEffect from "./utils/useDeepCompareEffect";
2526

2627
const _TreeView = React.forwardRef<TreeViewRef, TreeViewProps>(
2728
(props, ref) => {
@@ -111,7 +112,9 @@ const _TreeView = React.forwardRef<TreeViewRef, TreeViewProps>(
111112

112113
const prevSearchText = usePreviousState(searchText);
113114

114-
React.useEffect(() => {
115+
useDeepCompareEffect(() => {
116+
cleanUpTreeViewStore();
117+
115118
updateInitialTreeViewData(data);
116119

117120
if (selectionPropagation)
@@ -124,8 +127,7 @@ const _TreeView = React.forwardRef<TreeViewRef, TreeViewProps>(
124127

125128
// Expand pre-expanded nodes
126129
expandNodes(storeId, preExpandedIds);
127-
// eslint-disable-next-line react-hooks/exhaustive-deps
128-
}, []);
130+
}, [data]);
129131

130132
function selectNodes(ids: string[]) {
131133
toggleCheckboxes(storeId, ids, true);

‎src/helpers/treeNode.helper.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export function initializeNodeMaps(storeId: string, initialData: TreeNode[]) {
1919
updateChildToParentMap
2020
} = treeViewStore.getState();
2121

22-
const tempNodeMap: Map<string, TreeNode> = new Map();;
23-
const tempChildToParentMap: Map<string, string> = new Map();;
22+
const tempNodeMap: Map<string, TreeNode> = new Map();
23+
const tempChildToParentMap: Map<string, string> = new Map();
2424

2525
/**
2626
* Recursively processes nodes, adding them to the nodeMap and childToParentMap.

‎src/utils/useDeepCompareEffect.ts

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import React from "react";
2+
import isEqual from "lodash/isEqual";
3+
4+
/**
5+
* Deep compare effect hook.
6+
* Ensures the effect runs on the first render and whenever dependencies deeply change.
7+
*
8+
* @param effect The effect callback function.
9+
* @param deps The dependencies array to compare deeply.
10+
*/
11+
export default function useDeepCompareEffect(
12+
effect: React.EffectCallback,
13+
deps: React.DependencyList
14+
) {
15+
// Ref to track if it's the first render
16+
const firstRenderRef = React.useRef<boolean>(true);
17+
18+
// Memoized dependencies to avoid redundant `isEqual` checks
19+
const memoizedDependencies = React.useMemo(() => deps, [deps]);
20+
21+
// Ref to store the previous dependencies
22+
const dependenciesRef = React.useRef<React.DependencyList>(memoizedDependencies);
23+
24+
// Check for dependency changes
25+
const dependenciesChanged = !isEqual(dependenciesRef.current, memoizedDependencies);
26+
if (dependenciesChanged) {
27+
dependenciesRef.current = memoizedDependencies;
28+
}
29+
30+
React.useEffect(() => {
31+
if (firstRenderRef.current) {
32+
firstRenderRef.current = false;
33+
}
34+
35+
return effect();
36+
// eslint-disable-next-line react-hooks/exhaustive-deps
37+
}, [dependenciesChanged]); // exclude the effect function from the dependencies
38+
}

‎yarn.lock

+441-660
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.