be-components 6.5.3 → 6.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,65 +22,50 @@ function GuideWrapper({
22
22
  onComplete
23
23
  } = wrapper_guid;
24
24
  const refs = (0, _react.useRef)({});
25
+ const containerRef = (0, _react.useRef)(null);
25
26
  const [currentStep, setCurrentStep] = (0, _react.useState)(0);
26
27
  const [layout, setLayout] = (0, _react.useState)(null);
27
- const [container_layout, setContainerLayout] = (0, _react.useState)({
28
- height: 0,
29
- width: 0,
28
+ const [containerLayout, setContainerLayout] = (0, _react.useState)({
30
29
  x: 0,
31
- y: 0
30
+ y: 0,
31
+ width: 0,
32
+ height: 0
32
33
  });
34
+ const [tooltipHeight, setTooltipHeight] = (0, _react.useState)(0);
33
35
  const {
34
- width
36
+ width: screenWidth
35
37
  } = (0, _reactNative.useWindowDimensions)();
36
- //Check if it is negative
37
- const MIN_WIDTH = 300;
38
- let right = false;
39
- if (layout) {
40
- let right_side = layout.x + MIN_WIDTH;
41
- if (right_side > container_layout.width) {
42
- right = true;
43
- }
44
- //Check if it goes over the bottom
45
- }
46
38
  const sortedTour = tour ? [...tour].sort((a, b) => (a.priority ?? 0) - (b.priority ?? 0)) : [];
47
39
  const step = sortedTour[currentStep];
48
- const ref = step ? refs.current[step.nativeID] : undefined;
49
-
50
- // Measure the current step element
51
- (0, _react.useEffect)(() => {
52
- if (!step || !ref || !active) return;
53
- if (_reactNative.Platform.OS === "web") {
54
- const rect = ref.getBoundingClientRect();
55
- setLayout({
56
- x: rect.left - container_layout.x,
57
- y: rect.top - container_layout.y,
58
- width: rect.width,
59
- height: rect.height
60
- });
61
- } else if (ref && typeof ref.measure === "function") {
62
- ref.measure((width, height, pageX, pageY) => {
63
- setLayout({
64
- x: pageX,
65
- y: pageY,
66
- width,
67
- height
68
- });
69
- });
70
- }
71
- }, [active, currentStep, step, ref, container_layout.x]);
40
+ const stepRef = step ? refs.current[step.nativeID] : undefined;
41
+ const isTouchable = child => {
42
+ const typeName = child.type?.displayName || child.type;
43
+ return child.type === _reactNative.TouchableOpacity || child.type === _reactNative.TouchableHighlight || child.type === _reactNative.TouchableWithoutFeedback || typeof typeName === "string" && typeName.startsWith("Touchable");
44
+ };
72
45
 
73
46
  // Recursively attach refs to children with nativeID
74
47
  const attachRefs = nodes => {
75
48
  return _react.default.Children.map(nodes, child => {
76
49
  if (! /*#__PURE__*/_react.default.isValidElement(child)) return child;
77
- const props = child.props || {};
50
+ const props = child.props;
78
51
  const nativeID = props.nativeID;
79
52
  const newChildren = props.children ? attachRefs(props.children) : props.children;
80
53
  if (nativeID) {
54
+ if (isTouchable(child)) {
55
+ return /*#__PURE__*/_react.default.createElement(_Themed.View, {
56
+ ref: r => {
57
+ if (r) refs.current[nativeID] = r;
58
+ },
59
+ style: {
60
+ flex: 0
61
+ }
62
+ }, /*#__PURE__*/_react.default.cloneElement(child, {
63
+ children: newChildren
64
+ }));
65
+ }
81
66
  return /*#__PURE__*/_react.default.cloneElement(child, {
82
- ref: ref => {
83
- if (ref) refs.current[nativeID] = ref;
67
+ ref: r => {
68
+ if (r) refs.current[nativeID] = r;
84
69
  },
85
70
  children: newChildren
86
71
  });
@@ -92,8 +77,45 @@ function GuideWrapper({
92
77
  return child;
93
78
  });
94
79
  };
95
- if (!tour || !active) return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, children);
96
- if (!step) return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, attachRefs(children));
80
+
81
+ // Efficient measuring: only runs when tour is active
82
+ (0, _react.useEffect)(() => {
83
+ if (!active || !step) return;
84
+ const measureStep = () => {
85
+ if (!stepRef || !containerRef.current) return;
86
+ if (_reactNative.Platform.OS === "web") {
87
+ const containerRect = containerRef.current.getBoundingClientRect();
88
+ const rect = stepRef.getBoundingClientRect();
89
+ setLayout({
90
+ x: rect.left - containerRect.left,
91
+ y: rect.top - containerRect.top,
92
+ width: rect.width,
93
+ height: rect.height
94
+ });
95
+ } else {
96
+ const handle = (0, _reactNative.findNodeHandle)(stepRef);
97
+ const containerHandle = (0, _reactNative.findNodeHandle)(containerRef.current);
98
+ if (!handle || !containerHandle) return;
99
+ _reactNative.UIManager.measureLayout(handle, containerHandle, () => console.log("measureLayout failed"), (x, y, width, height) => setLayout({
100
+ x,
101
+ y,
102
+ width,
103
+ height
104
+ }));
105
+ }
106
+ };
107
+
108
+ // Ensure component is mounted
109
+ setTimeout(measureStep, 0);
110
+
111
+ // Web: re-measure on window resize
112
+ if (_reactNative.Platform.OS === "web") {
113
+ const resizeHandler = () => measureStep();
114
+ window.addEventListener("resize", resizeHandler);
115
+ return () => window.removeEventListener("resize", resizeHandler);
116
+ }
117
+ return;
118
+ }, [active, currentStep, step]);
97
119
  const handleNext = () => {
98
120
  if (currentStep + 1 < sortedTour.length) {
99
121
  setCurrentStep(currentStep + 1);
@@ -104,114 +126,111 @@ function GuideWrapper({
104
126
  const handlePrev = () => {
105
127
  if (currentStep > 0) setCurrentStep(currentStep - 1);
106
128
  };
107
- if (!layout) return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, attachRefs(children));
129
+ if (!tour) return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, children);
130
+ if (!layout || !active || !step) return /*#__PURE__*/_react.default.createElement(_Themed.View, {
131
+ ref: containerRef
132
+ }, attachRefs(children));
133
+ const MIN_WIDTH = 300;
134
+ const right = layout.x + MIN_WIDTH > containerLayout.width;
108
135
  const isLastStep = currentStep === sortedTour.length - 1;
109
136
  return /*#__PURE__*/_react.default.createElement(_Themed.View, {
110
- style: {
111
- flexGrow: 1
112
- },
137
+ ref: containerRef,
113
138
  onLayout: ev => {
114
139
  const l = ev.nativeEvent.layout;
115
140
  setContainerLayout({
116
- height: l.height,
117
- width: l.width,
118
141
  x: l.x,
119
- y: l.y
142
+ y: l.y,
143
+ width: l.width,
144
+ height: l.height
120
145
  });
146
+ },
147
+ style: {
148
+ flex: 1
121
149
  }
122
150
  }, attachRefs(children), /*#__PURE__*/_react.default.createElement(_Themed.View, {
123
- transparent: true,
151
+ pointerEvents: "none",
124
152
  style: {
125
- position: 'absolute',
153
+ position: "absolute",
126
154
  zIndex: 9999999,
127
155
  borderWidth: 2,
128
156
  borderColor: Colors.text.success,
129
157
  borderRadius: 4,
130
158
  top: layout.y - 5,
131
159
  left: layout.x - 5,
132
- width: layout.width + 5,
160
+ width: layout.width + 10,
133
161
  height: layout.height + 10
134
162
  }
135
- }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
136
- float: true,
163
+ }), /*#__PURE__*/_react.default.createElement(_Themed.View, {
164
+ onLayout: ev => setTooltipHeight(ev.nativeEvent.layout.height),
137
165
  style: {
138
- position: 'absolute',
139
- maxWidth: width - 10,
166
+ position: "absolute",
167
+ maxWidth: screenWidth - 10,
140
168
  minWidth: 300,
141
169
  borderColor: Colors.text.success,
142
- bottom: 0 + layout.height + 15,
143
- left: right ? undefined : layout.x + 5,
144
- right: right ? 5 : undefined
170
+ borderWidth: 1,
171
+ borderRadius: 8,
172
+ padding: 10,
173
+ top: layout.y - tooltipHeight - 10,
174
+ // 10px margin above overlay
175
+ left: right ? undefined : layout.x,
176
+ right: right ? 5 : undefined,
177
+ zIndex: 99999999
145
178
  }
146
- }, step.title ? /*#__PURE__*/_react.default.createElement(_Themed.View, {
147
- type: "header",
179
+ }, step.title && /*#__PURE__*/_react.default.createElement(_Themed.View, {
148
180
  style: {
149
- flexDirection: 'row',
150
- alignItems: 'center',
151
- padding: 10,
152
- borderTopRightRadius: 8,
153
- borderTopLeftRadius: 8
181
+ flexDirection: "row",
182
+ alignItems: "center",
183
+ marginBottom: 5
154
184
  }
155
185
  }, /*#__PURE__*/_react.default.createElement(_Components.Icons.AlertIcon, {
156
186
  size: 14,
157
187
  color: Colors.text.warning
158
- }), /*#__PURE__*/_react.default.createElement(_Themed.View, {
159
- transparent: true,
188
+ }), /*#__PURE__*/_react.default.createElement(_Themed.Text, {
189
+ theme: "h1",
160
190
  style: {
161
191
  flex: 1,
162
192
  marginLeft: 10,
163
- marginRight: 10,
164
- borderLeftWidth: 1,
165
- borderColor: Colors.borders.light
193
+ marginRight: 10
166
194
  }
167
- }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
168
- theme: "h1"
169
- }, step.title)), /*#__PURE__*/_react.default.createElement(_Themed.Button, {
195
+ }, step.title), /*#__PURE__*/_react.default.createElement(_Themed.Button, {
170
196
  style: {
171
197
  height: 30,
172
198
  width: 30,
173
199
  borderRadius: 100,
174
200
  padding: 0,
175
- justifyContent: 'center',
176
- alignItems: 'center'
201
+ justifyContent: "center",
202
+ alignItems: "center"
177
203
  },
178
204
  title: "X",
179
205
  type: "error",
180
- onPress: () => onComplete ? onComplete('cancelled') : console.log('')
181
- })) : /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null), step.body ? /*#__PURE__*/_react.default.createElement(_Themed.View, {
182
- type: "body",
206
+ onPress: () => onComplete ? onComplete("cancelled") : null
207
+ })), step.body && /*#__PURE__*/_react.default.createElement(_Themed.View, {
183
208
  style: {
184
- padding: 5
209
+ paddingVertical: 5
185
210
  }
186
211
  }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
187
212
  theme: "h2"
188
- }, step.body)) : /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null), /*#__PURE__*/_react.default.createElement(_Themed.View, {
189
- type: "footer",
213
+ }, step.body)), /*#__PURE__*/_react.default.createElement(_Themed.View, {
190
214
  style: {
191
- flexDirection: 'row',
192
- alignItems: 'center',
193
- padding: 10,
194
- borderBottomRightRadius: 8,
195
- borderBottomLeftRadius: 8
215
+ flexDirection: "row",
216
+ alignItems: "center",
217
+ marginTop: 5
196
218
  }
197
219
  }, currentStep > 0 && /*#__PURE__*/_react.default.createElement(_Themed.Button, {
198
220
  type: "action",
199
221
  onPress: handlePrev,
200
222
  style: {
201
- padding: 10,
202
223
  flex: 1,
203
- margin: 2
224
+ marginRight: 5
204
225
  },
205
226
  title: "BACK"
206
227
  }), !step.clickable && /*#__PURE__*/_react.default.createElement(_Themed.Button, {
207
228
  type: "success",
229
+ onPress: handleNext,
208
230
  style: {
209
- padding: 10,
210
- flex: 1,
211
- margin: 2
231
+ flex: 1
212
232
  },
213
- onPress: handleNext,
214
233
  title: isLastStep ? "Done" : "Next"
215
- })))));
234
+ }))));
216
235
  }
