This repository was archived by the owner on Mar 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
715 lines (624 loc) · 21.4 KB
/
index.tsx
File metadata and controls
715 lines (624 loc) · 21.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
import React, { PureComponent } from 'react'
import {
Animated,
Easing,
GestureResponderEvent,
LayoutChangeEvent,
PanResponder,
PanResponderGestureState,
StyleProp,
StyleSheet,
View,
ViewStyle,
} from 'react-native'
function noop() {}
type SwipeableActionHandler = (
e: GestureResponderEvent,
gestureState: PanResponderGestureState,
swipeable: Swipeable
) => void
type SwipeableTriggerType =
| 'onLeftActionActivate'
| 'onLeftActionDeactivate'
| 'onLeftActionRelease'
| 'onLeftActionComplete'
| 'onRightActionActivate'
| 'onRightActionDeactivate'
| 'onRightActionRelease'
| 'onRightActionComplete'
| 'onLeftButtonsActivate'
| 'onLeftButtonsDeactivate'
| 'onLeftButtonsOpenRelease'
| 'onLeftButtonsOpenComplete'
| 'onLeftButtonsCloseRelease'
| 'onLeftButtonsCloseComplete'
| 'onRightButtonsActivate'
| 'onRightButtonsDeactivate'
| 'onRightButtonsOpenRelease'
| 'onRightButtonsOpenComplete'
| 'onRightButtonsCloseRelease'
| 'onRightButtonsCloseComplete'
| 'onSwipeStart'
| 'onSwipeMove'
| 'onSwipeRelease'
| 'onSwipeComplete'
type SwipeableAnimationFn<TConfig extends Animated.AnimationConfig = Animated.AnimationConfig> = (
pan: Animated.ValueXY,
config: TConfig
) => Animated.CompositeAnimation
export type SwipeableProps = {
leftContent: React.ReactNode
rightContent: React.ReactNode
leftButtons: React.ReactNode[] | null
rightButtons: React.ReactNode[] | null
} & Partial<Record<SwipeableTriggerType, SwipeableActionHandler>> & {
leftActionActivationDistance: number
leftActionReleaseAnimationFn: SwipeableAnimationFn | null
leftActionReleaseAnimationConfig: Animated.TimingAnimationConfig | null
leftButtonWidth: number
leftButtonsActivationDistance: number
leftButtonsOpenReleaseAnimationFn: SwipeableAnimationFn | null
leftButtonsOpenReleaseAnimationConfig: Animated.AnimationConfig | null
leftButtonsCloseReleaseAnimationFn: SwipeableAnimationFn | null
leftButtonsCloseReleaseAnimationConfig: Animated.TimingAnimationConfig | null
rightActionActivationDistance: number
rightActionReleaseAnimationFn: SwipeableAnimationFn | null
rightActionReleaseAnimationConfig: Animated.TimingAnimationConfig | null
rightButtonWidth: number
rightButtonsActivationDistance: number
rightButtonsOpenReleaseAnimationFn: SwipeableAnimationFn | null
rightButtonsOpenReleaseAnimationConfig: Animated.AnimationConfig | null
rightButtonsCloseReleaseAnimationFn: SwipeableAnimationFn | null
rightButtonsCloseReleaseAnimationConfig: Animated.TimingAnimationConfig | null
swipeReleaseAnimationFn: SwipeableAnimationFn<Animated.TimingAnimationConfig>
swipeReleaseAnimationConfig: Animated.TimingAnimationConfig
onRef: (swipeable: Swipeable) => void
onPanAnimatedValueRef: (pan: Animated.AnimatedValueXY) => void
swipeStartMinDistance: number
style?: StyleProp<ViewStyle>
leftContainerStyle?: StyleProp<ViewStyle>
leftButtonContainerStyle?: StyleProp<ViewStyle>
rightContainerStyle?: StyleProp<ViewStyle>
rightButtonContainerStyle?: StyleProp<ViewStyle>
contentContainerStyle?: StyleProp<ViewStyle>
}
type SwipeableState = {
width: number
lastOffset: { x: number; y: number }
leftActionActivated: boolean
leftButtonsActivated: boolean
leftButtonsOpen: boolean
rightActionActivated: boolean
rightButtonsActivated: boolean
rightButtonsOpen: boolean
}
export default class Swipeable extends PureComponent<SwipeableProps, SwipeableState> {
private pan = new Animated.ValueXY()
private unmounted = false
private handlePan = Animated.event([
null,
{
dx: this.pan.x,
dy: this.pan.y,
},
])
static defaultProps: SwipeableProps = {
leftContent: null,
rightContent: null,
leftButtons: null,
rightButtons: null,
// left action lifecycle
onLeftActionActivate: noop,
onLeftActionDeactivate: noop,
onLeftActionRelease: noop,
onLeftActionComplete: noop,
leftActionActivationDistance: 125,
leftActionReleaseAnimationFn: null,
leftActionReleaseAnimationConfig: null,
// right action lifecycle
onRightActionActivate: noop,
onRightActionDeactivate: noop,
onRightActionRelease: noop,
onRightActionComplete: noop,
rightActionActivationDistance: 125,
rightActionReleaseAnimationFn: null,
rightActionReleaseAnimationConfig: null,
// left buttons lifecycle
onLeftButtonsActivate: noop,
onLeftButtonsDeactivate: noop,
onLeftButtonsOpenRelease: noop,
onLeftButtonsOpenComplete: noop,
onLeftButtonsCloseRelease: noop,
onLeftButtonsCloseComplete: noop,
leftButtonWidth: 75,
leftButtonsActivationDistance: 75,
leftButtonsOpenReleaseAnimationFn: null,
leftButtonsOpenReleaseAnimationConfig: null,
leftButtonsCloseReleaseAnimationFn: null,
leftButtonsCloseReleaseAnimationConfig: null,
// right buttons lifecycle
onRightButtonsActivate: noop,
onRightButtonsDeactivate: noop,
onRightButtonsOpenRelease: noop,
onRightButtonsOpenComplete: noop,
onRightButtonsCloseRelease: noop,
onRightButtonsCloseComplete: noop,
rightButtonWidth: 75,
rightButtonsActivationDistance: 75,
rightButtonsOpenReleaseAnimationFn: null,
rightButtonsOpenReleaseAnimationConfig: null,
rightButtonsCloseReleaseAnimationFn: null,
rightButtonsCloseReleaseAnimationConfig: null,
// base swipe lifecycle
onSwipeStart: noop,
onSwipeMove: noop,
onSwipeRelease: noop,
onSwipeComplete: noop,
swipeReleaseAnimationFn: Animated.timing,
swipeReleaseAnimationConfig: {
toValue: { x: 0, y: 0 },
duration: 250,
easing: Easing.elastic(0.5),
useNativeDriver: false,
},
// misc
onRef: noop,
onPanAnimatedValueRef: noop,
swipeStartMinDistance: 15,
}
constructor(props: SwipeableProps) {
super(props)
this.state = {
width: 0,
lastOffset: { x: 0, y: 0 },
leftActionActivated: false,
leftButtonsActivated: false,
leftButtonsOpen: false,
rightActionActivated: false,
rightButtonsActivated: false,
rightButtonsOpen: false,
}
}
UNSAFE_componentWillMount() {
const { onPanAnimatedValueRef, onRef } = this.props
onRef(this)
onPanAnimatedValueRef(this.pan)
}
componentWillUnmount() {
this.unmounted = true
}
recenter = (
animationFn: SwipeableAnimationFn<Animated.TimingAnimationConfig> = this.props.swipeReleaseAnimationFn,
animationConfig: Animated.TimingAnimationConfig = this.props.swipeReleaseAnimationConfig,
onDone: Parameters<Animated.CompositeAnimation['start']>[0] = undefined
) => {
const { pan } = this
this.setState({
lastOffset: { x: 0, y: 0 },
leftActionActivated: false,
leftButtonsActivated: false,
leftButtonsOpen: false,
rightActionActivated: false,
rightButtonsActivated: false,
rightButtonsOpen: false,
})
pan.flattenOffset()
animationFn(pan, animationConfig).start(onDone)
}
private handleMoveShouldSetPanResponder = (event: GestureResponderEvent, gestureState: PanResponderGestureState) =>
Math.abs(gestureState.dx) > this.props.swipeStartMinDistance
private handlePanResponderStart = (event: GestureResponderEvent, gestureState: PanResponderGestureState) => {
const { lastOffset } = this.state
const { pan } = this
pan.setOffset(lastOffset)
this.props.onSwipeStart?.(event, gestureState, this)
}
private handlePanResponderMove = (event: GestureResponderEvent, gestureState: PanResponderGestureState) => {
const {
leftActionActivationDistance,
leftButtonsActivationDistance,
onLeftActionActivate,
onLeftActionDeactivate,
onLeftButtonsActivate,
onLeftButtonsDeactivate,
rightActionActivationDistance,
rightButtonsActivationDistance,
onRightActionActivate,
onRightActionDeactivate,
onRightButtonsActivate,
onRightButtonsDeactivate,
onSwipeMove,
} = this.props
const {
lastOffset,
leftActionActivated,
leftButtonsActivated,
rightActionActivated,
rightButtonsActivated,
} = this.state
const { dx, vx } = gestureState
const x = dx + lastOffset.x
const canSwipeRight = this.canSwipeRight()
const canSwipeLeft = this.canSwipeLeft()
const hasLeftButtons = this.hasLeftButtons()
const hasRightButtons = this.hasRightButtons()
const isSwipingLeft = vx < 0
const isSwipingRight = vx > 0
let nextLeftActionActivated = leftActionActivated
let nextLeftButtonsActivated = leftButtonsActivated
let nextRightActionActivated = rightActionActivated
let nextRightButtonsActivated = rightButtonsActivated
this.handlePan(event, gestureState)
onSwipeMove?.(event, gestureState, this)
if (!leftActionActivated && canSwipeRight && x >= leftActionActivationDistance) {
nextLeftActionActivated = true
onLeftActionActivate?.(event, gestureState, this)
}
if (leftActionActivated && canSwipeRight && x < leftActionActivationDistance) {
nextLeftActionActivated = false
onLeftActionDeactivate?.(event, gestureState, this)
}
if (!rightActionActivated && canSwipeLeft && x <= -rightActionActivationDistance) {
nextRightActionActivated = true
onRightActionActivate?.(event, gestureState, this)
}
if (rightActionActivated && canSwipeLeft && x > -rightActionActivationDistance) {
nextRightActionActivated = false
onRightActionDeactivate?.(event, gestureState, this)
}
if (!leftButtonsActivated && hasLeftButtons && !isSwipingLeft && x >= leftButtonsActivationDistance) {
nextLeftButtonsActivated = true
onLeftButtonsActivate?.(event, gestureState, this)
}
if (leftButtonsActivated && hasLeftButtons && isSwipingLeft) {
nextLeftButtonsActivated = false
onLeftButtonsDeactivate?.(event, gestureState, this)
}
if (!rightButtonsActivated && hasRightButtons && !isSwipingRight && x <= -rightButtonsActivationDistance) {
nextRightButtonsActivated = true
onRightButtonsActivate?.(event, gestureState, this)
}
if (rightButtonsActivated && hasRightButtons && isSwipingRight) {
nextRightButtonsActivated = false
onRightButtonsDeactivate?.(event, gestureState, this)
}
const needsUpdate =
nextLeftActionActivated !== leftActionActivated ||
nextLeftButtonsActivated !== leftButtonsActivated ||
nextRightActionActivated !== rightActionActivated ||
nextRightButtonsActivated !== rightButtonsActivated
if (needsUpdate) {
this.setState({
leftActionActivated: nextLeftActionActivated,
leftButtonsActivated: nextLeftButtonsActivated,
rightActionActivated: nextRightActionActivated,
rightButtonsActivated: nextRightButtonsActivated,
})
}
}
private handlePanResponderEnd = (event: GestureResponderEvent, gestureState: PanResponderGestureState) => {
const {
onLeftActionRelease,
onLeftActionDeactivate,
onLeftButtonsOpenRelease,
onLeftButtonsCloseRelease,
onRightActionRelease,
onRightActionDeactivate,
onRightButtonsOpenRelease,
onRightButtonsCloseRelease,
onSwipeRelease,
} = this.props
const {
leftActionActivated,
leftButtonsOpen,
leftButtonsActivated,
rightActionActivated,
rightButtonsOpen,
rightButtonsActivated,
} = this.state
const { pan } = this
const animationFn = this.getReleaseAnimationFn()
const animationConfig = this.getReleaseAnimationConfig()
onSwipeRelease?.(event, gestureState, this)
if (leftActionActivated) {
onLeftActionRelease?.(event, gestureState, this)
}
if (rightActionActivated) {
onRightActionRelease?.(event, gestureState, this)
}
if (leftButtonsActivated && !leftButtonsOpen) {
onLeftButtonsOpenRelease?.(event, gestureState, this)
}
if (!leftButtonsActivated && leftButtonsOpen) {
onLeftButtonsCloseRelease?.(event, gestureState, this)
}
if (rightButtonsActivated && !rightButtonsOpen) {
onRightButtonsOpenRelease?.(event, gestureState, this)
}
if (!rightButtonsActivated && rightButtonsOpen) {
onRightButtonsCloseRelease?.(event, gestureState, this)
}
let x: number = 0
let y: number = 0
if (
typeof animationConfig.toValue === 'object' &&
animationConfig.toValue.hasOwnProperty('x') &&
animationConfig.toValue.hasOwnProperty('y')
) {
const toValue = animationConfig.toValue as { x: number; y: number }
if (typeof toValue.x === 'number') {
x = toValue.x
}
if (typeof toValue.y === 'number') {
y = toValue.y
}
}
this.setState({
lastOffset: { x, y },
leftActionActivated: false,
rightActionActivated: false,
leftButtonsOpen: leftButtonsActivated,
rightButtonsOpen: rightButtonsActivated,
})
pan.flattenOffset()
animationFn(pan, animationConfig).start(() => {
if (this.unmounted) {
return
}
const {
onLeftActionComplete,
onLeftButtonsOpenComplete,
onLeftButtonsCloseComplete,
onRightActionComplete,
onRightButtonsOpenComplete,
onRightButtonsCloseComplete,
onSwipeComplete,
} = this.props
onSwipeComplete?.(event, gestureState, this)
if (leftActionActivated) {
onLeftActionComplete?.(event, gestureState, this)
onLeftActionDeactivate?.(event, gestureState, this)
}
if (rightActionActivated) {
onRightActionComplete?.(event, gestureState, this)
onRightActionDeactivate?.(event, gestureState, this)
}
if (leftButtonsActivated && !leftButtonsOpen) {
onLeftButtonsOpenComplete?.(event, gestureState, this)
}
if (!leftButtonsActivated && leftButtonsOpen) {
onLeftButtonsCloseComplete?.(event, gestureState, this)
}
if (rightButtonsActivated && !rightButtonsOpen) {
onRightButtonsOpenComplete?.(event, gestureState, this)
}
if (!rightButtonsActivated && rightButtonsOpen) {
onRightButtonsCloseComplete?.(event, gestureState, this)
}
})
}
private panResponder = PanResponder.create({
onMoveShouldSetPanResponder: this.handleMoveShouldSetPanResponder,
onMoveShouldSetPanResponderCapture: this.handleMoveShouldSetPanResponder,
onPanResponderGrant: this.handlePanResponderStart,
onPanResponderMove: this.handlePanResponderMove,
onPanResponderRelease: this.handlePanResponderEnd,
onPanResponderTerminate: this.handlePanResponderEnd,
onPanResponderTerminationRequest: (event, gestureState) => {
this.handlePanResponderEnd(event, gestureState)
return false
},
})
private handleLayout = ({
nativeEvent: {
layout: { width },
},
}: LayoutChangeEvent) => this.setState({ width })
private canSwipeRight = () => {
return this.props.leftContent || this.hasLeftButtons()
}
private canSwipeLeft = () => {
return this.props.rightContent || this.hasRightButtons()
}
private hasLeftButtons = () => {
const { leftButtons, leftContent } = this.props
return !leftContent && leftButtons && leftButtons.length
}
private hasRightButtons = () => {
const { rightButtons, rightContent } = this.props
return !rightContent && rightButtons && rightButtons.length
}
private getReleaseAnimationFn = () => {
const {
leftActionReleaseAnimationFn,
leftButtonsOpenReleaseAnimationFn,
leftButtonsCloseReleaseAnimationFn,
rightActionReleaseAnimationFn,
rightButtonsOpenReleaseAnimationFn,
rightButtonsCloseReleaseAnimationFn,
swipeReleaseAnimationFn,
} = this.props
const {
leftActionActivated,
leftButtonsActivated,
leftButtonsOpen,
rightActionActivated,
rightButtonsActivated,
rightButtonsOpen,
} = this.state
if (leftActionActivated && leftActionReleaseAnimationFn) {
return leftActionReleaseAnimationFn
}
if (rightActionActivated && rightActionReleaseAnimationFn) {
return rightActionReleaseAnimationFn
}
if (leftButtonsActivated && leftButtonsOpenReleaseAnimationFn) {
return leftButtonsOpenReleaseAnimationFn
}
if (!leftButtonsActivated && leftButtonsOpen && leftButtonsCloseReleaseAnimationFn) {
return leftButtonsCloseReleaseAnimationFn
}
if (rightButtonsActivated && rightButtonsOpenReleaseAnimationFn) {
return rightButtonsOpenReleaseAnimationFn
}
if (!rightButtonsActivated && rightButtonsOpen && rightButtonsCloseReleaseAnimationFn) {
return rightButtonsCloseReleaseAnimationFn
}
return swipeReleaseAnimationFn
}
private getReleaseAnimationConfig = (): Animated.TimingAnimationConfig => {
const {
leftActionReleaseAnimationConfig,
leftButtons,
leftButtonsOpenReleaseAnimationConfig,
leftButtonsCloseReleaseAnimationConfig,
leftButtonWidth,
rightActionReleaseAnimationConfig,
rightButtons,
rightButtonsOpenReleaseAnimationConfig,
rightButtonsCloseReleaseAnimationConfig,
rightButtonWidth,
swipeReleaseAnimationConfig,
} = this.props
const {
leftActionActivated,
leftButtonsActivated,
leftButtonsOpen,
rightActionActivated,
rightButtonsActivated,
rightButtonsOpen,
} = this.state
if (leftActionActivated && leftActionReleaseAnimationConfig) {
return leftActionReleaseAnimationConfig
}
if (rightActionActivated && rightActionReleaseAnimationConfig) {
return rightActionReleaseAnimationConfig
}
if (leftButtonsActivated) {
return {
...swipeReleaseAnimationConfig,
toValue: {
x: (leftButtons || []).length * leftButtonWidth,
y: 0,
},
...leftButtonsOpenReleaseAnimationConfig,
}
}
if (rightButtonsActivated) {
return {
...swipeReleaseAnimationConfig,
toValue: {
x: (rightButtons || []).length * rightButtonWidth * -1,
y: 0,
},
...rightButtonsOpenReleaseAnimationConfig,
}
}
if (!leftButtonsActivated && leftButtonsOpen && leftButtonsCloseReleaseAnimationConfig) {
return leftButtonsCloseReleaseAnimationConfig
}
if (!rightButtonsActivated && rightButtonsOpen && rightButtonsCloseReleaseAnimationConfig) {
return rightButtonsCloseReleaseAnimationConfig
}
return swipeReleaseAnimationConfig
}
private renderButtons: React.FC<{ buttons: React.ReactNode[] | null; isLeftButtons: boolean }> = (props) => {
const buttons = props.buttons || []
const { isLeftButtons } = props
const { leftButtonContainerStyle, rightButtonContainerStyle } = this.props
const { width } = this.state
const { pan } = this
const canSwipeLeft = this.canSwipeLeft()
const canSwipeRight = this.canSwipeRight()
const count = buttons.length
const leftEnd = canSwipeLeft ? -width : 0
const rightEnd = canSwipeRight ? width : 0
const inputRange = isLeftButtons ? [0, rightEnd] : [leftEnd, 0]
return (
<>
{buttons.map((buttonContent, index) => {
const outputMultiplier = -index / count
const outputRange = isLeftButtons ? [0, rightEnd * outputMultiplier] : [leftEnd * outputMultiplier, 0]
const transform = [
{
translateX: pan.x.interpolate({
inputRange,
outputRange,
extrapolate: 'clamp',
}),
},
]
const buttonStyle = [
StyleSheet.absoluteFill,
{ width, transform },
isLeftButtons ? leftButtonContainerStyle : rightButtonContainerStyle,
]
return (
<Animated.View key={index} style={buttonStyle}>
{buttonContent}
</Animated.View>
)
})}
</>
)
}
render() {
const {
children,
contentContainerStyle,
leftButtons,
leftContainerStyle,
leftContent,
rightButtons,
rightContainerStyle,
rightContent,
style,
...props
} = this.props
const { width } = this.state
const { pan } = this
const canSwipeLeft = this.canSwipeLeft()
const canSwipeRight = this.canSwipeRight()
const transform = [
{
translateX: pan.x.interpolate({
inputRange: [canSwipeLeft ? -width : 0, canSwipeRight ? width : 0],
outputRange: [
canSwipeLeft ? -width + StyleSheet.hairlineWidth : 0,
canSwipeRight ? width - StyleSheet.hairlineWidth : 0,
],
extrapolate: 'clamp',
}),
},
]
const { renderButtons: Buttons } = this
return (
<View
onLayout={this.handleLayout}
style={[styles.container, style]}
{...this.panResponder.panHandlers}
{...props}
>
{canSwipeRight && (
<Animated.View style={[{ transform, marginLeft: -width, width }, leftContainerStyle]}>
{leftContent || <Buttons buttons={leftButtons} isLeftButtons={true} />}
</Animated.View>
)}
<Animated.View style={[{ transform }, styles.content, contentContainerStyle]}>{children}</Animated.View>
{canSwipeLeft && (
<Animated.View style={[{ transform, marginRight: -width, width }, rightContainerStyle]}>
{rightContent || <Buttons buttons={rightButtons} isLeftButtons={false} />}
</Animated.View>
)}
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
},
content: {
flex: 1,
},
})