@wavemaker/app-rn-runtime 11.11.0-rc.6126 → 11.11.1-rc.6142
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/components/advanced/carousel/carousel.component.js +4 -2
- package/components/advanced/carousel/carousel.component.js.map +1 -1
- package/components/basic/label/label.component.js +7 -5
- package/components/basic/label/label.component.js.map +1 -1
- package/components/basic/progress-bar/progress-bar.component.js +2 -2
- package/components/basic/progress-bar/progress-bar.component.js.map +1 -1
- package/components/data/form/form-field/form-field.component.js +1 -0
- package/components/data/form/form-field/form-field.component.js.map +1 -1
- package/components/data/list/list.component.js +43 -9
- package/components/data/list/list.component.js.map +1 -1
- package/components/data/list/list.props.js +1 -0
- package/components/data/list/list.props.js.map +1 -1
- package/components/dialogs/dialog/dialog.component.js +53 -5
- package/components/dialogs/dialog/dialog.component.js.map +1 -1
- package/components/dialogs/dialogcontent/dialogcontent.component.js +7 -1
- package/components/dialogs/dialogcontent/dialogcontent.component.js.map +1 -1
- package/components/input/baseinput/baseinput.component.js +6 -2
- package/components/input/baseinput/baseinput.component.js.map +1 -1
- package/components/input/calendar/views/month-view.js +15 -2
- package/components/input/calendar/views/month-view.js.map +1 -1
- package/components/input/epoch/base-datetime.component.js +5 -0
- package/components/input/epoch/base-datetime.component.js.map +1 -1
- package/components/input/textarea/textarea.component.js +5 -3
- package/components/input/textarea/textarea.component.js.map +1 -1
- package/components/input/textarea/textarea.props.js +1 -0
- package/components/input/textarea/textarea.props.js.map +1 -1
- package/components/input/textarea/textarea.styles.js +7 -0
- package/components/input/textarea/textarea.styles.js.map +1 -1
- package/components/page/left-panel/left-panel.component.js +27 -10
- package/components/page/left-panel/left-panel.component.js.map +1 -1
- package/components/page/page-content/page-content.component.js +3 -2
- package/components/page/page-content/page-content.component.js.map +1 -1
- package/components/page/page-content/page-content.props.js +2 -0
- package/components/page/page-content/page-content.props.js.map +1 -1
- package/components/page/page.component.js +10 -2
- package/components/page/page.component.js.map +1 -1
- package/components/page/page.props.js +1 -0
- package/components/page/page.props.js.map +1 -1
- package/core/base.component.js +1 -0
- package/core/base.component.js.map +1 -1
- package/core/utils.js +266 -22
- package/core/utils.js.map +1 -1
- package/gestures/carousel-swipe.animation.js +225 -0
- package/gestures/carousel-swipe.animation.js.map +1 -0
- package/npm-shrinkwrap.json +1433 -1859
- package/package-lock.json +1433 -1859
- package/package.json +2 -2
- package/runtime/App.js +7 -0
- package/runtime/App.js.map +1 -1
- package/runtime/base-prefab.component.js +4 -0
- package/runtime/base-prefab.component.js.map +1 -1
- package/styles/theme.variables.js +2 -0
- package/styles/theme.variables.js.map +1 -1
@@ -0,0 +1,225 @@
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
2
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
4
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
5
|
+
import { isNil } from 'lodash-es';
|
6
|
+
import React from 'react';
|
7
|
+
import { Animated, Easing, View as RNView, PanResponder } from 'react-native';
|
8
|
+
import injector from '@wavemaker/app-rn-runtime/core/injector';
|
9
|
+
export class Handlers {
|
10
|
+
constructor() {
|
11
|
+
_defineProperty(this, "bounds", null);
|
12
|
+
_defineProperty(this, "onAnimation", () => {});
|
13
|
+
_defineProperty(this, "onLower", () => {});
|
14
|
+
_defineProperty(this, "onUpper", () => {});
|
15
|
+
_defineProperty(this, "computePhase", null);
|
16
|
+
}
|
17
|
+
}
|
18
|
+
export class Props {
|
19
|
+
constructor() {
|
20
|
+
_defineProperty(this, "threshold", 5);
|
21
|
+
_defineProperty(this, "direction", 'horizontal');
|
22
|
+
_defineProperty(this, "handlers", {});
|
23
|
+
_defineProperty(this, "style", {});
|
24
|
+
_defineProperty(this, "children", void 0);
|
25
|
+
_defineProperty(this, "enableGestures", void 0);
|
26
|
+
_defineProperty(this, "slideWidth", '100%');
|
27
|
+
_defineProperty(this, "slideMinWidth", undefined);
|
28
|
+
_defineProperty(this, "slidesLayout", []);
|
29
|
+
_defineProperty(this, "activeIndex", null);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
export class State {
|
33
|
+
constructor() {
|
34
|
+
_defineProperty(this, "threshold", 5);
|
35
|
+
_defineProperty(this, "isHorizontal", false);
|
36
|
+
_defineProperty(this, "bounds", {});
|
37
|
+
_defineProperty(this, "maxPosition", Number.MAX_VALUE);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
export class View extends React.Component {
|
41
|
+
constructor(props) {
|
42
|
+
super(props);
|
43
|
+
_defineProperty(this, "position", new Animated.Value(0));
|
44
|
+
_defineProperty(this, "animationPhase", new Animated.Value(0));
|
45
|
+
_defineProperty(this, "i18nService", injector.I18nService.get());
|
46
|
+
_defineProperty(this, "childrenLayout", []);
|
47
|
+
_defineProperty(this, "viewLayout", null);
|
48
|
+
_defineProperty(this, "panResponder", null);
|
49
|
+
_defineProperty(this, "shouldEnablePanResponder", (dx, dy) => {
|
50
|
+
const gestureEnableThreshold = 30;
|
51
|
+
const shouldEnable = (this.props.direction === 'horizontal' ? Math.abs(dx) > Math.abs(dy) : Math.abs(dx) < Math.abs(dy)) && (this.props.direction === 'horizontal' ? Math.abs(dx) > gestureEnableThreshold : Math.abs(dy) > gestureEnableThreshold);
|
52
|
+
return this.props.enableGestures && shouldEnable;
|
53
|
+
});
|
54
|
+
_defineProperty(this, "onChange", e => {
|
55
|
+
var _this$props$handlers, _this$props$handlers2;
|
56
|
+
const bounds = ((_this$props$handlers = this.props.handlers) === null || _this$props$handlers === void 0 ? void 0 : _this$props$handlers.bounds) && ((_this$props$handlers2 = this.props.handlers) === null || _this$props$handlers2 === void 0 ? void 0 : _this$props$handlers2.bounds(e)) || {};
|
57
|
+
const d = this.state.isHorizontal ? e.dx : e.dy;
|
58
|
+
let phase = this.computePhase((bounds === null || bounds === void 0 ? void 0 : bounds.center) || 0);
|
59
|
+
if (d && d < 0 && !isNil(bounds.center) && !isNil(bounds.lower) && bounds.center !== bounds.lower) {
|
60
|
+
phase += d / (bounds.center - bounds.lower) || 0;
|
61
|
+
} else if (d && d > 0 && !isNil(bounds.center) && !isNil(bounds.upper) && bounds.center !== bounds.upper) {
|
62
|
+
phase += d / (bounds.upper - bounds.center) || 0;
|
63
|
+
}
|
64
|
+
this.animationPhase.setValue(phase);
|
65
|
+
this.position.setValue((this.isRTL() ? -(bounds === null || bounds === void 0 ? void 0 : bounds.center) : (bounds === null || bounds === void 0 ? void 0 : bounds.center) || 0) + d);
|
66
|
+
});
|
67
|
+
_defineProperty(this, "onEnd", e => {
|
68
|
+
var _this$props$handlers3, _this$props$handlers4;
|
69
|
+
((_this$props$handlers3 = this.props.handlers) === null || _this$props$handlers3 === void 0 ? void 0 : _this$props$handlers3.onAnimation) && ((_this$props$handlers4 = this.props.handlers) === null || _this$props$handlers4 === void 0 ? void 0 : _this$props$handlers4.onAnimation(e));
|
70
|
+
if (e.dx < 0) {
|
71
|
+
this.isRTL() ? this.goToLower(e) : this.goToUpper(e);
|
72
|
+
} else if (e.dx > 0) {
|
73
|
+
this.isRTL() ? this.goToUpper(e) : this.goToLower(e);
|
74
|
+
}
|
75
|
+
});
|
76
|
+
this.state = {
|
77
|
+
isHorizontal: props.direction === 'horizontal',
|
78
|
+
threshold: props.threshold || 49,
|
79
|
+
bounds: {}
|
80
|
+
};
|
81
|
+
var touchStart = {
|
82
|
+
x: 0,
|
83
|
+
y: 0,
|
84
|
+
active: false
|
85
|
+
};
|
86
|
+
this.panResponder = PanResponder.create({
|
87
|
+
onStartShouldSetPanResponder: (evt, gestureState) => {
|
88
|
+
return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);
|
89
|
+
},
|
90
|
+
onStartShouldSetPanResponderCapture: (evt, gestureState) => {
|
91
|
+
return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);
|
92
|
+
},
|
93
|
+
onMoveShouldSetPanResponder: (evt, gestureState) => {
|
94
|
+
return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);
|
95
|
+
},
|
96
|
+
onMoveShouldSetPanResponderCapture: (evt, gestureState) => {
|
97
|
+
return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);
|
98
|
+
},
|
99
|
+
onPanResponderMove: (evt, gestureState) => {
|
100
|
+
this.onChange(gestureState);
|
101
|
+
},
|
102
|
+
onPanResponderRelease: (evt, gestureState) => {
|
103
|
+
if (this.props.direction === 'horizontal' && (gestureState.dx > this.state.threshold || gestureState.dx < -this.state.threshold)) {
|
104
|
+
this.onEnd(gestureState);
|
105
|
+
}
|
106
|
+
if (this.props.direction === 'vertical' && (gestureState.dy > this.state.threshold || gestureState.dy < -this.state.threshold)) {
|
107
|
+
this.onEnd(gestureState);
|
108
|
+
}
|
109
|
+
if (!(gestureState.dy > this.state.threshold || gestureState.dy < -this.state.threshold) && !(gestureState.dx > this.state.threshold || gestureState.dx < -this.state.threshold)) {
|
110
|
+
if (this.props.activeIndex) {
|
111
|
+
this.setPosition(this.props.slidesLayout[this.props.activeIndex]);
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
});
|
116
|
+
}
|
117
|
+
computeMaxScroll() {
|
118
|
+
var _this$viewLayout2;
|
119
|
+
let max = Number.MAX_VALUE;
|
120
|
+
const childrenWidth = this.childrenLayout.reduce((s, v) => s + v.width, 0);
|
121
|
+
const childrenHeight = this.childrenLayout.reduce((s, v) => s + v.height, 0);
|
122
|
+
if (this.props.direction === 'horizontal') {
|
123
|
+
var _this$viewLayout;
|
124
|
+
if (childrenWidth && (_this$viewLayout = this.viewLayout) !== null && _this$viewLayout !== void 0 && _this$viewLayout.width) {
|
125
|
+
max = childrenWidth - this.viewLayout.width;
|
126
|
+
}
|
127
|
+
} else if (childrenHeight && (_this$viewLayout2 = this.viewLayout) !== null && _this$viewLayout2 !== void 0 && _this$viewLayout2.height) {
|
128
|
+
max = childrenHeight - this.viewLayout.height;
|
129
|
+
}
|
130
|
+
this.setState({
|
131
|
+
maxPosition: -1 * max
|
132
|
+
});
|
133
|
+
}
|
134
|
+
setChildrenLayout(event, index) {
|
135
|
+
this.childrenLayout[index] = event.nativeEvent.layout;
|
136
|
+
this.computeMaxScroll();
|
137
|
+
}
|
138
|
+
setViewLayout(event) {
|
139
|
+
this.viewLayout = event.nativeEvent.layout;
|
140
|
+
this.computeMaxScroll();
|
141
|
+
}
|
142
|
+
computePhase(value) {
|
143
|
+
var _this$props$handlers5, _this$props$handlers6;
|
144
|
+
return ((_this$props$handlers5 = this.props.handlers) === null || _this$props$handlers5 === void 0 ? void 0 : _this$props$handlers5.computePhase) && ((_this$props$handlers6 = this.props.handlers) === null || _this$props$handlers6 === void 0 ? void 0 : _this$props$handlers6.computePhase(value)) || 0;
|
145
|
+
}
|
146
|
+
isRTL() {
|
147
|
+
return this.i18nService.isRTLLocale();
|
148
|
+
}
|
149
|
+
goToLower(e) {
|
150
|
+
var _this$props$handlers7, _this$props$handlers8;
|
151
|
+
const bounds = ((_this$props$handlers7 = this.props.handlers) === null || _this$props$handlers7 === void 0 ? void 0 : _this$props$handlers7.bounds) && ((_this$props$handlers8 = this.props.handlers) === null || _this$props$handlers8 === void 0 ? void 0 : _this$props$handlers8.bounds(e)) || {};
|
152
|
+
console.log("🚀 ~ View ~ goToLower ~ bounds:", bounds);
|
153
|
+
this.setPosition(bounds.lower).then(() => {
|
154
|
+
if (!isNil(bounds.lower) && bounds.center !== bounds.lower) {
|
155
|
+
var _this$props$handlers9, _this$props$handlers10;
|
156
|
+
((_this$props$handlers9 = this.props.handlers) === null || _this$props$handlers9 === void 0 ? void 0 : _this$props$handlers9.onLower) && ((_this$props$handlers10 = this.props.handlers) === null || _this$props$handlers10 === void 0 ? void 0 : _this$props$handlers10.onLower(e));
|
157
|
+
}
|
158
|
+
});
|
159
|
+
}
|
160
|
+
goToUpper(e) {
|
161
|
+
var _this$props$handlers11, _this$props$handlers12;
|
162
|
+
const bounds = ((_this$props$handlers11 = this.props.handlers) === null || _this$props$handlers11 === void 0 ? void 0 : _this$props$handlers11.bounds) && ((_this$props$handlers12 = this.props.handlers) === null || _this$props$handlers12 === void 0 ? void 0 : _this$props$handlers12.bounds(e)) || {};
|
163
|
+
this.setPosition(bounds.upper).then(() => {
|
164
|
+
if (!isNil(bounds.upper) && bounds.center !== bounds.upper) {
|
165
|
+
var _this$props$handlers13, _this$props$handlers14;
|
166
|
+
((_this$props$handlers13 = this.props.handlers) === null || _this$props$handlers13 === void 0 ? void 0 : _this$props$handlers13.onUpper) && ((_this$props$handlers14 = this.props.handlers) === null || _this$props$handlers14 === void 0 ? void 0 : _this$props$handlers14.onUpper(e));
|
167
|
+
}
|
168
|
+
});
|
169
|
+
}
|
170
|
+
setPosition(value) {
|
171
|
+
if (isNil(value)) {
|
172
|
+
return Promise.reject();
|
173
|
+
}
|
174
|
+
let position = isNaN(this.state.maxPosition) ? value : Math.max(this.state.maxPosition, value);
|
175
|
+
return new Promise(resolve => {
|
176
|
+
Animated.parallel([Animated.timing(this.animationPhase, {
|
177
|
+
useNativeDriver: true,
|
178
|
+
toValue: this.computePhase(value),
|
179
|
+
duration: 200,
|
180
|
+
easing: Easing.out(Easing.linear)
|
181
|
+
}), Animated.timing(this.position, {
|
182
|
+
useNativeDriver: true,
|
183
|
+
toValue: (this.isRTL() ? -1 : 1) * position,
|
184
|
+
duration: 200,
|
185
|
+
easing: Easing.out(Easing.linear)
|
186
|
+
})]).start(resolve);
|
187
|
+
});
|
188
|
+
}
|
189
|
+
render() {
|
190
|
+
const isHorizontal = this.props.direction === 'horizontal';
|
191
|
+
return (
|
192
|
+
/*#__PURE__*/
|
193
|
+
//@ts-ignore
|
194
|
+
React.createElement(RNView, _extends({
|
195
|
+
style: [isHorizontal ? {
|
196
|
+
flexDirection: 'row',
|
197
|
+
flexWrap: 'nowrap',
|
198
|
+
alignItems: 'center'
|
199
|
+
} : null, this.props.style],
|
200
|
+
onLayout: this.setViewLayout.bind(this)
|
201
|
+
}, this.panResponder.panHandlers), this.props.children.map((c, i) => {
|
202
|
+
var _this$props$style;
|
203
|
+
return /*#__PURE__*/React.createElement(Animated.View, {
|
204
|
+
onLayout: e => this.setChildrenLayout(e, i),
|
205
|
+
key: c.key,
|
206
|
+
style: [this.props.slideMinWidth ? {
|
207
|
+
minWidth: this.props.slideMinWidth
|
208
|
+
} : {
|
209
|
+
width: this.props.slideWidth
|
210
|
+
}, ((_this$props$style = this.props.style) === null || _this$props$style === void 0 ? void 0 : _this$props$style.height) === '100%' ? {
|
211
|
+
height: '100%'
|
212
|
+
} : null, {
|
213
|
+
transform: this.state.isHorizontal ? [{
|
214
|
+
translateX: this.position
|
215
|
+
}] : [{
|
216
|
+
translateY: this.position
|
217
|
+
}]
|
218
|
+
}]
|
219
|
+
}, c);
|
220
|
+
}))
|
221
|
+
);
|
222
|
+
}
|
223
|
+
}
|
224
|
+
_defineProperty(View, "defaultProps", new Props());
|
225
|
+
//# sourceMappingURL=carousel-swipe.animation.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["isNil","React","Animated","Easing","View","RNView","PanResponder","injector","Handlers","constructor","_defineProperty","Props","undefined","State","Number","MAX_VALUE","Component","props","Value","I18nService","get","dx","dy","gestureEnableThreshold","shouldEnable","direction","Math","abs","enableGestures","e","_this$props$handlers","_this$props$handlers2","bounds","handlers","d","state","isHorizontal","phase","computePhase","center","lower","upper","animationPhase","setValue","position","isRTL","_this$props$handlers3","_this$props$handlers4","onAnimation","goToLower","goToUpper","threshold","touchStart","x","y","active","panResponder","create","onStartShouldSetPanResponder","evt","gestureState","shouldEnablePanResponder","onStartShouldSetPanResponderCapture","onMoveShouldSetPanResponder","onMoveShouldSetPanResponderCapture","onPanResponderMove","onChange","onPanResponderRelease","onEnd","activeIndex","setPosition","slidesLayout","computeMaxScroll","_this$viewLayout2","max","childrenWidth","childrenLayout","reduce","s","v","width","childrenHeight","height","_this$viewLayout","viewLayout","setState","maxPosition","setChildrenLayout","event","index","nativeEvent","layout","setViewLayout","value","_this$props$handlers5","_this$props$handlers6","i18nService","isRTLLocale","_this$props$handlers7","_this$props$handlers8","console","log","then","_this$props$handlers9","_this$props$handlers10","onLower","_this$props$handlers11","_this$props$handlers12","_this$props$handlers13","_this$props$handlers14","onUpper","Promise","reject","isNaN","resolve","parallel","timing","useNativeDriver","toValue","duration","easing","out","linear","start","render","createElement","_extends","style","flexDirection","flexWrap","alignItems","onLayout","bind","panHandlers","children","map","c","i","_this$props$style","key","slideMinWidth","minWidth","slideWidth","transform","translateX","translateY"],"sources":["carousel-swipe.animation.tsx"],"sourcesContent":["import { isNil } from 'lodash-es';\nimport React from 'react';\nimport { Animated, Easing, View as RNView, ViewStyle, LayoutChangeEvent, LayoutRectangle, DimensionValue, PanResponder } from 'react-native';\nimport { Gesture, GestureDetector, GestureUpdateEvent } from 'react-native-gesture-handler';\nimport { isWebPreviewMode } from '@wavemaker/app-rn-runtime/core/utils';\nimport injector from '@wavemaker/app-rn-runtime/core/injector';\n\nexport class Handlers {\n bounds?: (g: GestureUpdateEvent<any>) => Bounds = null as any;\n onAnimation?: (g: GestureUpdateEvent<any>) => any = () => { };\n onLower?: (g: GestureUpdateEvent<any>) => any = () => { };\n onUpper?: (g: GestureUpdateEvent<any>) => any = () => { };\n computePhase?: (value: number) => number = null as any;\n}\n\nexport interface Bounds {\n upper?: number;\n center?: number;\n lower?: number;\n}\n\nexport class Props {\n threshold?: number = 5;\n direction?: 'horizontal' | 'vertical' = 'horizontal';\n handlers?: Handlers = {} as any;\n style?: ViewStyle = {} as any;\n children: any;\n enableGestures: any;\n slideWidth?: DimensionValue = '100%';\n slideMinWidth?: DimensionValue = undefined;\n slidesLayout?: any = [];\n activeIndex?: number | null = null;\n}\n\nexport class State {\n threshold = 5;\n isHorizontal = false;\n bounds: Bounds = {} as any;\n maxPosition = Number.MAX_VALUE;\n}\n\nexport class View extends React.Component<Props, State> {\n\n static defaultProps = new Props();\n private position = new Animated.Value(0);\n public animationPhase = new Animated.Value(0);\n private i18nService = injector.I18nService.get();\n private childrenLayout: LayoutRectangle[] = [];\n private viewLayout: LayoutRectangle = null as any;\n private panResponder: any = null;\n\n constructor(props: Props) {\n super(props);\n this.state = {\n isHorizontal: props.direction === 'horizontal',\n threshold: props.threshold || 49,\n bounds: {} as any\n } as State;\n var touchStart = {\n x: 0,\n y: 0,\n active: false\n };\n\n this.panResponder = PanResponder.create({\n onStartShouldSetPanResponder: (evt, gestureState) => {\n return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);\n },\n onStartShouldSetPanResponderCapture: (evt, gestureState) => {\n return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);\n },\n onMoveShouldSetPanResponder: (evt, gestureState) => {\n return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);\n },\n onMoveShouldSetPanResponderCapture: (evt, gestureState) =>{\n return this.shouldEnablePanResponder(gestureState.dx, gestureState.dy);\n },\n onPanResponderMove: (evt, gestureState) => {\n this.onChange(gestureState)\n },\n onPanResponderRelease: (evt, gestureState) => {\n if (\n this.props.direction === 'horizontal' && \n (gestureState.dx > this.state.threshold || gestureState.dx < -this.state.threshold)\n ) {\n this.onEnd(gestureState);\n }\n if (\n this.props.direction === 'vertical' && \n (gestureState.dy > this.state.threshold || gestureState.dy < -this.state.threshold)\n ) {\n this.onEnd(gestureState);\n }\n\n if (\n !(gestureState.dy > this.state.threshold || gestureState.dy < -this.state.threshold) && \n !(gestureState.dx > this.state.threshold || gestureState.dx < -this.state.threshold)\n ) {\n if (this.props.activeIndex) {\n this.setPosition(this.props.slidesLayout[this.props.activeIndex])\n }\n }\n }\n });\n\n }\n\n\n shouldEnablePanResponder = (dx: number, dy: number) => {\n const gestureEnableThreshold = 30;\n\n const shouldEnable = (this.props.direction === 'horizontal' ? Math.abs(dx) > Math.abs(dy) : Math.abs(dx) < Math.abs(dy)) &&\n (this.props.direction === 'horizontal' ? Math.abs(dx) > gestureEnableThreshold : Math.abs(dy) > gestureEnableThreshold)\n\n return this.props.enableGestures && shouldEnable;\n }\n\n onChange = (e: any) => {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n const d = (this.state.isHorizontal ? e.dx : e.dy);\n let phase = this.computePhase(bounds?.center || 0);\n if (d && d < 0 && !isNil(bounds.center) && !isNil(bounds.lower)\n && bounds.center !== bounds.lower) {\n phase += (d / (bounds.center - bounds.lower)) || 0;\n } else if (d && d > 0 && !isNil(bounds.center) && !isNil(bounds.upper)\n && bounds.center !== bounds.upper) {\n phase += (d / (bounds.upper - bounds.center)) || 0;\n }\n this.animationPhase.setValue(phase);\n this.position.setValue(\n (this.isRTL() ? -bounds?.center! : bounds?.center || 0) + d);\n }\n\n onEnd = (e: any) => {\n this.props.handlers?.onAnimation &&\n this.props.handlers?.onAnimation(e);\n if (e.dx < 0) {\n this.isRTL() ? this.goToLower(e) : this.goToUpper(e);\n } else if (e.dx > 0) {\n this.isRTL() ? this.goToUpper(e) : this.goToLower(e);\n }\n }\n\n computeMaxScroll() {\n let max = Number.MAX_VALUE;\n const childrenWidth = this.childrenLayout.reduce((s, v) => s + v.width, 0);\n const childrenHeight = this.childrenLayout.reduce((s, v) => s + v.height, 0);\n if (this.props.direction === 'horizontal') {\n if (childrenWidth && this.viewLayout?.width) {\n max = childrenWidth - this.viewLayout.width;\n }\n } else if (childrenHeight && this.viewLayout?.height) {\n max = childrenHeight - this.viewLayout.height;\n }\n this.setState({ maxPosition: -1 * max });\n }\n\n setChildrenLayout(event: LayoutChangeEvent, index: number) {\n this.childrenLayout[index] = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n setViewLayout(event: LayoutChangeEvent) {\n this.viewLayout = event.nativeEvent.layout;\n this.computeMaxScroll();\n }\n\n computePhase(value: number) {\n return (this.props.handlers?.computePhase &&\n this.props.handlers?.computePhase(value)) || 0;\n }\n\n isRTL() {\n return this.i18nService.isRTLLocale();\n }\n\n goToLower(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n console.log(\"🚀 ~ View ~ goToLower ~ bounds:\", bounds)\n this.setPosition(bounds.lower)\n .then(() => {\n if (!isNil(bounds.lower) && bounds.center !== bounds.lower) {\n this.props.handlers?.onLower &&\n this.props.handlers?.onLower(e);\n }\n });\n }\n\n goToUpper(e?: any) {\n const bounds = (this.props.handlers?.bounds && this.props.handlers?.bounds(e)) || {};\n this.setPosition(bounds.upper)\n .then(() => {\n if (!isNil(bounds.upper) && bounds.center !== bounds.upper) {\n this.props.handlers?.onUpper &&\n this.props.handlers?.onUpper(e);\n }\n });\n }\n\n setPosition(value: number | undefined) {\n if (isNil(value)) {\n return Promise.reject();\n }\n let position = isNaN(this.state.maxPosition) ? value : Math.max(this.state.maxPosition, value);\n return new Promise((resolve) => {\n Animated.parallel([\n Animated.timing(this.animationPhase, {\n useNativeDriver: true,\n toValue: this.computePhase(value),\n duration: 200,\n easing: Easing.out(Easing.linear)\n }),\n Animated.timing(this.position, {\n useNativeDriver: true,\n toValue: (this.isRTL() ? -1 : 1) * position,\n duration: 200,\n easing: Easing.out(Easing.linear)\n })\n ]).start(resolve);\n });\n }\n\n public render() {\n const isHorizontal = this.props.direction === 'horizontal';\n return (\n //@ts-ignore\n <RNView style={[\n isHorizontal ? {\n flexDirection: 'row',\n flexWrap: 'nowrap',\n alignItems: 'center',\n } : null,\n this.props.style]}\n onLayout={this.setViewLayout.bind(this)}\n {...this.panResponder.panHandlers}\n >\n {this.props.children.map((c: any, i: number) => {\n return (<Animated.View onLayout={(e) => this.setChildrenLayout(e, i)} key={c.key}\n style={[this.props.slideMinWidth ? {\n minWidth: this.props.slideMinWidth\n } : {\n width: this.props.slideWidth\n },\n this.props.style?.height === '100%' ? {\n height: '100%'\n } : null,\n {\n transform: this.state.isHorizontal ? [{\n translateX: this.position\n }] : [{\n translateY: this.position\n }]\n }\n ]}>\n {c}\n </Animated.View>);\n })}\n </RNView>\n );\n }\n\n}\n"],"mappings":"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","ignoreList":[]}
|