@chem-po/react-native 0.0.26 → 0.0.27
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.
- package/lib/commonjs/components/form/input/file/index.js +53 -6
- package/lib/commonjs/components/form/input/file/index.js.map +1 -1
- package/lib/commonjs/components/image/ImageViewModal.js +52 -2
- package/lib/commonjs/components/image/ImageViewModal.js.map +1 -1
- package/lib/commonjs/components/loading/LoadingImage.js +8 -2
- package/lib/commonjs/components/loading/LoadingImage.js.map +1 -1
- package/lib/commonjs/utils/downloadFile.js +43 -0
- package/lib/commonjs/utils/downloadFile.js.map +1 -0
- package/lib/module/components/form/input/file/index.js +54 -7
- package/lib/module/components/form/input/file/index.js.map +1 -1
- package/lib/module/components/image/ImageViewModal.js +53 -3
- package/lib/module/components/image/ImageViewModal.js.map +1 -1
- package/lib/module/components/loading/LoadingImage.js +8 -2
- package/lib/module/components/loading/LoadingImage.js.map +1 -1
- package/lib/module/utils/downloadFile.js +35 -0
- package/lib/module/utils/downloadFile.js.map +1 -0
- package/lib/typescript/components/form/input/file/index.d.ts +2 -1
- package/lib/typescript/components/form/input/file/index.d.ts.map +1 -1
- package/lib/typescript/components/image/ImageViewModal.d.ts +3 -0
- package/lib/typescript/components/image/ImageViewModal.d.ts.map +1 -1
- package/lib/typescript/components/loading/LoadingImage.d.ts +4 -1
- package/lib/typescript/components/loading/LoadingImage.d.ts.map +1 -1
- package/lib/typescript/utils/downloadFile.d.ts +4 -0
- package/lib/typescript/utils/downloadFile.d.ts.map +1 -0
- package/package.json +4 -3
- package/src/components/form/input/file/index.tsx +52 -3
- package/src/components/image/ImageViewModal.tsx +57 -2
- package/src/components/loading/LoadingImage.tsx +16 -1
- package/src/utils/downloadFile.ts +36 -0
- package/lib/commonjs/components/image/ImageViewModal.backup.js +0 -285
- package/lib/commonjs/components/image/ImageViewModal.backup.js.map +0 -1
- package/lib/commonjs/components/image/ImageViewModal.old.js +0 -285
- package/lib/commonjs/components/image/ImageViewModal.old.js.map +0 -1
- package/lib/module/components/image/ImageViewModal.backup.js +0 -277
- package/lib/module/components/image/ImageViewModal.backup.js.map +0 -1
- package/lib/module/components/image/ImageViewModal.old.js +0 -277
- package/lib/module/components/image/ImageViewModal.old.js.map +0 -1
- package/lib/typescript/components/image/ImageViewModal.backup.d.ts +0 -9
- package/lib/typescript/components/image/ImageViewModal.backup.d.ts.map +0 -1
- package/lib/typescript/components/image/ImageViewModal.old.d.ts +0 -9
- package/lib/typescript/components/image/ImageViewModal.old.d.ts.map +0 -1
- package/src/components/image/ImageViewModal.backup.tsx +0 -261
- package/src/components/image/ImageViewModal.old.tsx +0 -261
|
@@ -1,285 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.ImageViewModal = void 0;
|
|
7
|
-
var _react = require("@chem-po/react");
|
|
8
|
-
var _vectorIcons = require("@expo/vector-icons");
|
|
9
|
-
var _react2 = _interopRequireWildcard(require("react"));
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
var _reactNativeGestureHandler = require("react-native-gesture-handler");
|
|
12
|
-
var _Loading = require("../loading/Loading");
|
|
13
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
14
|
-
const ImageViewModal = ({
|
|
15
|
-
isOpen,
|
|
16
|
-
onClose,
|
|
17
|
-
src
|
|
18
|
-
}) => {
|
|
19
|
-
const [loading, setLoading] = (0, _react2.useState)(true);
|
|
20
|
-
const screenWidth = (0, _react.useScreen)(s => s.width);
|
|
21
|
-
const screenHeight = (0, _react.useScreen)(s => s.height);
|
|
22
|
-
const [imageSize, setImageSize] = (0, _react2.useState)({
|
|
23
|
-
width: screenWidth / 2,
|
|
24
|
-
height: screenHeight / 2
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
// Animated values for zoom and pan
|
|
28
|
-
const scale = (0, _react2.useRef)(new _reactNative.Animated.Value(1)).current;
|
|
29
|
-
const translateX = (0, _react2.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
30
|
-
const translateY = (0, _react2.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
31
|
-
|
|
32
|
-
// Gesture state
|
|
33
|
-
const savedScale = (0, _react2.useRef)(1);
|
|
34
|
-
const savedTranslateX = (0, _react2.useRef)(0);
|
|
35
|
-
const savedTranslateY = (0, _react2.useRef)(0);
|
|
36
|
-
const currentScale = (0, _react2.useRef)(1);
|
|
37
|
-
const currentTranslateX = (0, _react2.useRef)(0);
|
|
38
|
-
const currentTranslateY = (0, _react2.useRef)(0);
|
|
39
|
-
const {
|
|
40
|
-
height,
|
|
41
|
-
width
|
|
42
|
-
} = (0, _react2.useMemo)(() => {
|
|
43
|
-
if (loading) return imageSize;
|
|
44
|
-
const ratio = imageSize.width / imageSize.height;
|
|
45
|
-
let h = Math.min(imageSize.height, screenHeight * 0.9);
|
|
46
|
-
let w = h * ratio;
|
|
47
|
-
if (w > screenWidth * 0.9) {
|
|
48
|
-
w = Math.min(imageSize.width, screenWidth * 0.9);
|
|
49
|
-
h = w / ratio;
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
height: h,
|
|
53
|
-
width: w
|
|
54
|
-
};
|
|
55
|
-
}, [screenHeight, screenWidth, imageSize, loading]);
|
|
56
|
-
const onLoadStart = (0, _react2.useCallback)(() => setLoading(true), []);
|
|
57
|
-
const onLoad = (0, _react2.useCallback)(e => {
|
|
58
|
-
const {
|
|
59
|
-
width: naturalWidth,
|
|
60
|
-
height: naturalHeight
|
|
61
|
-
} = e.nativeEvent.source;
|
|
62
|
-
setImageSize({
|
|
63
|
-
width: naturalWidth,
|
|
64
|
-
height: naturalHeight
|
|
65
|
-
});
|
|
66
|
-
setLoading(false);
|
|
67
|
-
}, []);
|
|
68
|
-
|
|
69
|
-
// Reset zoom and pan when modal opens/closes
|
|
70
|
-
const resetTransform = (0, _react2.useCallback)(() => {
|
|
71
|
-
scale.setValue(1);
|
|
72
|
-
translateX.setValue(0);
|
|
73
|
-
translateY.setValue(0);
|
|
74
|
-
savedScale.current = 1;
|
|
75
|
-
savedTranslateX.current = 0;
|
|
76
|
-
savedTranslateY.current = 0;
|
|
77
|
-
currentScale.current = 1;
|
|
78
|
-
currentTranslateX.current = 0;
|
|
79
|
-
currentTranslateY.current = 0;
|
|
80
|
-
}, [scale, translateX, translateY]);
|
|
81
|
-
|
|
82
|
-
// Reset when modal closes or src changes
|
|
83
|
-
_react2.default.useEffect(() => {
|
|
84
|
-
if (!isOpen || !src) {
|
|
85
|
-
resetTransform();
|
|
86
|
-
}
|
|
87
|
-
}, [isOpen, src, resetTransform]);
|
|
88
|
-
|
|
89
|
-
// Pan gesture
|
|
90
|
-
const panGesture = _reactNativeGestureHandler.Gesture.Pan().onUpdate(event => {
|
|
91
|
-
// Only allow panning if zoomed in
|
|
92
|
-
if (savedScale.current > 1) {
|
|
93
|
-
const newTranslateX = savedTranslateX.current + event.translationX;
|
|
94
|
-
const newTranslateY = savedTranslateY.current + event.translationY;
|
|
95
|
-
|
|
96
|
-
// Calculate bounds to prevent panning too far
|
|
97
|
-
const maxTranslateX = (width * savedScale.current - width) / 2;
|
|
98
|
-
const maxTranslateY = (height * savedScale.current - height) / 2;
|
|
99
|
-
const boundedTranslateX = Math.max(-maxTranslateX, Math.min(maxTranslateX, newTranslateX));
|
|
100
|
-
const boundedTranslateY = Math.max(-maxTranslateY, Math.min(maxTranslateY, newTranslateY));
|
|
101
|
-
translateX.setValue(boundedTranslateX);
|
|
102
|
-
translateY.setValue(boundedTranslateY);
|
|
103
|
-
currentTranslateX.current = boundedTranslateX;
|
|
104
|
-
currentTranslateY.current = boundedTranslateY;
|
|
105
|
-
}
|
|
106
|
-
}).onEnd(() => {
|
|
107
|
-
savedTranslateX.current = currentTranslateX.current;
|
|
108
|
-
savedTranslateY.current = currentTranslateY.current;
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
// Pinch gesture
|
|
112
|
-
const pinchGesture = _reactNativeGestureHandler.Gesture.Pinch().onUpdate(event => {
|
|
113
|
-
const newScale = savedScale.current * event.scale;
|
|
114
|
-
// Limit zoom between 1x and 5x
|
|
115
|
-
const boundedScale = Math.max(1, Math.min(5, newScale));
|
|
116
|
-
scale.setValue(boundedScale);
|
|
117
|
-
currentScale.current = boundedScale;
|
|
118
|
-
|
|
119
|
-
// If zooming out to 1x, reset position
|
|
120
|
-
if (boundedScale <= 1) {
|
|
121
|
-
translateX.setValue(0);
|
|
122
|
-
translateY.setValue(0);
|
|
123
|
-
currentTranslateX.current = 0;
|
|
124
|
-
currentTranslateY.current = 0;
|
|
125
|
-
}
|
|
126
|
-
}).onEnd(() => {
|
|
127
|
-
savedScale.current = currentScale.current;
|
|
128
|
-
// If scale is close to 1, snap back to 1
|
|
129
|
-
if (savedScale.current < 1.1) {
|
|
130
|
-
_reactNative.Animated.parallel([_reactNative.Animated.spring(scale, {
|
|
131
|
-
toValue: 1,
|
|
132
|
-
useNativeDriver: true
|
|
133
|
-
}), _reactNative.Animated.spring(translateX, {
|
|
134
|
-
toValue: 0,
|
|
135
|
-
useNativeDriver: true
|
|
136
|
-
}), _reactNative.Animated.spring(translateY, {
|
|
137
|
-
toValue: 0,
|
|
138
|
-
useNativeDriver: true
|
|
139
|
-
})]).start();
|
|
140
|
-
savedScale.current = 1;
|
|
141
|
-
savedTranslateX.current = 0;
|
|
142
|
-
savedTranslateY.current = 0;
|
|
143
|
-
currentScale.current = 1;
|
|
144
|
-
currentTranslateX.current = 0;
|
|
145
|
-
currentTranslateY.current = 0;
|
|
146
|
-
} else {
|
|
147
|
-
savedTranslateX.current = currentTranslateX.current;
|
|
148
|
-
savedTranslateY.current = currentTranslateY.current;
|
|
149
|
-
}
|
|
150
|
-
});
|
|
151
|
-
|
|
152
|
-
// Double tap to zoom
|
|
153
|
-
const doubleTapGesture = _reactNativeGestureHandler.Gesture.Tap().numberOfTaps(2).onEnd(() => {
|
|
154
|
-
if (savedScale.current > 1) {
|
|
155
|
-
// Zoom out
|
|
156
|
-
_reactNative.Animated.parallel([_reactNative.Animated.spring(scale, {
|
|
157
|
-
toValue: 1,
|
|
158
|
-
useNativeDriver: true
|
|
159
|
-
}), _reactNative.Animated.spring(translateX, {
|
|
160
|
-
toValue: 0,
|
|
161
|
-
useNativeDriver: true
|
|
162
|
-
}), _reactNative.Animated.spring(translateY, {
|
|
163
|
-
toValue: 0,
|
|
164
|
-
useNativeDriver: true
|
|
165
|
-
})]).start();
|
|
166
|
-
savedScale.current = 1;
|
|
167
|
-
savedTranslateX.current = 0;
|
|
168
|
-
savedTranslateY.current = 0;
|
|
169
|
-
currentScale.current = 1;
|
|
170
|
-
currentTranslateX.current = 0;
|
|
171
|
-
currentTranslateY.current = 0;
|
|
172
|
-
} else {
|
|
173
|
-
// Zoom in to 2x
|
|
174
|
-
_reactNative.Animated.spring(scale, {
|
|
175
|
-
toValue: 2,
|
|
176
|
-
useNativeDriver: true
|
|
177
|
-
}).start();
|
|
178
|
-
savedScale.current = 2;
|
|
179
|
-
currentScale.current = 2;
|
|
180
|
-
}
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
// Test simple single tap gesture
|
|
184
|
-
|
|
185
|
-
// Combine gestures - simplified approach
|
|
186
|
-
const combinedGestures = _reactNativeGestureHandler.Gesture.Race(doubleTapGesture, _reactNativeGestureHandler.Gesture.Simultaneous(panGesture, pinchGesture));
|
|
187
|
-
if (!isOpen) {
|
|
188
|
-
return null;
|
|
189
|
-
}
|
|
190
|
-
return /*#__PURE__*/_react2.default.createElement(_reactNative.Modal, {
|
|
191
|
-
visible: isOpen,
|
|
192
|
-
transparent: true,
|
|
193
|
-
animationType: "fade",
|
|
194
|
-
onRequestClose: onClose
|
|
195
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNativeGestureHandler.GestureHandlerRootView, {
|
|
196
|
-
style: styles.gestureRoot
|
|
197
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
198
|
-
style: styles.modalOverlay
|
|
199
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.TouchableOpacity, {
|
|
200
|
-
style: styles.backgroundTouchable,
|
|
201
|
-
activeOpacity: 1,
|
|
202
|
-
onPress: onClose
|
|
203
|
-
}), /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
204
|
-
style: styles.contentContainer
|
|
205
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNativeGestureHandler.GestureDetector, {
|
|
206
|
-
gesture: combinedGestures
|
|
207
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.Animated.View, {
|
|
208
|
-
style: [styles.imageContainer, {
|
|
209
|
-
width,
|
|
210
|
-
height,
|
|
211
|
-
opacity: loading ? 0 : 1,
|
|
212
|
-
transform: [{
|
|
213
|
-
scale
|
|
214
|
-
}, {
|
|
215
|
-
translateX
|
|
216
|
-
}, {
|
|
217
|
-
translateY
|
|
218
|
-
}]
|
|
219
|
-
}]
|
|
220
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.Image, {
|
|
221
|
-
source: src ? {
|
|
222
|
-
uri: src
|
|
223
|
-
} : undefined,
|
|
224
|
-
style: styles.image,
|
|
225
|
-
onLoadStart: onLoadStart,
|
|
226
|
-
onLoad: onLoad,
|
|
227
|
-
resizeMode: "contain"
|
|
228
|
-
}))), /*#__PURE__*/_react2.default.createElement(_reactNative.TouchableOpacity, {
|
|
229
|
-
style: styles.closeButton,
|
|
230
|
-
onPress: onClose
|
|
231
|
-
}, /*#__PURE__*/_react2.default.createElement(_vectorIcons.Ionicons, {
|
|
232
|
-
name: "close",
|
|
233
|
-
size: 24,
|
|
234
|
-
color: "white"
|
|
235
|
-
})), loading || !src ? /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
236
|
-
style: styles.loadingContainer
|
|
237
|
-
}, /*#__PURE__*/_react2.default.createElement(_Loading.LoadingLogo, {
|
|
238
|
-
isLoading: loading,
|
|
239
|
-
size: 70
|
|
240
|
-
})) : null))));
|
|
241
|
-
};
|
|
242
|
-
exports.ImageViewModal = ImageViewModal;
|
|
243
|
-
const styles = _reactNative.StyleSheet.create({
|
|
244
|
-
gestureRoot: {
|
|
245
|
-
flex: 1
|
|
246
|
-
},
|
|
247
|
-
modalOverlay: {
|
|
248
|
-
flex: 1,
|
|
249
|
-
backgroundColor: 'rgba(0, 0, 0, 0.7)'
|
|
250
|
-
},
|
|
251
|
-
backgroundTouchable: {
|
|
252
|
-
..._reactNative.StyleSheet.absoluteFillObject
|
|
253
|
-
},
|
|
254
|
-
contentContainer: {
|
|
255
|
-
flex: 1,
|
|
256
|
-
justifyContent: 'center',
|
|
257
|
-
alignItems: 'center',
|
|
258
|
-
padding: 16
|
|
259
|
-
},
|
|
260
|
-
imageContainer: {
|
|
261
|
-
overflow: 'hidden',
|
|
262
|
-
borderRadius: 4
|
|
263
|
-
},
|
|
264
|
-
image: {
|
|
265
|
-
width: '100%',
|
|
266
|
-
height: '100%'
|
|
267
|
-
},
|
|
268
|
-
closeButton: {
|
|
269
|
-
position: 'absolute',
|
|
270
|
-
top: 16,
|
|
271
|
-
right: 16,
|
|
272
|
-
width: 40,
|
|
273
|
-
height: 40,
|
|
274
|
-
borderRadius: 20,
|
|
275
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
276
|
-
justifyContent: 'center',
|
|
277
|
-
alignItems: 'center'
|
|
278
|
-
},
|
|
279
|
-
loadingContainer: {
|
|
280
|
-
..._reactNative.StyleSheet.absoluteFillObject,
|
|
281
|
-
justifyContent: 'center',
|
|
282
|
-
alignItems: 'center'
|
|
283
|
-
}
|
|
284
|
-
});
|
|
285
|
-
//# sourceMappingURL=ImageViewModal.backup.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_vectorIcons","_react2","_interopRequireWildcard","_reactNative","_reactNativeGestureHandler","_Loading","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ImageViewModal","isOpen","onClose","src","loading","setLoading","useState","screenWidth","useScreen","s","width","screenHeight","height","imageSize","setImageSize","scale","useRef","Animated","Value","current","translateX","translateY","savedScale","savedTranslateX","savedTranslateY","currentScale","currentTranslateX","currentTranslateY","useMemo","ratio","h","Math","min","w","onLoadStart","useCallback","onLoad","naturalWidth","naturalHeight","nativeEvent","source","resetTransform","setValue","React","useEffect","panGesture","Gesture","Pan","onUpdate","event","newTranslateX","translationX","newTranslateY","translationY","maxTranslateX","maxTranslateY","boundedTranslateX","max","boundedTranslateY","onEnd","pinchGesture","Pinch","newScale","boundedScale","parallel","spring","toValue","useNativeDriver","start","doubleTapGesture","Tap","numberOfTaps","combinedGestures","Race","Simultaneous","createElement","Modal","visible","transparent","animationType","onRequestClose","GestureHandlerRootView","style","styles","gestureRoot","View","modalOverlay","TouchableOpacity","backgroundTouchable","activeOpacity","onPress","contentContainer","GestureDetector","gesture","imageContainer","opacity","transform","Image","uri","undefined","image","resizeMode","closeButton","Ionicons","name","size","color","loadingContainer","LoadingLogo","isLoading","exports","StyleSheet","create","flex","backgroundColor","absoluteFillObject","justifyContent","alignItems","padding","overflow","borderRadius","position","top","right"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/image/ImageViewModal.backup.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,285 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.ImageViewModal = void 0;
|
|
7
|
-
var _react = require("@chem-po/react");
|
|
8
|
-
var _vectorIcons = require("@expo/vector-icons");
|
|
9
|
-
var _react2 = _interopRequireWildcard(require("react"));
|
|
10
|
-
var _reactNative = require("react-native");
|
|
11
|
-
var _reactNativeGestureHandler = require("react-native-gesture-handler");
|
|
12
|
-
var _Loading = require("../loading/Loading");
|
|
13
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
14
|
-
const ImageViewModal = ({
|
|
15
|
-
isOpen,
|
|
16
|
-
onClose,
|
|
17
|
-
src
|
|
18
|
-
}) => {
|
|
19
|
-
const [loading, setLoading] = (0, _react2.useState)(true);
|
|
20
|
-
const screenWidth = (0, _react.useScreen)(s => s.width);
|
|
21
|
-
const screenHeight = (0, _react.useScreen)(s => s.height);
|
|
22
|
-
const [imageSize, setImageSize] = (0, _react2.useState)({
|
|
23
|
-
width: screenWidth / 2,
|
|
24
|
-
height: screenHeight / 2
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
// Animated values for zoom and pan
|
|
28
|
-
const scale = (0, _react2.useRef)(new _reactNative.Animated.Value(1)).current;
|
|
29
|
-
const translateX = (0, _react2.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
30
|
-
const translateY = (0, _react2.useRef)(new _reactNative.Animated.Value(0)).current;
|
|
31
|
-
|
|
32
|
-
// Gesture state
|
|
33
|
-
const savedScale = (0, _react2.useRef)(1);
|
|
34
|
-
const savedTranslateX = (0, _react2.useRef)(0);
|
|
35
|
-
const savedTranslateY = (0, _react2.useRef)(0);
|
|
36
|
-
const currentScale = (0, _react2.useRef)(1);
|
|
37
|
-
const currentTranslateX = (0, _react2.useRef)(0);
|
|
38
|
-
const currentTranslateY = (0, _react2.useRef)(0);
|
|
39
|
-
const {
|
|
40
|
-
height,
|
|
41
|
-
width
|
|
42
|
-
} = (0, _react2.useMemo)(() => {
|
|
43
|
-
if (loading) return imageSize;
|
|
44
|
-
const ratio = imageSize.width / imageSize.height;
|
|
45
|
-
let h = Math.min(imageSize.height, screenHeight * 0.9);
|
|
46
|
-
let w = h * ratio;
|
|
47
|
-
if (w > screenWidth * 0.9) {
|
|
48
|
-
w = Math.min(imageSize.width, screenWidth * 0.9);
|
|
49
|
-
h = w / ratio;
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
height: h,
|
|
53
|
-
width: w
|
|
54
|
-
};
|
|
55
|
-
}, [screenHeight, screenWidth, imageSize, loading]);
|
|
56
|
-
const onLoadStart = (0, _react2.useCallback)(() => setLoading(true), []);
|
|
57
|
-
const onLoad = (0, _react2.useCallback)(e => {
|
|
58
|
-
const {
|
|
59
|
-
width: naturalWidth,
|
|
60
|
-
height: naturalHeight
|
|
61
|
-
} = e.nativeEvent.source;
|
|
62
|
-
setImageSize({
|
|
63
|
-
width: naturalWidth,
|
|
64
|
-
height: naturalHeight
|
|
65
|
-
});
|
|
66
|
-
setLoading(false);
|
|
67
|
-
}, []);
|
|
68
|
-
|
|
69
|
-
// Reset zoom and pan when modal opens/closes
|
|
70
|
-
const resetTransform = (0, _react2.useCallback)(() => {
|
|
71
|
-
scale.setValue(1);
|
|
72
|
-
translateX.setValue(0);
|
|
73
|
-
translateY.setValue(0);
|
|
74
|
-
savedScale.current = 1;
|
|
75
|
-
savedTranslateX.current = 0;
|
|
76
|
-
savedTranslateY.current = 0;
|
|
77
|
-
currentScale.current = 1;
|
|
78
|
-
currentTranslateX.current = 0;
|
|
79
|
-
currentTranslateY.current = 0;
|
|
80
|
-
}, [scale, translateX, translateY]);
|
|
81
|
-
|
|
82
|
-
// Reset when modal closes or src changes
|
|
83
|
-
_react2.default.useEffect(() => {
|
|
84
|
-
if (!isOpen || !src) {
|
|
85
|
-
resetTransform();
|
|
86
|
-
}
|
|
87
|
-
}, [isOpen, src, resetTransform]);
|
|
88
|
-
|
|
89
|
-
// Pan gesture
|
|
90
|
-
const panGesture = _reactNativeGestureHandler.Gesture.Pan().onUpdate(event => {
|
|
91
|
-
// Only allow panning if zoomed in
|
|
92
|
-
if (savedScale.current > 1) {
|
|
93
|
-
const newTranslateX = savedTranslateX.current + event.translationX;
|
|
94
|
-
const newTranslateY = savedTranslateY.current + event.translationY;
|
|
95
|
-
|
|
96
|
-
// Calculate bounds to prevent panning too far
|
|
97
|
-
const maxTranslateX = (width * savedScale.current - width) / 2;
|
|
98
|
-
const maxTranslateY = (height * savedScale.current - height) / 2;
|
|
99
|
-
const boundedTranslateX = Math.max(-maxTranslateX, Math.min(maxTranslateX, newTranslateX));
|
|
100
|
-
const boundedTranslateY = Math.max(-maxTranslateY, Math.min(maxTranslateY, newTranslateY));
|
|
101
|
-
translateX.setValue(boundedTranslateX);
|
|
102
|
-
translateY.setValue(boundedTranslateY);
|
|
103
|
-
currentTranslateX.current = boundedTranslateX;
|
|
104
|
-
currentTranslateY.current = boundedTranslateY;
|
|
105
|
-
}
|
|
106
|
-
}).onEnd(() => {
|
|
107
|
-
savedTranslateX.current = currentTranslateX.current;
|
|
108
|
-
savedTranslateY.current = currentTranslateY.current;
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
// Pinch gesture
|
|
112
|
-
const pinchGesture = _reactNativeGestureHandler.Gesture.Pinch().onUpdate(event => {
|
|
113
|
-
const newScale = savedScale.current * event.scale;
|
|
114
|
-
// Limit zoom between 1x and 5x
|
|
115
|
-
const boundedScale = Math.max(1, Math.min(5, newScale));
|
|
116
|
-
scale.setValue(boundedScale);
|
|
117
|
-
currentScale.current = boundedScale;
|
|
118
|
-
|
|
119
|
-
// If zooming out to 1x, reset position
|
|
120
|
-
if (boundedScale <= 1) {
|
|
121
|
-
translateX.setValue(0);
|
|
122
|
-
translateY.setValue(0);
|
|
123
|
-
currentTranslateX.current = 0;
|
|
124
|
-
currentTranslateY.current = 0;
|
|
125
|
-
}
|
|
126
|
-
}).onEnd(() => {
|
|
127
|
-
savedScale.current = currentScale.current;
|
|
128
|
-
// If scale is close to 1, snap back to 1
|
|
129
|
-
if (savedScale.current < 1.1) {
|
|
130
|
-
_reactNative.Animated.parallel([_reactNative.Animated.spring(scale, {
|
|
131
|
-
toValue: 1,
|
|
132
|
-
useNativeDriver: true
|
|
133
|
-
}), _reactNative.Animated.spring(translateX, {
|
|
134
|
-
toValue: 0,
|
|
135
|
-
useNativeDriver: true
|
|
136
|
-
}), _reactNative.Animated.spring(translateY, {
|
|
137
|
-
toValue: 0,
|
|
138
|
-
useNativeDriver: true
|
|
139
|
-
})]).start();
|
|
140
|
-
savedScale.current = 1;
|
|
141
|
-
savedTranslateX.current = 0;
|
|
142
|
-
savedTranslateY.current = 0;
|
|
143
|
-
currentScale.current = 1;
|
|
144
|
-
currentTranslateX.current = 0;
|
|
145
|
-
currentTranslateY.current = 0;
|
|
146
|
-
} else {
|
|
147
|
-
savedTranslateX.current = currentTranslateX.current;
|
|
148
|
-
savedTranslateY.current = currentTranslateY.current;
|
|
149
|
-
}
|
|
150
|
-
});
|
|
151
|
-
|
|
152
|
-
// Double tap to zoom
|
|
153
|
-
const doubleTapGesture = _reactNativeGestureHandler.Gesture.Tap().numberOfTaps(2).onEnd(() => {
|
|
154
|
-
if (savedScale.current > 1) {
|
|
155
|
-
// Zoom out
|
|
156
|
-
_reactNative.Animated.parallel([_reactNative.Animated.spring(scale, {
|
|
157
|
-
toValue: 1,
|
|
158
|
-
useNativeDriver: true
|
|
159
|
-
}), _reactNative.Animated.spring(translateX, {
|
|
160
|
-
toValue: 0,
|
|
161
|
-
useNativeDriver: true
|
|
162
|
-
}), _reactNative.Animated.spring(translateY, {
|
|
163
|
-
toValue: 0,
|
|
164
|
-
useNativeDriver: true
|
|
165
|
-
})]).start();
|
|
166
|
-
savedScale.current = 1;
|
|
167
|
-
savedTranslateX.current = 0;
|
|
168
|
-
savedTranslateY.current = 0;
|
|
169
|
-
currentScale.current = 1;
|
|
170
|
-
currentTranslateX.current = 0;
|
|
171
|
-
currentTranslateY.current = 0;
|
|
172
|
-
} else {
|
|
173
|
-
// Zoom in to 2x
|
|
174
|
-
_reactNative.Animated.spring(scale, {
|
|
175
|
-
toValue: 2,
|
|
176
|
-
useNativeDriver: true
|
|
177
|
-
}).start();
|
|
178
|
-
savedScale.current = 2;
|
|
179
|
-
currentScale.current = 2;
|
|
180
|
-
}
|
|
181
|
-
});
|
|
182
|
-
|
|
183
|
-
// Test simple single tap gesture
|
|
184
|
-
|
|
185
|
-
// Combine gestures - simplified approach
|
|
186
|
-
const combinedGestures = _reactNativeGestureHandler.Gesture.Race(doubleTapGesture, _reactNativeGestureHandler.Gesture.Simultaneous(panGesture, pinchGesture));
|
|
187
|
-
if (!isOpen) {
|
|
188
|
-
return null;
|
|
189
|
-
}
|
|
190
|
-
return /*#__PURE__*/_react2.default.createElement(_reactNative.Modal, {
|
|
191
|
-
visible: isOpen,
|
|
192
|
-
transparent: true,
|
|
193
|
-
animationType: "fade",
|
|
194
|
-
onRequestClose: onClose
|
|
195
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNativeGestureHandler.GestureHandlerRootView, {
|
|
196
|
-
style: styles.gestureRoot
|
|
197
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
198
|
-
style: styles.modalOverlay
|
|
199
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.TouchableOpacity, {
|
|
200
|
-
style: styles.backgroundTouchable,
|
|
201
|
-
activeOpacity: 1,
|
|
202
|
-
onPress: onClose
|
|
203
|
-
}), /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
204
|
-
style: styles.contentContainer
|
|
205
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNativeGestureHandler.GestureDetector, {
|
|
206
|
-
gesture: combinedGestures
|
|
207
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.Animated.View, {
|
|
208
|
-
style: [styles.imageContainer, {
|
|
209
|
-
width,
|
|
210
|
-
height,
|
|
211
|
-
opacity: loading ? 0 : 1,
|
|
212
|
-
transform: [{
|
|
213
|
-
scale
|
|
214
|
-
}, {
|
|
215
|
-
translateX
|
|
216
|
-
}, {
|
|
217
|
-
translateY
|
|
218
|
-
}]
|
|
219
|
-
}]
|
|
220
|
-
}, /*#__PURE__*/_react2.default.createElement(_reactNative.Image, {
|
|
221
|
-
source: src ? {
|
|
222
|
-
uri: src
|
|
223
|
-
} : undefined,
|
|
224
|
-
style: styles.image,
|
|
225
|
-
onLoadStart: onLoadStart,
|
|
226
|
-
onLoad: onLoad,
|
|
227
|
-
resizeMode: "contain"
|
|
228
|
-
}))), /*#__PURE__*/_react2.default.createElement(_reactNative.TouchableOpacity, {
|
|
229
|
-
style: styles.closeButton,
|
|
230
|
-
onPress: onClose
|
|
231
|
-
}, /*#__PURE__*/_react2.default.createElement(_vectorIcons.Ionicons, {
|
|
232
|
-
name: "close",
|
|
233
|
-
size: 24,
|
|
234
|
-
color: "white"
|
|
235
|
-
})), loading || !src ? /*#__PURE__*/_react2.default.createElement(_reactNative.View, {
|
|
236
|
-
style: styles.loadingContainer
|
|
237
|
-
}, /*#__PURE__*/_react2.default.createElement(_Loading.LoadingLogo, {
|
|
238
|
-
isLoading: loading,
|
|
239
|
-
size: 70
|
|
240
|
-
})) : null))));
|
|
241
|
-
};
|
|
242
|
-
exports.ImageViewModal = ImageViewModal;
|
|
243
|
-
const styles = _reactNative.StyleSheet.create({
|
|
244
|
-
gestureRoot: {
|
|
245
|
-
flex: 1
|
|
246
|
-
},
|
|
247
|
-
modalOverlay: {
|
|
248
|
-
flex: 1,
|
|
249
|
-
backgroundColor: 'rgba(0, 0, 0, 0.7)'
|
|
250
|
-
},
|
|
251
|
-
backgroundTouchable: {
|
|
252
|
-
..._reactNative.StyleSheet.absoluteFillObject
|
|
253
|
-
},
|
|
254
|
-
contentContainer: {
|
|
255
|
-
flex: 1,
|
|
256
|
-
justifyContent: 'center',
|
|
257
|
-
alignItems: 'center',
|
|
258
|
-
padding: 16
|
|
259
|
-
},
|
|
260
|
-
imageContainer: {
|
|
261
|
-
overflow: 'hidden',
|
|
262
|
-
borderRadius: 4
|
|
263
|
-
},
|
|
264
|
-
image: {
|
|
265
|
-
width: '100%',
|
|
266
|
-
height: '100%'
|
|
267
|
-
},
|
|
268
|
-
closeButton: {
|
|
269
|
-
position: 'absolute',
|
|
270
|
-
top: 16,
|
|
271
|
-
right: 16,
|
|
272
|
-
width: 40,
|
|
273
|
-
height: 40,
|
|
274
|
-
borderRadius: 20,
|
|
275
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
276
|
-
justifyContent: 'center',
|
|
277
|
-
alignItems: 'center'
|
|
278
|
-
},
|
|
279
|
-
loadingContainer: {
|
|
280
|
-
..._reactNative.StyleSheet.absoluteFillObject,
|
|
281
|
-
justifyContent: 'center',
|
|
282
|
-
alignItems: 'center'
|
|
283
|
-
}
|
|
284
|
-
});
|
|
285
|
-
//# sourceMappingURL=ImageViewModal.old.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","require","_vectorIcons","_react2","_interopRequireWildcard","_reactNative","_reactNativeGestureHandler","_Loading","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ImageViewModal","isOpen","onClose","src","loading","setLoading","useState","screenWidth","useScreen","s","width","screenHeight","height","imageSize","setImageSize","scale","useRef","Animated","Value","current","translateX","translateY","savedScale","savedTranslateX","savedTranslateY","currentScale","currentTranslateX","currentTranslateY","useMemo","ratio","h","Math","min","w","onLoadStart","useCallback","onLoad","naturalWidth","naturalHeight","nativeEvent","source","resetTransform","setValue","React","useEffect","panGesture","Gesture","Pan","onUpdate","event","newTranslateX","translationX","newTranslateY","translationY","maxTranslateX","maxTranslateY","boundedTranslateX","max","boundedTranslateY","onEnd","pinchGesture","Pinch","newScale","boundedScale","parallel","spring","toValue","useNativeDriver","start","doubleTapGesture","Tap","numberOfTaps","combinedGestures","Race","Simultaneous","createElement","Modal","visible","transparent","animationType","onRequestClose","GestureHandlerRootView","style","styles","gestureRoot","View","modalOverlay","TouchableOpacity","backgroundTouchable","activeOpacity","onPress","contentContainer","GestureDetector","gesture","imageContainer","opacity","transform","Image","uri","undefined","image","resizeMode","closeButton","Ionicons","name","size","color","loadingContainer","LoadingLogo","isLoading","exports","StyleSheet","create","flex","backgroundColor","absoluteFillObject","justifyContent","alignItems","padding","overflow","borderRadius","position","top","right"],"sourceRoot":"..\\..\\..\\..\\src","sources":["components/image/ImageViewModal.old.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAC,uBAAA,CAAAH,OAAA;AACA,IAAAI,YAAA,GAAAJ,OAAA;AACA,IAAAK,0BAAA,GAAAL,OAAA;AACA,IAAAM,QAAA,GAAAN,OAAA;AAAgD,SAAAG,wBAAAI,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAN,uBAAA,YAAAA,CAAAI,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;AAQzC,MAAMkB,cAA6C,GAAGA,CAAC;EAAEC,MAAM;EAAEC,OAAO;EAAEC;AAAI,CAAC,KAAK;EACzF,MAAM,CAACC,OAAO,EAAEC,UAAU,CAAC,GAAG,IAAAC,gBAAQ,EAAC,IAAI,CAAC;EAC5C,MAAMC,WAAW,GAAG,IAAAC,gBAAS,EAACC,CAAC,IAAIA,CAAC,CAACC,KAAK,CAAC;EAC3C,MAAMC,YAAY,GAAG,IAAAH,gBAAS,EAACC,CAAC,IAAIA,CAAC,CAACG,MAAM,CAAC;EAC7C,MAAM,CAACC,SAAS,EAAEC,YAAY,CAAC,GAAG,IAAAR,gBAAQ,EAAC;IAAEI,KAAK,EAAEH,WAAW,GAAG,CAAC;IAAEK,MAAM,EAAED,YAAY,GAAG;EAAE,CAAC,CAAC;;EAEhG;EACA,MAAMI,KAAK,GAAG,IAAAC,cAAM,EAAC,IAAIC,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAAC,CAAC,CAACC,OAAO;EACnD,MAAMC,UAAU,GAAG,IAAAJ,cAAM,EAAC,IAAIC,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAAC,CAAC,CAACC,OAAO;EACxD,MAAME,UAAU,GAAG,IAAAL,cAAM,EAAC,IAAIC,qBAAQ,CAACC,KAAK,CAAC,CAAC,CAAC,CAAC,CAACC,OAAO;;EAExD;EACA,MAAMG,UAAU,GAAG,IAAAN,cAAM,EAAC,CAAC,CAAC;EAC5B,MAAMO,eAAe,GAAG,IAAAP,cAAM,EAAC,CAAC,CAAC;EACjC,MAAMQ,eAAe,GAAG,IAAAR,cAAM,EAAC,CAAC,CAAC;EACjC,MAAMS,YAAY,GAAG,IAAAT,cAAM,EAAC,CAAC,CAAC;EAC9B,MAAMU,iBAAiB,GAAG,IAAAV,cAAM,EAAC,CAAC,CAAC;EACnC,MAAMW,iBAAiB,GAAG,IAAAX,cAAM,EAAC,CAAC,CAAC;EAEnC,MAAM;IAAEJ,MAAM;IAAEF;EAAM,CAAC,GAAG,IAAAkB,eAAO,EAAC,MAAM;IACtC,IAAIxB,OAAO,EAAE,OAAOS,SAAS;IAC7B,MAAMgB,KAAK,GAAGhB,SAAS,CAACH,KAAK,GAAGG,SAAS,CAACD,MAAM;IAChD,IAAIkB,CAAC,GAAGC,IAAI,CAACC,GAAG,CAACnB,SAAS,CAACD,MAAM,EAAED,YAAY,GAAG,GAAG,CAAC;IACtD,IAAIsB,CAAC,GAAGH,CAAC,GAAGD,KAAK;IACjB,IAAII,CAAC,GAAG1B,WAAW,GAAG,GAAG,EAAE;MACzB0B,CAAC,GAAGF,IAAI,CAACC,GAAG,CAACnB,SAAS,CAACH,KAAK,EAAEH,WAAW,GAAG,GAAG,CAAC;MAChDuB,CAAC,GAAGG,CAAC,GAAGJ,KAAK;IACf;IACA,OAAO;MAAEjB,MAAM,EAAEkB,CAAC;MAAEpB,KAAK,EAAEuB;IAAE,CAAC;EAChC,CAAC,EAAE,CAACtB,YAAY,EAAEJ,WAAW,EAAEM,SAAS,EAAET,OAAO,CAAC,CAAC;EAEnD,MAAM8B,WAAW,GAAG,IAAAC,mBAAW,EAAC,MAAM9B,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;EAC3D,MAAM+B,MAAM,GAAG,IAAAD,mBAAW,EAAEtD,CAAM,IAAK;IACrC,MAAM;MAAE6B,KAAK,EAAE2B,YAAY;MAAEzB,MAAM,EAAE0B;IAAc,CAAC,GAAGzD,CAAC,CAAC0D,WAAW,CAACC,MAAM;IAC3E1B,YAAY,CAAC;MAAEJ,KAAK,EAAE2B,YAAY;MAAEzB,MAAM,EAAE0B;IAAc,CAAC,CAAC;IAC5DjC,UAAU,CAAC,KAAK,CAAC;EACnB,CAAC,EAAE,EAAE,CAAC;;EAEN;EACA,MAAMoC,cAAc,GAAG,IAAAN,mBAAW,EAAC,MAAM;IACvCpB,KAAK,CAAC2B,QAAQ,CAAC,CAAC,CAAC;IACjBtB,UAAU,CAACsB,QAAQ,CAAC,CAAC,CAAC;IACtBrB,UAAU,CAACqB,QAAQ,CAAC,CAAC,CAAC;IACtBpB,UAAU,CAACH,OAAO,GAAG,CAAC;IACtBI,eAAe,CAACJ,OAAO,GAAG,CAAC;IAC3BK,eAAe,CAACL,OAAO,GAAG,CAAC;IAC3BM,YAAY,CAACN,OAAO,GAAG,CAAC;IACxBO,iBAAiB,CAACP,OAAO,GAAG,CAAC;IAC7BQ,iBAAiB,CAACR,OAAO,GAAG,CAAC;EAC/B,CAAC,EAAE,CAACJ,KAAK,EAAEK,UAAU,EAAEC,UAAU,CAAC,CAAC;;EAEnC;EACAsB,eAAK,CAACC,SAAS,CAAC,MAAM;IACpB,IAAI,CAAC3C,MAAM,IAAI,CAACE,GAAG,EAAE;MACnBsC,cAAc,CAAC,CAAC;IAClB;EACF,CAAC,EAAE,CAACxC,MAAM,EAAEE,GAAG,EAAEsC,cAAc,CAAC,CAAC;;EAEjC;EACA,MAAMI,UAAU,GAAGC,kCAAO,CAACC,GAAG,CAAC,CAAC,CAC7BC,QAAQ,CAACC,KAAK,IAAI;IACjB;IACA,IAAI3B,UAAU,CAACH,OAAO,GAAG,CAAC,EAAE;MAC1B,MAAM+B,aAAa,GAAG3B,eAAe,CAACJ,OAAO,GAAG8B,KAAK,CAACE,YAAY;MAClE,MAAMC,aAAa,GAAG5B,eAAe,CAACL,OAAO,GAAG8B,KAAK,CAACI,YAAY;;MAElE;MACA,MAAMC,aAAa,GAAG,CAAC5C,KAAK,GAAGY,UAAU,CAACH,OAAO,GAAGT,KAAK,IAAI,CAAC;MAC9D,MAAM6C,aAAa,GAAG,CAAC3C,MAAM,GAAGU,UAAU,CAACH,OAAO,GAAGP,MAAM,IAAI,CAAC;MAEhE,MAAM4C,iBAAiB,GAAGzB,IAAI,CAAC0B,GAAG,CAAC,CAACH,aAAa,EAAEvB,IAAI,CAACC,GAAG,CAACsB,aAAa,EAAEJ,aAAa,CAAC,CAAC;MAC1F,MAAMQ,iBAAiB,GAAG3B,IAAI,CAAC0B,GAAG,CAAC,CAACF,aAAa,EAAExB,IAAI,CAACC,GAAG,CAACuB,aAAa,EAAEH,aAAa,CAAC,CAAC;MAE1FhC,UAAU,CAACsB,QAAQ,CAACc,iBAAiB,CAAC;MACtCnC,UAAU,CAACqB,QAAQ,CAACgB,iBAAiB,CAAC;MACtChC,iBAAiB,CAACP,OAAO,GAAGqC,iBAAiB;MAC7C7B,iBAAiB,CAACR,OAAO,GAAGuC,iBAAiB;IAC/C;EACF,CAAC,CAAC,CACDC,KAAK,CAAC,MAAM;IACXpC,eAAe,CAACJ,OAAO,GAAGO,iBAAiB,CAACP,OAAO;IACnDK,eAAe,CAACL,OAAO,GAAGQ,iBAAiB,CAACR,OAAO;EACrD,CAAC,CAAC;;EAEJ;EACA,MAAMyC,YAAY,GAAGd,kCAAO,CAACe,KAAK,CAAC,CAAC,CACjCb,QAAQ,CAACC,KAAK,IAAI;IACjB,MAAMa,QAAQ,GAAGxC,UAAU,CAACH,OAAO,GAAG8B,KAAK,CAAClC,KAAK;IACjD;IACA,MAAMgD,YAAY,GAAGhC,IAAI,CAAC0B,GAAG,CAAC,CAAC,EAAE1B,IAAI,CAACC,GAAG,CAAC,CAAC,EAAE8B,QAAQ,CAAC,CAAC;IACvD/C,KAAK,CAAC2B,QAAQ,CAACqB,YAAY,CAAC;IAC5BtC,YAAY,CAACN,OAAO,GAAG4C,YAAY;;IAEnC;IACA,IAAIA,YAAY,IAAI,CAAC,EAAE;MACrB3C,UAAU,CAACsB,QAAQ,CAAC,CAAC,CAAC;MACtBrB,UAAU,CAACqB,QAAQ,CAAC,CAAC,CAAC;MACtBhB,iBAAiB,CAACP,OAAO,GAAG,CAAC;MAC7BQ,iBAAiB,CAACR,OAAO,GAAG,CAAC;IAC/B;EACF,CAAC,CAAC,CACDwC,KAAK,CAAC,MAAM;IACXrC,UAAU,CAACH,OAAO,GAAGM,YAAY,CAACN,OAAO;IACzC;IACA,IAAIG,UAAU,CAACH,OAAO,GAAG,GAAG,EAAE;MAC5BF,qBAAQ,CAAC+C,QAAQ,CAAC,CAChB/C,qBAAQ,CAACgD,MAAM,CAAClD,KAAK,EAAE;QAAEmD,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,EAC7DlD,qBAAQ,CAACgD,MAAM,CAAC7C,UAAU,EAAE;QAAE8C,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,EAClElD,qBAAQ,CAACgD,MAAM,CAAC5C,UAAU,EAAE;QAAE6C,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,CACnE,CAAC,CAACC,KAAK,CAAC,CAAC;MACV9C,UAAU,CAACH,OAAO,GAAG,CAAC;MACtBI,eAAe,CAACJ,OAAO,GAAG,CAAC;MAC3BK,eAAe,CAACL,OAAO,GAAG,CAAC;MAC3BM,YAAY,CAACN,OAAO,GAAG,CAAC;MACxBO,iBAAiB,CAACP,OAAO,GAAG,CAAC;MAC7BQ,iBAAiB,CAACR,OAAO,GAAG,CAAC;IAC/B,CAAC,MAAM;MACLI,eAAe,CAACJ,OAAO,GAAGO,iBAAiB,CAACP,OAAO;MACnDK,eAAe,CAACL,OAAO,GAAGQ,iBAAiB,CAACR,OAAO;IACrD;EACF,CAAC,CAAC;;EAEJ;EACA,MAAMkD,gBAAgB,GAAGvB,kCAAO,CAACwB,GAAG,CAAC,CAAC,CACnCC,YAAY,CAAC,CAAC,CAAC,CACfZ,KAAK,CAAC,MAAM;IACX,IAAIrC,UAAU,CAACH,OAAO,GAAG,CAAC,EAAE;MAC1B;MACAF,qBAAQ,CAAC+C,QAAQ,CAAC,CAChB/C,qBAAQ,CAACgD,MAAM,CAAClD,KAAK,EAAE;QAAEmD,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,EAC7DlD,qBAAQ,CAACgD,MAAM,CAAC7C,UAAU,EAAE;QAAE8C,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,EAClElD,qBAAQ,CAACgD,MAAM,CAAC5C,UAAU,EAAE;QAAE6C,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,CACnE,CAAC,CAACC,KAAK,CAAC,CAAC;MACV9C,UAAU,CAACH,OAAO,GAAG,CAAC;MACtBI,eAAe,CAACJ,OAAO,GAAG,CAAC;MAC3BK,eAAe,CAACL,OAAO,GAAG,CAAC;MAC3BM,YAAY,CAACN,OAAO,GAAG,CAAC;MACxBO,iBAAiB,CAACP,OAAO,GAAG,CAAC;MAC7BQ,iBAAiB,CAACR,OAAO,GAAG,CAAC;IAC/B,CAAC,MAAM;MACL;MACAF,qBAAQ,CAACgD,MAAM,CAAClD,KAAK,EAAE;QAAEmD,OAAO,EAAE,CAAC;QAAEC,eAAe,EAAE;MAAK,CAAC,CAAC,CAACC,KAAK,CAAC,CAAC;MACrE9C,UAAU,CAACH,OAAO,GAAG,CAAC;MACtBM,YAAY,CAACN,OAAO,GAAG,CAAC;IAC1B;EACF,CAAC,CAAC;;EAEJ;;EAEA;EACA,MAAMqD,gBAAgB,GAAG1B,kCAAO,CAAC2B,IAAI,CACnCJ,gBAAgB,EAChBvB,kCAAO,CAAC4B,YAAY,CAAC7B,UAAU,EAAEe,YAAY,CAC/C,CAAC;EAED,IAAI,CAAC3D,MAAM,EAAE;IACX,OAAO,IAAI;EACb;EAEA,oBACEzB,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAAkG,KAAK;IAACC,OAAO,EAAE5E,MAAO;IAAC6E,WAAW;IAACC,aAAa,EAAC,MAAM;IAACC,cAAc,EAAE9E;EAAQ,gBAC/E1B,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAAChG,0BAAA,CAAAsG,sBAAsB;IAACC,KAAK,EAAEC,MAAM,CAACC;EAAY,gBAChD5G,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAA2G,IAAI;IAACH,KAAK,EAAEC,MAAM,CAACG;EAAa,gBAC/B9G,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAA6G,gBAAgB;IACfL,KAAK,EAAEC,MAAM,CAACK,mBAAoB;IAClCC,aAAa,EAAE,CAAE;IACjBC,OAAO,EAAExF;EAAQ,CAClB,CAAC,eACF1B,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAA2G,IAAI;IAACH,KAAK,EAAEC,MAAM,CAACQ;EAAiB,gBACnCnH,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAAChG,0BAAA,CAAAiH,eAAe;IAACC,OAAO,EAAErB;EAAiB,gBACzChG,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAAuC,QAAQ,CAACoE,IAAI;IACZH,KAAK,EAAE,CACLC,MAAM,CAACW,cAAc,EACrB;MACEpF,KAAK;MACLE,MAAM;MACNmF,OAAO,EAAE3F,OAAO,GAAG,CAAC,GAAG,CAAC;MACxB4F,SAAS,EAAE,CAAC;QAAEjF;MAAM,CAAC,EAAE;QAAEK;MAAW,CAAC,EAAE;QAAEC;MAAW,CAAC;IACvD,CAAC;EACD,gBACF7C,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAAuH,KAAK;IACJzD,MAAM,EAAErC,GAAG,GAAG;MAAE+F,GAAG,EAAE/F;IAAI,CAAC,GAAGgG,SAAU;IACvCjB,KAAK,EAAEC,MAAM,CAACiB,KAAM;IACpBlE,WAAW,EAAEA,WAAY;IACzBE,MAAM,EAAEA,MAAO;IACfiE,UAAU,EAAC;EAAS,CACrB,CACY,CACA,CAAC,eAElB7H,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAA6G,gBAAgB;IAACL,KAAK,EAAEC,MAAM,CAACmB,WAAY;IAACZ,OAAO,EAAExF;EAAQ,gBAC5D1B,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACpG,YAAA,CAAAgI,QAAQ;IAACC,IAAI,EAAC,OAAO;IAACC,IAAI,EAAE,EAAG;IAACC,KAAK,EAAC;EAAO,CAAE,CAChC,CAAC,EAElBtG,OAAO,IAAI,CAACD,GAAG,gBACd3B,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAACjG,YAAA,CAAA2G,IAAI;IAACH,KAAK,EAAEC,MAAM,CAACwB;EAAiB,gBACnCnI,OAAA,CAAAe,OAAA,CAAAoF,aAAA,CAAC/F,QAAA,CAAAgI,WAAW;IAACC,SAAS,EAAEzG,OAAQ;IAACqG,IAAI,EAAE;EAAG,CAAE,CACxC,CAAC,GACL,IACA,CACF,CACgB,CACnB,CAAC;AAEZ,CAAC;AAAAK,OAAA,CAAA9G,cAAA,GAAAA,cAAA;AAED,MAAMmF,MAAM,GAAG4B,uBAAU,CAACC,MAAM,CAAC;EAC/B5B,WAAW,EAAE;IACX6B,IAAI,EAAE;EACR,CAAC;EACD3B,YAAY,EAAE;IACZ2B,IAAI,EAAE,CAAC;IACPC,eAAe,EAAE;EACnB,CAAC;EACD1B,mBAAmB,EAAE;IACnB,GAAGuB,uBAAU,CAACI;EAChB,CAAC;EACDxB,gBAAgB,EAAE;IAChBsB,IAAI,EAAE,CAAC;IACPG,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE,QAAQ;IACpBC,OAAO,EAAE;EACX,CAAC;EACDxB,cAAc,EAAE;IACdyB,QAAQ,EAAE,QAAQ;IAClBC,YAAY,EAAE;EAChB,CAAC;EACDpB,KAAK,EAAE;IACL1F,KAAK,EAAE,MAAM;IACbE,MAAM,EAAE;EACV,CAAC;EACD0F,WAAW,EAAE;IACXmB,QAAQ,EAAE,UAAU;IACpBC,GAAG,EAAE,EAAE;IACPC,KAAK,EAAE,EAAE;IACTjH,KAAK,EAAE,EAAE;IACTE,MAAM,EAAE,EAAE;IACV4G,YAAY,EAAE,EAAE;IAChBN,eAAe,EAAE,oBAAoB;IACrCE,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd,CAAC;EACDV,gBAAgB,EAAE;IAChB,GAAGI,uBAAU,CAACI,kBAAkB;IAChCC,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
|