217
236
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_Themed","_useColors","_Components","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","GuideWrapper","children","guide","Colors","useColors","wrapper_guid","tour","active","onComplete","refs","useRef","currentStep","setCurrentStep","useState","layout","setLayout","container_layout","setContainerLayout","height","width","x","y","useWindowDimensions","MIN_WIDTH","right","right_side","sortedTour","sort","a","b","priority","step","ref","current","nativeID","undefined","useEffect","Platform","OS","rect","getBoundingClientRect","left","top","measure","pageX","pageY","attachRefs","nodes","React","Children","map","child","isValidElement","props","newChildren","cloneElement","createElement","Fragment","handleNext","length","handlePrev","isLastStep","View","style","flexGrow","onLayout","ev","l","nativeEvent","transparent","position","zIndex","borderWidth","borderColor","text","success","borderRadius","float","maxWidth","minWidth","bottom","title","type","flexDirection","alignItems","padding","borderTopRightRadius","borderTopLeftRadius","Icons","AlertIcon","size","color","warning","flex","marginLeft","marginRight","borderLeftWidth","borders","light","Text","theme","Button","justifyContent","onPress","console","log","body","borderBottomRightRadius","borderBottomLeftRadius","margin","clickable"],"sourceRoot":"../../../src","sources":["Guide/index.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_Themed","_useColors","_Components","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","GuideWrapper","children","guide","Colors","useColors","wrapper_guid","tour","active","onComplete","refs","useRef","containerRef","currentStep","setCurrentStep","useState","layout","setLayout","containerLayout","setContainerLayout","x","y","width","height","tooltipHeight","setTooltipHeight","screenWidth","useWindowDimensions","sortedTour","sort","a","b","priority","step","stepRef","current","nativeID","undefined","isTouchable","child","typeName","type","displayName","TouchableOpacity","TouchableHighlight","TouchableWithoutFeedback","startsWith","attachRefs","nodes","React","Children","map","isValidElement","props","newChildren","createElement","View","ref","style","flex","cloneElement","useEffect","measureStep","Platform","OS","containerRect","getBoundingClientRect","rect","left","top","handle","findNodeHandle","containerHandle","UIManager","measureLayout","console","log","setTimeout","resizeHandler","window","addEventListener","removeEventListener","handleNext","length","handlePrev","Fragment","MIN_WIDTH","right","isLastStep","onLayout","ev","l","nativeEvent","pointerEvents","position","zIndex","borderWidth","borderColor","text","success","borderRadius","maxWidth","minWidth","padding","title","flexDirection","alignItems","marginBottom","Icons","AlertIcon","size","color","warning","Text","theme","marginLeft","marginRight","Button","justifyContent","onPress","body","paddingVertical","marginTop","clickable"],"sourceRoot":"../../../src","sources":["Guide/index.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAUA,IAAAE,OAAA,GAAAF,OAAA;AACA,IAAAG,UAAA,GAAAH,OAAA;AACA,IAAAI,WAAA,GAAAJ,OAAA;AAAsC,SAAAD,wBAAAM,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAR,uBAAA,YAAAA,CAAAM,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AASvB,SAASkB,YAAYA,CAAC;EAAEC,QAAQ;EAAEC;AAAyB,CAAC,EAAE;EAC3E,MAAMC,MAAM,GAAG,IAAAC,oBAAS,EAAC,CAAC;EAC1B,MAAMC,YAAY,GAAGH,KAAK,IAAI,CAAC,CAAC;EAChC,MAAM;IAAEI,IAAI;IAAEC,MAAM;IAAEC;EAAW,CAAC,GAAGH,YAAY;EAEjD,MAAMI,IAAI,GAAG,IAAAC,aAAM,EAAyB,CAAC,CAAC,CAAC;EAC/C,MAAMC,YAAY,GAAG,IAAAD,aAAM,EAAM,IAAI,CAAC;EAEtC,MAAM,CAACE,WAAW,EAAEC,cAAc,CAAC,GAAG,IAAAC,eAAQ,EAAC,CAAC,CAAC;EACjD,MAAM,CAACC,MAAM,EAAEC,SAAS,CAAC,GAAG,IAAAF,eAAQ,EAAgB,IAAI,CAAC;EACzD,MAAM,CAACG,eAAe,EAAEC,kBAAkB,CAAC,GAAG,IAAAJ,eAAQ,EAAS;IAC7DK,CAAC,EAAE,CAAC;IACJC,CAAC,EAAE,CAAC;IACJC,KAAK,EAAE,CAAC;IACRC,MAAM,EAAE;EACV,CAAC,CAAC;EACF,MAAM,CAACC,aAAa,EAAEC,gBAAgB,CAAC,GAAG,IAAAV,eAAQ,EAAC,CAAC,CAAC;EAErD,MAAM;IAAEO,KAAK,EAAEI;EAAY,CAAC,GAAG,IAAAC,gCAAmB,EAAC,CAAC;EAEpD,MAAMC,UAAU,GAAGrB,IAAI,GACnB,CAAC,GAAGA,IAAI,CAAC,CAACsB,IAAI,CAAC,CAACC,CAAC,EAAEC,CAAC,KAAK,CAACD,CAAC,CAACE,QAAQ,IAAI,CAAC,KAAKD,CAAC,CAACC,QAAQ,IAAI,CAAC,CAAC,CAAC,GAC/D,EAAE;EACN,MAAMC,IAAI,GAAGL,UAAU,CAACf,WAAW,CAAC;EACpC,MAAMqB,OAAO,GAAGD,IAAI,GAAGvB,IAAI,CAACyB,OAAO,CAACF,IAAI,CAACG,QAAQ,CAAC,GAAGC,SAAS;EAE9D,MAAMC,WAAW,GAAIC,KAAU,IAAK;IAClC,MAAMC,QAAQ,GAAID,KAAK,CAACE,IAAI,EAAUC,WAAW,IAAIH,KAAK,CAACE,IAAI;IAC/D,OACEF,KAAK,CAACE,IAAI,KAAKE,6BAAgB,IAC/BJ,KAAK,CAACE,IAAI,KAAKG,+BAAkB,IACjCL,KAAK,CAACE,IAAI,KAAKI,qCAAwB,IACtC,OAAOL,QAAQ,KAAK,QAAQ,IAAIA,QAAQ,CAACM,UAAU,CAAC,WAAW,CAAE;EAEtE,CAAC;;EAED;EACA,MAAMC,UAAU,GAAIC,KAAsB,IAAsB;IAC9D,OAAOC,cAAK,CAACC,QAAQ,CAACC,GAAG,CAACH,KAAK,EAAGT,KAAK,IAAK;MAC1C,IAAI,eAACU,cAAK,CAACG,cAAc,CAACb,KAAK,CAAC,EAAE,OAAOA,KAAK;MAE9C,MAAMc,KAAK,GAAGd,KAAK,CAACc,KAA0D;MAC9E,MAAMjB,QAAQ,GAAGiB,KAAK,CAACjB,QAAQ;MAC/B,MAAMkB,WAAW,GAAGD,KAAK,CAACnD,QAAQ,GAAG6C,UAAU,CAACM,KAAK,CAACnD,QAAQ,CAAC,GAAGmD,KAAK,CAACnD,QAAQ;MAEhF,IAAIkC,QAAQ,EAAE;QACZ,IAAIE,WAAW,CAACC,KAAK,CAAC,EAAE;UACtB,oBACEhE,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;YACHC,GAAG,EAAGxE,CAAM,IAAK;cACf,IAAIA,CAAC,EAAEyB,IAAI,CAACyB,OAAO,CAACC,QAAQ,CAAC,GAAGnD,CAAC;YACnC,CAAE;YACFyE,KAAK,EAAE;cAAEC,IAAI,EAAE;YAAE;UAAE,gBAElBV,cAAK,CAACW,YAAY,CAACrB,KAAK,EAA6B;YAAErC,QAAQ,EAAEoD;UAAY,CAAQ,CAClF,CAAC;QAEX;QAEA,oBAAOL,cAAK,CAACW,YAAY,CAACrB,KAAK,EAA6B;UAC1DkB,GAAG,EAAGxE,CAAM,IAAK;YACf,IAAIA,CAAC,EAAEyB,IAAI,CAACyB,OAAO,CAACC,QAAQ,CAAC,GAAGnD,CAAC;UACnC,CAAC;UACDiB,QAAQ,EAAEoD;QACZ,CAAQ,CAAC;MACX,CAAC,MAAM,IAAIA,WAAW,KAAKD,KAAK,CAACnD,QAAQ,EAAE;QACzC,oBAAO+C,cAAK,CAACW,YAAY,CAACrB,KAAK,EAA6B;UAAErC,QAAQ,EAAEoD;QAAY,CAAQ,CAAC;MAC/F;MAEA,OAAOf,KAAK;IACd,CAAC,CAAC;EACJ,CAAC;;EAED;EACA,IAAAsB,gBAAS,EAAC,MAAM;IACd,IAAI,CAACrD,MAAM,IAAI,CAACyB,IAAI,EAAE;IAEtB,MAAM6B,WAAW,GAAGA,CAAA,KAAM;MACxB,IAAI,CAAC5B,OAAO,IAAI,CAACtB,YAAY,CAACuB,OAAO,EAAE;MAEvC,IAAI4B,qBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;QACzB,MAAMC,aAAa,GAAGrD,YAAY,CAACuB,OAAO,CAAC+B,qBAAqB,CAAC,CAAC;QAClE,MAAMC,IAAI,GAAGjC,OAAO,CAACgC,qBAAqB,CAAC,CAAC;QAC5CjD,SAAS,CAAC;UACRG,CAAC,EAAE+C,IAAI,CAACC,IAAI,GAAGH,aAAa,CAACG,IAAI;UACjC/C,CAAC,EAAE8C,IAAI,CAACE,GAAG,GAAGJ,aAAa,CAACI,GAAG;UAC/B/C,KAAK,EAAE6C,IAAI,CAAC7C,KAAK;UACjBC,MAAM,EAAE4C,IAAI,CAAC5C;QACf,CAAC,CAAC;MACJ,CAAC,MAAM;QACL,MAAM+C,MAAM,GAAG,IAAAC,2BAAc,EAACrC,OAAO,CAAC;QACtC,MAAMsC,eAAe,GAAG,IAAAD,2BAAc,EAAC3D,YAAY,CAACuB,OAAO,CAAC;QAC5D,IAAI,CAACmC,MAAM,IAAI,CAACE,eAAe,EAAE;QAEjCC,sBAAS,CAACC,aAAa,CACrBJ,MAAM,EACNE,eAAe,EACf,MAAMG,OAAO,CAACC,GAAG,CAAC,sBAAsB,CAAC,EACzC,CAACxD,CAAS,EAAEC,CAAS,EAAEC,KAAa,EAAEC,MAAc,KAClDN,SAAS,CAAC;UAAEG,CAAC;UAAEC,CAAC;UAAEC,KAAK;UAAEC;QAAO,CAAC,CACrC,CAAC;MACH;IACF,CAAC;;IAED;IACAsD,UAAU,CAACf,WAAW,EAAE,CAAC,CAAC;;IAE1B;IACA,IAAIC,qBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;MACzB,MAAMc,aAAa,GAAGA,CAAA,KAAMhB,WAAW,CAAC,CAAC;MACzCiB,MAAM,CAACC,gBAAgB,CAAC,QAAQ,EAAEF,aAAa,CAAC;MAChD,OAAO,MAAMC,MAAM,CAACE,mBAAmB,CAAC,QAAQ,EAAEH,aAAa,CAAC;IAClE;IACA;EACF,CAAC,EAAE,CAACtE,MAAM,EAAEK,WAAW,EAAEoB,IAAI,CAAC,CAAC;EAE/B,MAAMiD,UAAU,GAAGA,CAAA,KAAM;IACvB,IAAIrE,WAAW,GAAG,CAAC,GAAGe,UAAU,CAACuD,MAAM,EAAE;MACvCrE,cAAc,CAACD,WAAW,GAAG,CAAC,CAAC;IACjC,CAAC,MAAM;MACLJ,UAAU,GAAG,UAAU,CAAC;IAC1B;EACF,CAAC;EAED,MAAM2E,UAAU,GAAGA,CAAA,KAAM;IACvB,IAAIvE,WAAW,GAAG,CAAC,EAAEC,cAAc,CAACD,WAAW,GAAG,CAAC,CAAC;EACtD,CAAC;EAED,IAAI,CAACN,IAAI,EAAE,oBAAOhC,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAAhF,MAAA,CAAAiB,OAAA,CAAA6F,QAAA,QAAGnF,QAAW,CAAC;EAEjC,IAAI,CAACc,MAAM,IAAI,CAACR,MAAM,IAAI,CAACyB,IAAI,EAC7B,oBAAO1D,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IAACC,GAAG,EAAE7C;EAAa,GAAEmC,UAAU,CAAC7C,QAAQ,CAAQ,CAAC;EAE/D,MAAMoF,SAAS,GAAG,GAAG;EACrB,MAAMC,KAAK,GAAGvE,MAAM,CAACI,CAAC,GAAGkE,SAAS,GAAGpE,eAAe,CAACI,KAAK;EAC1D,MAAMkE,UAAU,GAAG3E,WAAW,KAAKe,UAAU,CAACuD,MAAM,GAAG,CAAC;EAExD,oBACE5G,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IACHC,GAAG,EAAE7C,YAAa;IAClB6E,QAAQ,EAAGC,EAAE,IAAK;MAChB,MAAMC,CAAC,GAAGD,EAAE,CAACE,WAAW,CAAC5E,MAAM;MAC/BG,kBAAkB,CAAC;QACjBC,CAAC,EAAEuE,CAAC,CAACvE,CAAC;QACNC,CAAC,EAAEsE,CAAC,CAACtE,CAAC;QACNC,KAAK,EAAEqE,CAAC,CAACrE,KAAK;QACdC,MAAM,EAAEoE,CAAC,CAACpE;MACZ,CAAC,CAAC;IACJ,CAAE;IACFmC,KAAK,EAAE;MAAEC,IAAI,EAAE;IAAE;EAAE,GAElBZ,UAAU,CAAC7C,QAAQ,CAAC,eAGrB3B,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IACHqC,aAAa,EAAC,MAAM;IACpBnC,KAAK,EAAE;MACLoC,QAAQ,EAAE,UAAU;MACpBC,MAAM,EAAE,OAAO;MACfC,WAAW,EAAE,CAAC;MACdC,WAAW,EAAE7F,MAAM,CAAC8F,IAAI,CAACC,OAAO;MAChCC,YAAY,EAAE,CAAC;MACf/B,GAAG,EAAErD,MAAM,CAACK,CAAC,GAAG,CAAC;MACjB+C,IAAI,EAAEpD,MAAM,CAACI,CAAC,GAAG,CAAC;MAClBE,KAAK,EAAEN,MAAM,CAACM,KAAK,GAAG,EAAE;MACxBC,MAAM,EAAEP,MAAM,CAACO,MAAM,GAAG;IAC1B;EAAE,CACH,CAAC,eAGFhD,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IACHiC,QAAQ,EAAGC,EAAE,IAAKjE,gBAAgB,CAACiE,EAAE,CAACE,WAAW,CAAC5E,MAAM,CAACO,MAAM,CAAE;IACjEmC,KAAK,EAAE;MACLoC,QAAQ,EAAE,UAAU;MACpBO,QAAQ,EAAE3E,WAAW,GAAG,EAAE;MAC1B4E,QAAQ,EAAE,GAAG;MACbL,WAAW,EAAE7F,MAAM,CAAC8F,IAAI,CAACC,OAAO;MAChCH,WAAW,EAAE,CAAC;MACdI,YAAY,EAAE,CAAC;MACfG,OAAO,EAAE,EAAE;MACXlC,GAAG,EAAErD,MAAM,CAACK,CAAC,GAAGG,aAAa,GAAG,EAAE;MAAE;MACpC4C,IAAI,EAAEmB,KAAK,GAAGlD,SAAS,GAAGrB,MAAM,CAACI,CAAC;MAClCmE,KAAK,EAAEA,KAAK,GAAG,CAAC,GAAGlD,SAAS;MAC5B0D,MAAM,EAAE;IACV;EAAE,GAED9D,IAAI,CAACuE,KAAK,iBACTjI,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IAACE,KAAK,EAAE;MAAE+C,aAAa,EAAE,KAAK;MAAEC,UAAU,EAAE,QAAQ;MAAEC,YAAY,EAAE;IAAE;EAAE,gBAC3EpI,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC1E,WAAA,CAAA+H,KAAK,CAACC,SAAS;IAACC,IAAI,EAAE,EAAG;IAACC,KAAK,EAAE3G,MAAM,CAAC8F,IAAI,CAACc;EAAQ,CAAE,CAAC,eACzDzI,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAAsI,IAAI;IAACC,KAAK,EAAC,IAAI;IAACxD,KAAK,EAAE;MAAEC,IAAI,EAAE,CAAC;MAAEwD,UAAU,EAAE,EAAE;MAAEC,WAAW,EAAE;IAAG;EAAE,GAClEnF,IAAI,CAACuE,KACF,CAAC,eACPjI,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA0I,MAAM;IACL3D,KAAK,EAAE;MACLnC,MAAM,EAAE,EAAE;MACVD,KAAK,EAAE,EAAE;MACT8E,YAAY,EAAE,GAAG;MACjBG,OAAO,EAAE,CAAC;MACVe,cAAc,EAAE,QAAQ;MACxBZ,UAAU,EAAE;IACd,CAAE;IACFF,KAAK,EAAC,GAAG;IACT/D,IAAI,EAAC,OAAO;IACZ8E,OAAO,EAAEA,CAAA,KAAO9G,UAAU,GAAGA,UAAU,CAAC,WAAW,CAAC,GAAG;EAAM,CAC9D,CACG,CACP,EAEAwB,IAAI,CAACuF,IAAI,iBACRjJ,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IAACE,KAAK,EAAE;MAAE+D,eAAe,EAAE;IAAE;EAAE,gBAClClJ,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAAsI,IAAI;IAACC,KAAK,EAAC;EAAI,GAAEjF,IAAI,CAACuF,IAAW,CAC9B,CACP,eAEDjJ,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA6E,IAAI;IAACE,KAAK,EAAE;MAAE+C,aAAa,EAAE,KAAK;MAAEC,UAAU,EAAE,QAAQ;MAAEgB,SAAS,EAAE;IAAE;EAAE,GACvE7G,WAAW,GAAG,CAAC,iBACdtC,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA0I,MAAM;IAAC5E,IAAI,EAAC,QAAQ;IAAC8E,OAAO,EAAEnC,UAAW;IAAC1B,KAAK,EAAE;MAAEC,IAAI,EAAE,CAAC;MAAEyD,WAAW,EAAE;IAAE,CAAE;IAACZ,KAAK,EAAC;EAAM,CAAE,CAC9F,EACA,CAACvE,IAAI,CAAC0F,SAAS,iBACdpJ,MAAA,CAAAiB,OAAA,CAAA+D,aAAA,CAAC5E,OAAA,CAAA0I,MAAM;IAAC5E,IAAI,EAAC,SAAS;IAAC8E,OAAO,EAAErC,UAAW;IAACxB,KAAK,EAAE;MAAEC,IAAI,EAAE;IAAE,CAAE;IAAC6C,KAAK,EAAEhB,UAAU,GAAG,MAAM,GAAG;EAAO,CAAE,CAEpG,CACF,CACF,CAAC;AAEX","ignoreList":[]}
@@ -1,5 +1,5 @@
1
1
  import React, { useRef, useState, useEffect } from "react";
