-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayGround.tsx
408 lines (254 loc) · 9.43 KB
/
PlayGround.tsx
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
/**
* 08-feb-2022 ok i'm doomed officially no progress this semester.. whatever
* since i'm running alot of tests as i learn new thngs from animaions, guesture responding and more..
* i often have to keep switching betwen working on these tests and working of the actual app
* this part of the app will allow me to kepp both things coexist the app is there and the playground is just
* another page like settings page
*
*/
import React, { Component, createRef } from "react"
import {ARTText,TouchableHighlight,PanResponder, Animated,ScrollView,TouchableOpacity, StyleSheet, Text, View, Platform,StatusBar, TextInput, FlatList, Image, Modal, Switch,AsyncStorage, Alert, AlertButton, ProgressBarAndroid, ColorPropType, VirtualizedList, Picker, Dimensions } from 'react-native';
import { runInThisContext } from "vm";
import { verbo } from "./GeneralUtils";
type PlayGround_props = {}
type PlayGround_state = {}
export class PlayGround extends Component<PlayGround_props,PlayGround_state>{
mainFLref: any;
/**
*
*/
constructor(props:PlayGround_props) {
super(props);
this.state={};
this.mydata=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19].map((e)=>{return{key:e.toString(),v:e}})
}
mydata:any
rnd(){
verbo(Object.keys( this.mainFLref.current || {none:0}))
let sres=this.mainFLref.current.getScrollResponder();
//alert(Object.keys( sres))
if(sres&&sres.scrollResponderHandleStartShouldSetResponder){
alert("yes");
(sres.scrollResponderHandleStartShouldSetResponder=(()=>{verbo("asked"); return true}))
}
//alert(this.mainFLref.current?._listRef?._scrollRef.getScrollResponder().scrollResponderHandleStartShouldSetResponder )
//alert("search dev")
}
render(){
return(
<View style={{width:Dimensions.get("window").width}}>
<ScrollView>
{/*<FlatList data={this.mydat} ref={this.mainFLref}
// nestedScrollEnabled={true}
//disableScrollViewPanResponder={true}
style={{backgroundColor:"yellow",maxHeight:250}}
renderItem={(itemm)=>{
if(itemm.item.v==2){
return (<GTestFlatList></GTestFlatList>)
}
else return (<Text style={{color:"white",backgroundColor:"grey"}} >{(itemm.item.v.toString())} okkk </Text>)
}}
>
</FlatList>*/}
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<TouchableHighlight onPress={()=>{}} underlayColor={"#861"} >
<View style={{backgroundColor:"#222", height:300,width:"90%",
flexDirection:"column",justifyContent:"space-around",alignItems:"center"}}>
<Text style={{color:"white"}}>I'm a TouchableHighlight with GTest child component:</Text>
<GSwipeableTest>
<View style={{height:80,backgroundColor:"#519"}}>
<Text>Child that should swipe</Text>
</View>
</GSwipeableTest>
</View>
</TouchableHighlight>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
<Text style={{color:"white"}}>scroll</Text>
</ScrollView>
</View>
)
}
}
type GSwipeableTest_props = {
}
type GSwipeableTest_state = {}
/**
* let's run some pan responder tets here
*/
class GSwipeableTest extends Component<GSwipeableTest_props,GSwipeableTest_state> {
scrllAnim: any;
_panResponder: any;
sc: any;
_handlePanResponderEnd: any;
innerScrollRef:any
constructor(props:GSwipeableTest_props){
super(props)
this.state={
animatedValue: new Animated.Value(0)
}
this._handlePanResponderMove=this._handlePanResponderMove.bind(this)
this._handlePanResponderGrant=this._handlePanResponderGrant.bind(this)
this.scrllAnim= new Animated.ValueXY()
this.sc = new Animated.ValueXY();
this.innerScrollRef=createRef<ScrollView> ()
Animated.spring(this.sc, {toValue:this.scrllAnim,useNativeDriver: false}).start()
this._panResponder=PanResponder.create({
onStartShouldSetPanResponder: this. _handleStartShouldSetPanResponder,
onMoveShouldSetPanResponder: this. _handleMoveShouldSetPanResponder,
onPanResponderGrant: this. _handlePanResponderGrant,
onPanResponderMove: this._handlePanResponderMove,
onPanResponderRelease: this. _handlePanResponderEnd,
onPanResponderTerminate: this. _handlePanResponderEnd,
})
}
capruredOffset:number
_handlePanResponderGrant(e,gestureState){
verbo(Object.keys( this.innerScrollRef.current.getScrollResponder().state))
/// this.innerScrollRef.current.
}
_handlePanResponderMove(e,gestureState){
//verbo(Object.keys(e.nativeEvent))
// Animated.event([{nativeEvent:{locationY:this.scrllAnim}}])(e)
// verbo(Object.keys(e))
// this.innerScrollRef.current.scrollTo({y:0,x:gestureState.dx})
}
_handleMoveShouldSetPanResponder(){
return true
}
_handleStartShouldSetPanResponder(){
return true
}
render(){
return (<Animated.View {...this._panResponder.panHandlers}
style={{backgroundColor:"#266",width:180,height:200,
flexDirection:"column",alignItems:"center",justifyContent:"center"}}>
<Animated.ScrollView
nestedScrollEnabled={true}
onScroll={Animated.event(
[
{
nativeEvent: {
contentOffset: { y: this.state.animatedValue }
}
}
],
{ useNativeDriver: true } // <-- Add this
)} ref={this.innerScrollRef} horizontal pagingEnabled style={{backgroundColor:"#662"}}
>
<Animated.View style={{}}>
<Text style={{color:"white"}}>GSwipeableTest wraper</Text>
{this.props.children}
</Animated.View>
<View style={{backgroundColor:"white",width:150,height:100}} >
</View>
</Animated.ScrollView>
</Animated.View>)
}
}
/**
* let's run some pan responder tets here
*/
class GTest extends Component{
scrllAnim: any;
_panResponder: any;
sc: any;
_handlePanResponderGrant: any;
_handlePanResponderEnd: any;
constructor(props){
super(props)
this.state={
}
this.scrllAnim= new Animated.ValueXY()
this.sc = new Animated.ValueXY();
Animated.spring(this.sc, {toValue:this.scrllAnim,useNativeDriver: false}).start()
this._panResponder=PanResponder.create({
onStartShouldSetPanResponder: this. _handleStartShouldSetPanResponder,
onMoveShouldSetPanResponder: this. _handleMoveShouldSetPanResponder,
onPanResponderGrant: this. _handlePanResponderGrant,
onPanResponderMove: Animated.event(
[null, // ignore the native event
// extract dx and dy from gestureState
// like 'pan.x = gestureState.dx, pan.y = gestureState.dy'
{dx: this.scrllAnim.x, dy: this.scrllAnim.y}
],{useNativeDriver: false}),
onPanResponderRelease: this. _handlePanResponderEnd,
onPanResponderTerminate: this. _handlePanResponderEnd,
})
}
_handlePanResponderMove(e){
//verbo(Object.keys(e.nativeEvent))
// Animated.event([{nativeEvent:{locationY:this.scrllAnim}}])(e)
}
_handleMoveShouldSetPanResponder(){
return true
}
_handleStartShouldSetPanResponder(){
return true
}
render(){
return (<Animated.View {...this._panResponder.panHandlers} style={{backgroundColor:"red",minWidth:20,height:200,
flexDirection:"column",alignItems:"center",justifyContent:"center"}}>
<Animated.View style={{transform:[{ translateY:this.sc.y},{ translateX:this.sc.x}]}}>
<Text style={{color:"white"}}>GTest: Pan Responder Tests Copmonent</Text>
</Animated.View>
</Animated.View>)
}
}
/**
* let's run some pan responder tets here
*/
class GTestFlatList extends Component{
flat_key
myData: { key: number; v: number; }[];
constructor(props){
super(props)
this.state={
tr:0
}
this.flat_key= createRef<FlatList>()
this.myData=[1,2,3,4,5,6,7,8,9,10,12,14,15,16].map((i)=>({key:i,v:i}))
this.handleTweaks=this.handleTweaks.bind(this)
}
componentDidMount(){
this.handleTweaks()
//this.flat_key.current.getScrollResponder().scrollResponderHandleStartShouldSetResponder=(()=>true)
}
handleTweaks(){
let rr = this.flat_key.current.getScrollResponder()
alert(Object.keys( rr||{noneee:0}))
}
render(){
return (
<View style={{backgroundColor:"blue",maxHeight:100}}>
{<FlatList
// nestedScrollEnabled={true}
data={this.myData} ref={this.flat_key}
renderItem={(item)=>(<TouchableOpacity onPress={()=>{}}>
<Text style={{color:"white",width:100,marginVertical:4}}
>GTestFlatList: {item.item.v.toString()} </Text>
</TouchableOpacity> )}
>
</FlatList>}
</View>
)
}
}