2
- import { Platform, useWindowDimensions } from "react-native";
2
+ import { Platform, useWindowDimensions, UIManager, findNodeHandle, TouchableOpacity, TouchableHighlight, TouchableWithoutFeedback } from "react-native";
3
3
  import { Button, Text, View } from "../Components/Themed";
4
4
  import { useColors } from "../constants/useColors";
5
5
  import { Icons } from "../Components";
@@ -15,65 +15,50 @@ export default function GuideWrapper({
15
15
  onComplete
16
16
  } = wrapper_guid;
17
17
  const refs = useRef({});
18
+ const containerRef = useRef(null);
18
19
  const [currentStep, setCurrentStep] = useState(0);
19
20
  const [layout, setLayout] = useState(null);
20
- const [container_layout, setContainerLayout] = useState({
21
- height: 0,
22
- width: 0,
21
+ const [containerLayout, setContainerLayout] = useState({
23
22
  x: 0,
24
- y: 0
23
+ y: 0,
24
+ width: 0,
25
+ height: 0
25
26
  });
27
+ const [tooltipHeight, setTooltipHeight] = useState(0);
26
28
  const {
27
- width
29
+ width: screenWidth
28
30
  } = useWindowDimensions();
29
- //Check if it is negative
30
- const MIN_WIDTH = 300;
31
- let right = false;
32
- if (layout) {
33
- let right_side = layout.x + MIN_WIDTH;
34
- if (right_side > container_layout.width) {
35
- right = true;
36
- }
37
- //Check if it goes over the bottom
38
- }
39
31
  const sortedTour = tour ? [...tour].sort((a, b) => (a.priority ?? 0) - (b.priority ?? 0)) : [];
40
32
  const step = sortedTour[currentStep];
41
- const ref = step ? refs.current[step.nativeID] : undefined;
42
-
43
- // Measure the current step element
44
- useEffect(() => {
45
- if (!step || !ref || !active) return;
46
- if (Platform.OS === "web") {
47
- const rect = ref.getBoundingClientRect();
48
- setLayout({
49
- x: rect.left - container_layout.x,
50
- y: rect.top - container_layout.y,
51
- width: rect.width,
52
- height: rect.height
53
- });
54
- } else if (ref && typeof ref.measure === "function") {
55
- ref.measure((width, height, pageX, pageY) => {
56
- setLayout({
57
- x: pageX,
58
- y: pageY,
59
- width,
60
- height
61
- });
62
- });
63
- }
64
- }, [active, currentStep, step, ref, container_layout.x]);
33
+ const stepRef = step ? refs.current[step.nativeID] : undefined;
34
+ const isTouchable = child => {
35
+ const typeName = child.type?.displayName || child.type;
36
+ return child.type === TouchableOpacity || child.type === TouchableHighlight || child.type === TouchableWithoutFeedback || typeof typeName === "string" && typeName.startsWith("Touchable");
37
+ };
65
38
 
66
39
  // Recursively attach refs to children with nativeID
67
40
  const attachRefs = nodes => {
68
41
  return React.Children.map(nodes, child => {
69
42
  if (! /*#__PURE__*/React.isValidElement(child)) return child;
70
- const props = child.props || {};
43
+ const props = child.props;
71
44
  const nativeID = props.nativeID;
72
45
  const newChildren = props.children ? attachRefs(props.children) : props.children;
73
46
  if (nativeID) {
47
+ if (isTouchable(child)) {
48
+ return /*#__PURE__*/React.createElement(View, {
49
+ ref: r => {
50
+ if (r) refs.current[nativeID] = r;
51
+ },
52
+ style: {
53
+ flex: 0
54
+ }
55
+ }, /*#__PURE__*/React.cloneElement(child, {
56
+ children: newChildren
57
+ }));
58
+ }
74
59
  return /*#__PURE__*/React.cloneElement(child, {
75
- ref: ref => {
76
- if (ref) refs.current[nativeID] = ref;
60
+ ref: r => {
61
+ if (r) refs.current[nativeID] = r;
77
62
  },
78
63
  children: newChildren
79
64
  });
@@ -85,8 +70,45 @@ export default function GuideWrapper({
85
70
  return child;
86
71
  });
87
72
  };
88
- if (!tour || !active) return /*#__PURE__*/React.createElement(React.Fragment, null, children);
89
- if (!step) return /*#__PURE__*/React.createElement(React.Fragment, null, attachRefs(children));
73
+
74
+ // Efficient measuring: only runs when tour is active
75
+ useEffect(() => {
76
+ if (!active || !step) return;
77
+ const measureStep = () => {
78
+ if (!stepRef || !containerRef.current) return;
79
+ if (Platform.OS === "web") {
80
+ const containerRect = containerRef.current.getBoundingClientRect();
81
+ const rect = stepRef.getBoundingClientRect();
82
+ setLayout({
83
+ x: rect.left - containerRect.left,
84
+ y: rect.top - containerRect.top,
85
+ width: rect.width,
86
+ height: rect.height
87
+ });
88
+ } else {
89
+ const handle = findNodeHandle(stepRef);
90
+ const containerHandle = findNodeHandle(containerRef.current);
91
+ if (!handle || !containerHandle) return;
92
+ UIManager.measureLayout(handle, containerHandle, () => console.log("measureLayout failed"), (x, y, width, height) => setLayout({
93
+ x,
94
+ y,
95
+ width,
96
+ height
97
+ }));
98
+ }
99
+ };
100
+
101
+ // Ensure component is mounted
102
+ setTimeout(measureStep, 0);
103
+
104
+ // Web: re-measure on window resize
105
+ if (Platform.OS === "web") {
106
+ const resizeHandler = () => measureStep();
107
+ window.addEventListener("resize", resizeHandler);
108
+ return () => window.removeEventListener("resize", resizeHandler);
109
+ }
110
+ return;
111
+ }, [active, currentStep, step]);
90
112
  const handleNext = () => {
91
113
  if (currentStep + 1 < sortedTour.length) {
92
114
  setCurrentStep(currentStep + 1);
@@ -97,114 +119,111 @@ export default function GuideWrapper({
97
119
  const handlePrev = () => {
98
120
  if (currentStep > 0) setCurrentStep(currentStep - 1);
99
121
  };
100
- if (!layout) return /*#__PURE__*/React.createElement(React.Fragment, null, attachRefs(children));
122
+ if (!tour) return /*#__PURE__*/React.createElement(React.Fragment, null, children);
123
+ if (!layout || !active || !step) return /*#__PURE__*/React.createElement(View, {
124
+ ref: containerRef
125
+ }, attachRefs(children));
126
+ const MIN_WIDTH = 300;
127
+ const right = layout.x + MIN_WIDTH > containerLayout.width;
101
128
  const isLastStep = currentStep === sortedTour.length - 1;
102
129
  return /*#__PURE__*/React.createElement(View, {
103
- style: {
104
- flexGrow: 1
105
- },
130
+ ref: containerRef,
106
131
  onLayout: ev => {
107
132
  const l = ev.nativeEvent.layout;
108
133
  setContainerLayout({
109
- height: l.height,
110
- width: l.width,
111
134
  x: l.x,
112
- y: l.y
135
+ y: l.y,
136
+ width: l.width,
137
+ height: l.height
113
138
  });
139
+ },
140
+ style: {
141
+ flex: 1
114
142
  }
115
143
  }, attachRefs(children), /*#__PURE__*/React.createElement(View, {
116
- transparent: true,
144
+ pointerEvents: "none",
117
145
  style: {
118
- position: 'absolute',
146
+ position: "absolute",
119
147
  zIndex: 9999999,
120
148
  borderWidth: 2,
121
149
  borderColor: Colors.text.success,
122
150
  borderRadius: 4,
123
151
  top: layout.y - 5,
124
152
  left: layout.x - 5,
125
- width: layout.width + 5,
153
+ width: layout.width + 10,
126
154
  height: layout.height + 10
127
155
  }
128
- }, /*#__PURE__*/React.createElement(View, {
129
- float: true,
156
+ }), /*#__PURE__*/React.createElement(View, {
157
+ onLayout: ev => setTooltipHeight(ev.nativeEvent.layout.height),
130
158
  style: {
131
- position: 'absolute',
132
- maxWidth: width - 10,
159
+ position: "absolute",
160
+ maxWidth: screenWidth - 10,
133
161
  minWidth: 300,
134
162
  borderColor: Colors.text.success,
135
- bottom: 0 + layout.height + 15,
136
- left: right ? undefined : layout.x + 5,
137
- right: right ? 5 : undefined
163
+ borderWidth: 1,
164
+ borderRadius: 8,
165
+ padding: 10,
166
+ top: layout.y - tooltipHeight - 10,
167
+ // 10px margin above overlay
168
+ left: right ? undefined : layout.x,
169
+ right: right ? 5 : undefined,
170
+ zIndex: 99999999
138
171
  }
139
- }, step.title ? /*#__PURE__*/React.createElement(View, {
140
- type: "header",
172
+ }, step.title && /*#__PURE__*/React.createElement(View, {
141
173
  style: {
142
- flexDirection: 'row',
143
- alignItems: 'center',
144
- padding: 10,
145
- borderTopRightRadius: 8,
146
- borderTopLeftRadius: 8
174
+ flexDirection: "row",
175
+ alignItems: "center",
176
+ marginBottom: 5
147
177
  }
148
178
  }, /*#__PURE__*/React.createElement(Icons.AlertIcon, {
149
179
  size: 14,
150
180
  color: Colors.text.warning
151
- }), /*#__PURE__*/React.createElement(View, {
152
- transparent: true,
181
+ }), /*#__PURE__*/React.createElement(Text, {
182
+ theme: "h1",
153
183
  style: {
154
184
  flex: 1,
155
185
  marginLeft: 10,
156
- marginRight: 10,
157
- borderLeftWidth: 1,
158
- borderColor: Colors.borders.light
186
+ marginRight: 10
159
187
  }
160
- }, /*#__PURE__*/React.createElement(Text, {
161
- theme: "h1"
162
- }, step.title)), /*#__PURE__*/React.createElement(Button, {
188
+ }, step.title), /*#__PURE__*/React.createElement(Button, {
163
189
  style: {
164
190
  height: 30,
165
191
  width: 30,
166
192
  borderRadius: 100,
167
193
  padding: 0,
168
- justifyContent: 'center',
169
- alignItems: 'center'
194
+ justifyContent: "center",
195
+ alignItems: "center"
170
196
  },
171
197
  title: "X",
172
198
  type: "error",
173
- onPress: () => onComplete ? onComplete('cancelled') : console.log('')
174
- })) : /*#__PURE__*/React.createElement(React.Fragment, null), step.body ? /*#__PURE__*/React.createElement(View, {
175
- type: "body",
199
+ onPress: () => onComplete ? onComplete("cancelled") : null
200
+ })), step.body && /*#__PURE__*/React.createElement(View, {
176
201
  style: {
177
- padding: 5
202
+ paddingVertical: 5
178
203
  }
179
204
  }, /*#__PURE__*/React.createElement(Text, {
180
205
  theme: "h2"
181
- }, step.body)) : /*#__PURE__*/React.createElement(React.Fragment, null), /*#__PURE__*/React.createElement(View, {
182
- type: "footer",
206
+ }, step.body)), /*#__PURE__*/React.createElement(View, {
183
207
  style: {
184
- flexDirection: 'row',
185
- alignItems: 'center',
186
- padding: 10,
187
- borderBottomRightRadius: 8,
188
- borderBottomLeftRadius: 8
208
+ flexDirection: "row",
209
+ alignItems: "center",
210
+ marginTop: 5
189
211
  }
190
212
  }, currentStep > 0 && /*#__PURE__*/React.createElement(Button, {
191
213
  type: "action",
192
214
  onPress: handlePrev,
193
215
  style: {
194
- padding: 10,
195
216
  flex: 1,
196
- margin: 2
217
+ marginRight: 5
197
218
  },
198
219
  title: "BACK"
199
220
  }), !step.clickable && /*#__PURE__*/React.createElement(Button, {
200
221
  type: "success",
222
+ onPress: handleNext,
201
223
  style: {
202
- padding: 10,
203
- flex: 1,
204
- margin: 2
224
+ flex: 1
205
225
  },
206
- onPress: handleNext,
207
226
  title: isLastStep ? "Done" : "Next"
208
- })))));
227
+ }))));
209
228
  }
210
229
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["React","useRef","useState","useEffect","Platform","useWindowDimensions","Button","Text","View","useColors","Icons","GuideWrapper","children","guide","Colors","wrapper_guid","tour","active","onComplete","refs","currentStep","setCurrentStep","layout","setLayout","container_layout","setContainerLayout","height","width","x","y","MIN_WIDTH","right","right_side","sortedTour","sort","a","b","priority","step","ref","current","nativeID","undefined","OS","rect","getBoundingClientRect","left","top","measure","pageX","pageY","attachRefs","nodes","Children","map","child","isValidElement","props","newChildren","cloneElement","createElement","Fragment","handleNext","length","handlePrev","isLastStep","style","flexGrow","onLayout","ev","l","nativeEvent","transparent","position","zIndex","borderWidth","borderColor","text","success","borderRadius","float","maxWidth","minWidth","bottom","title","type","flexDirection","alignItems","padding","borderTopRightRadius","borderTopLeftRadius","AlertIcon","size","color","warning","flex","marginLeft","marginRight","borderLeftWidth","borders","light","theme","justifyContent","onPress","console","log","body","borderBottomRightRadius","borderBottomLeftRadius","margin","clickable"],"sourceRoot":"../../../src","sources":["Guide/index.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useRef","useState","useEffect","Platform","useWindowDimensions","UIManager","findNodeHandle","TouchableOpacity","TouchableHighlight","TouchableWithoutFeedback","Button","Text","View","useColors","Icons","GuideWrapper","children","guide","Colors","wrapper_guid","tour","active","onComplete","refs","containerRef","currentStep","setCurrentStep","layout","setLayout","containerLayout","setContainerLayout","x","y","width","height","tooltipHeight","setTooltipHeight","screenWidth","sortedTour","sort","a","b","priority","step","stepRef","current","nativeID","undefined","isTouchable","child","typeName","type","displayName","startsWith","attachRefs","nodes","Children","map","isValidElement","props","newChildren","createElement","ref","r","style","flex","cloneElement","measureStep","OS","containerRect","getBoundingClientRect","rect","left","top","handle","containerHandle","measureLayout","console","log","setTimeout","resizeHandler","window","addEventListener","removeEventListener","handleNext","length","handlePrev","Fragment","MIN_WIDTH","right","isLastStep","onLayout","ev","l","nativeEvent","pointerEvents","position","zIndex","borderWidth","borderColor","text","success","borderRadius","maxWidth","minWidth","padding","title","flexDirection","alignItems","marginBottom","AlertIcon","size","color","warning","theme","marginLeft","marginRight","justifyContent","onPress","body","paddingVertical","marginTop","clickable"],"sourceRoot":"../../../src","sources":["Guide/index.tsx"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/Guide/index.js"],"names":[],"mappings":";;AAYA;;;QA2MC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/Guide/index.js"],"names":[],"mappings":";;AAYA;;;QA8NC"}
@@ -3,6 +3,6 @@ export default function GuideWrapper({ children, guide }: {
3
3
  guide: any;
4
4
  }): React.FunctionComponentElement<{
5
5
  children?: React.ReactNode | undefined;
6
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
6
+ }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | React.FunctionComponentElement<React.RefAttributes<any>>;
7
7
  import React from "react";
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Guide/index.js"],"names":[],"mappings":"AAKA;;;;;mGA2MC;kBAhNkD,OAAO"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Guide/index.js"],"names":[],"mappings":"AAKA;;;;;8JA8NC;kBAnOkD,OAAO"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/Guide/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAK/C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,cAAc,CAAC;CACxB,CAAC;AAIF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,iBAAiB,qBAoK1E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/Guide/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAU3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAK/C,MAAM,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,cAAc,CAAC;CACxB,CAAC;AAIF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,iBAAiB,qBAiO1E"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-components",
3
- "version": "6.5.3",
3
+ "version": "6.5.5",
4
4
  "description": "Components for BettorEdge Apps",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -1,5 +1,13 @@
1
1
  import React, { useRef, useState, useEffect } from "react";
2
- import { Platform, useWindowDimensions } from "react-native";
2
+ import {
3
+ Platform,
4
+ useWindowDimensions,
5
+ UIManager,
6
+ findNodeHandle,
7
+ TouchableOpacity,
8
+ TouchableHighlight,
9
+ TouchableWithoutFeedback,
10
+ } from "react-native";
3
11
  import type { GuideWrapProps } from "../types";
4
12
  import { Button, Text, View } from "../Components/Themed";
5
13
  import { useColors } from "../constants/useColors";
@@ -10,81 +18,123 @@ export type GuideWrapperProps = {
10
18
  guide?: GuideWrapProps;
11
19
  };
12
20
 
13
- type Layout = { x: number; y: number; width: number; height: number };
21
+ type Layout = { x: number; y: number; width: number; height: number };
14
22
 
15
23
  export default function GuideWrapper({ children, guide }: GuideWrapperProps) {
16
- const Colors = useColors();
24
+ const Colors = useColors();
17
25
  const wrapper_guid = guide ?? {};
18
26
  const { tour, active, onComplete } = wrapper_guid;
27
+
19
28
  const refs = useRef<{ [key: string]: any }>({});
29
+ const containerRef = useRef<any>(null);
30
+
20
31
  const [currentStep, setCurrentStep] = useState(0);
21
32
  const [layout, setLayout] = useState<Layout | null>(null);
22
- const [ container_layout, setContainerLayout ] = useState({ height: 0, width:0, x:0, y:0 });
23
- const { width } = useWindowDimensions();
24
- //Check if it is negative
25
- const MIN_WIDTH = 300
26
- let right = false
27
- if(layout){
28
- let right_side = layout.x + MIN_WIDTH
29
- if(right_side > container_layout.width){ right = true }
30
- //Check if it goes over the bottom
31
- }
32
-
33
- const sortedTour = tour ? [...tour].sort((a, b) => (a.priority ?? 0) - (b.priority ?? 0)) : []
33
+ const [containerLayout, setContainerLayout] = useState<Layout>({
34
+ x: 0,
35
+ y: 0,
36
+ width: 0,
37
+ height: 0,
38
+ });
39
+ const [tooltipHeight, setTooltipHeight] = useState(0);
40
+
41
+ const { width: screenWidth } = useWindowDimensions();
42
+
43
+ const sortedTour = tour
44
+ ? [...tour].sort((a, b) => (a.priority ?? 0) - (b.priority ?? 0))
45
+ : [];
34
46
  const step = sortedTour[currentStep];
35
- const ref = step ? refs.current[step.nativeID] : undefined
36
-
37
-
38
- // Measure the current step element
39
- useEffect(() => {
40
- if (!step || !ref || !active) return;
41
-
42
- if (Platform.OS === "web") {
43
- const rect = ref.getBoundingClientRect();
44
- setLayout({
45
- x: rect.left - container_layout.x,
46
- y: rect.top - container_layout.y,
47
- width: rect.width,
48
- height: rect.height
49
- });
50
- } else if (ref && typeof ref.measure === "function") {
51
- ref.measure(
52
- (width: number, height: number, pageX: number, pageY: number) => {
53
- setLayout({ x: pageX, y: pageY, width, height });
54
- }
55
- );
56
- }
57
- }, [active, currentStep, step, ref, container_layout.x]);
47
+ const stepRef = step ? refs.current[step.nativeID] : undefined;
48
+
49
+ const isTouchable = (child: any) => {
50
+ const typeName = (child.type as any)?.displayName || child.type;
51
+ return (
52
+ child.type === TouchableOpacity ||
53
+ child.type === TouchableHighlight ||
54
+ child.type === TouchableWithoutFeedback ||
55
+ (typeof typeName === "string" && typeName.startsWith("Touchable"))
56
+ );
57
+ };
58
58
 
59
59
  // Recursively attach refs to children with nativeID
60
60
  const attachRefs = (nodes: React.ReactNode): React.ReactNode => {
61
- return React.Children.map(nodes, (child: any) => {
61
+ return React.Children.map(nodes, (child) => {
62
62
  if (!React.isValidElement(child)) return child;
63
63
 
64
- const props = (child.props as any) || {};
64
+ const props = child.props as { nativeID?: string; children?: React.ReactNode };
65
65
  const nativeID = props.nativeID;
66
66
  const newChildren = props.children ? attachRefs(props.children) : props.children;
67
67
 
68
68
  if (nativeID) {
69
- return React.cloneElement(child, {
70
- ref: (ref: any) => {
71
- if (ref) refs.current[nativeID] = ref;
69
+ if (isTouchable(child)) {
70
+ return (
71
+ <View
72
+ ref={(r: any) => {
73
+ if (r) refs.current[nativeID] = r;
74
+ }}
75
+ style={{ flex: 0 }}
76
+ >
77
+ {React.cloneElement(child as React.ReactElement<any>, { children: newChildren } as any)}
78
+ </View>
79
+ );
80
+ }
81
+
82
+ return React.cloneElement(child as React.ReactElement<any>, {
83
+ ref: (r: any) => {
84
+ if (r) refs.current[nativeID] = r;
72
85
  },
73
86
  children: newChildren,
74
87
  } as any);
75
88
  } else if (newChildren !== props.children) {
76
- return React.cloneElement(child, { children: newChildren } as any);
89
+ return React.cloneElement(child as React.ReactElement<any>, { children: newChildren } as any);
77
90
  }
78
91
 
79
92
  return child;
80
93
  });
81
94
  };
82
95
 
83
- if (!tour || !active) return <>{children}</>;
84
-
85
- if (!step) return <>{attachRefs(children)}</>;
96
+ // Efficient measuring: only runs when tour is active
97
+ useEffect(() => {
98
+ if (!active || !step) return;
99
+
100
+ const measureStep = () => {
101
+ if (!stepRef || !containerRef.current) return;
102
+
103
+ if (Platform.OS === "web") {
104
+ const containerRect = containerRef.current.getBoundingClientRect();
105
+ const rect = stepRef.getBoundingClientRect();
106
+ setLayout({
107
+ x: rect.left - containerRect.left,
108
+ y: rect.top - containerRect.top,
109
+ width: rect.width,
110
+ height: rect.height,
111
+ });
112
+ } else {
113
+ const handle = findNodeHandle(stepRef);
114
+ const containerHandle = findNodeHandle(containerRef.current);
115
+ if (!handle || !containerHandle) return;
116
+
117
+ UIManager.measureLayout(
118
+ handle,
119
+ containerHandle,
120
+ () => console.log("measureLayout failed"),
121
+ (x: number, y: number, width: number, height: number) =>
122
+ setLayout({ x, y, width, height })
123
+ );
124
+ }
125
+ };
86
126
 
127
+ // Ensure component is mounted
128
+ setTimeout(measureStep, 0);
87
129
 
130
+ // Web: re-measure on window resize
131
+ if (Platform.OS === "web") {
132
+ const resizeHandler = () => measureStep();
133
+ window.addEventListener("resize", resizeHandler);
134
+ return () => window.removeEventListener("resize", resizeHandler);
135
+ }
136
+ return
137
+ }, [active, currentStep, step]);
88
138
 
89
139
  const handleNext = () => {
90
140
  if (currentStep + 1 < sortedTour.length) {
@@ -98,83 +148,101 @@ export default function GuideWrapper({ children, guide }: GuideWrapperProps) {
98
148
  if (currentStep > 0) setCurrentStep(currentStep - 1);
99
149
  };
100
150
 
101
- if (!layout) return <>{attachRefs(children)}</>;
151
+ if (!tour) return <>{children}</>;
152
+
153
+ if (!layout || !active || !step)
154
+ return <View ref={containerRef}>{attachRefs(children)}</View>;
155
+
156
+ const MIN_WIDTH = 300;
157
+ const right = layout.x + MIN_WIDTH > containerLayout.width;
102
158
  const isLastStep = currentStep === sortedTour.length - 1;
159
+
103
160
  return (
104
- <View style={{ flexGrow: 1 }} onLayout={(ev) => {
105
- const l = ev.nativeEvent.layout
106
- setContainerLayout({ height:l.height, width: l.width, x: l.x, y:l.y })
107
- }}>
108
- {/* Attach refs to children */}
161
+ <View
162
+ ref={containerRef}
163
+ onLayout={(ev) => {
164
+ const l = ev.nativeEvent.layout;
165
+ setContainerLayout({
166
+ x: l.x,
167
+ y: l.y,
168
+ width: l.width,
169
+ height: l.height,
170
+ });
171
+ }}
172
+ style={{ flex: 1 }}
173
+ >
109
174
  {attachRefs(children)}
110
-
111
- {/* Highlight border around active element */}
175
+
176
+ {/* Highlight */}
177
+ <View
178
+ pointerEvents="none"
179
+ style={{
180
+ position: "absolute",
181
+ zIndex: 9999999,
182
+ borderWidth: 2,
183
+ borderColor: Colors.text.success,
184
+ borderRadius: 4,
185
+ top: layout.y - 5,
186
+ left: layout.x - 5,
187
+ width: layout.width + 10,
188
+ height: layout.height + 10,
189
+ }}
190
+ />
191
+
192
+ {/* Tooltip: always above overlay */}
112
193
  <View
113
- transparent
194
+ onLayout={(ev) => setTooltipHeight(ev.nativeEvent.layout.height)}
114
195
  style={{
115
- position:'absolute',
116
- zIndex: 9999999,
117
- borderWidth:2,
118
- borderColor:Colors.text.success,
119
- borderRadius:4,
120
- top: layout.y - 5,
121
- left: layout.x - 5,
122
- width: layout.width + 5,
123
- height: layout.height + 10,
124
- }}
196
+ position: "absolute",
197
+ maxWidth: screenWidth - 10,
198
+ minWidth: 300,
199
+ borderColor: Colors.text.success,
200
+ borderWidth: 1,
201
+ borderRadius: 8,
202
+ padding: 10,
203
+ top: layout.y - tooltipHeight - 10, // 10px margin above overlay
204
+ left: right ? undefined : layout.x,
205
+ right: right ? 5 : undefined,
206
+ zIndex: 99999999,
207
+ }}
125
208
  >
126
- <View
127
- float
128
- style={{
129
- position:'absolute',
130
- maxWidth: width - 10,
131
- minWidth:300,
132
- borderColor:Colors.text.success,
133
- bottom: 0 + layout.height + 15,
134
- left: right ? undefined : layout.x + 5,
135
- right: right ? 5 : undefined
136
- }}
137
- >
138
- {step.title ?
139
- <View type='header' style={{ flexDirection:'row', alignItems:'center', padding:10, borderTopRightRadius:8, borderTopLeftRadius:8 }}>
140
- <Icons.AlertIcon size={14} color={Colors.text.warning} />
141
- <View transparent style={{flex:1, marginLeft:10, marginRight:10, borderLeftWidth:1, borderColor:Colors.borders.light}}>
142
- <Text theme="h1">{step.title}</Text>
143
- </View>
144
- <Button
145
- style={{ height:30, width:30, borderRadius:100, padding:0, justifyContent:'center', alignItems:'center' }}
146
- title="X"
147
- type="error"
148
- onPress={() => onComplete ? onComplete('cancelled') : console.log('')}
149
- />
150
- </View>
151
- :<></>}
152
- {step.body ?
153
- <View type="body" style={{ padding:5 }}>
154
- <Text theme="h2">{step.body}</Text>
155
- </View>
156
- :<></>}
157
- <View type='footer' style={{ flexDirection:'row', alignItems:'center', padding:10, borderBottomRightRadius:8, borderBottomLeftRadius:8 }}>
158
- {currentStep > 0 && (
159
- <Button
160
- type='action'
161
- onPress={handlePrev}
162
- style={{ padding:10, flex:1, margin:2 }}
163
- title="BACK"
164
- />
165
- )}
166
- {!step.clickable && (
167
- <Button
168
- type='success'
169
- style={{ padding:10, flex:1, margin:2 }}
170
- onPress={handleNext}
171
- title={isLastStep ? "Done" : "Next"}
172
- />
173
- )}
174
- </View>
209
+ {step.title && (
210
+ <View style={{ flexDirection: "row", alignItems: "center", marginBottom: 5 }}>
211
+ <Icons.AlertIcon size={14} color={Colors.text.warning} />
212
+ <Text theme="h1" style={{ flex: 1, marginLeft: 10, marginRight: 10 }}>
213
+ {step.title}
214
+ </Text>
215
+ <Button
216
+ style={{
217
+ height: 30,
218
+ width: 30,
219
+ borderRadius: 100,
220
+ padding: 0,
221
+ justifyContent: "center",
222
+ alignItems: "center",
223
+ }}
224
+ title="X"
225
+ type="error"
226
+ onPress={() => (onComplete ? onComplete("cancelled") : null)}
227
+ />
228
+ </View>
229
+ )}
230
+
231
+ {step.body && (
232
+ <View style={{ paddingVertical: 5 }}>
233
+ <Text theme="h2">{step.body}</Text>
234
+ </View>
235
+ )}
236
+
237
+ <View style={{ flexDirection: "row", alignItems: "center", marginTop: 5 }}>
238
+ {currentStep > 0 && (
239
+ <Button type="action" onPress={handlePrev} style={{ flex: 1, marginRight: 5 }} title="BACK" />
240
+ )}
241
+ {!step.clickable && (
242
+ <Button type="success" onPress={handleNext} style={{ flex: 1 }} title={isLastStep ? "Done" : "Next"} />
243
+ )}
175
244
  </View>
176
- </View>
245
+ </View>
177
246
  </View>
178
247
  );
179
248
  }
180
-