-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPresentActionScreen.tsx
More file actions
407 lines (388 loc) · 10.4 KB
/
PresentActionScreen.tsx
File metadata and controls
407 lines (388 loc) · 10.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
import React, { useState } from 'react';
import {
View,
Text,
StyleSheet,
TouchableOpacity,
ScrollView,
Alert,
TextInput,
Platform,
} from 'react-native';
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
import type { RootStackParamList } from '../App';
import {
Atomic,
Environment,
PresentationStyles,
} from '@atomicfi/transact-react-native';
import type { PresentationStyleIOS } from '@atomicfi/transact-react-native';
type Props = NativeStackScreenProps<RootStackParamList, 'PresentAction'>;
type EnvironmentOption = 'sandbox' | 'production' | 'custom';
const PresentActionScreen: React.FC<Props> = () => {
const [actionId, setActionId] = useState('');
const [selectedEnvironment, setSelectedEnvironment] =
useState<EnvironmentOption>('sandbox');
const [customTransactPath, setCustomTransactPath] = useState('');
const [customApiPath, setCustomApiPath] = useState('');
const [isLoading, setIsLoading] = useState(false);
const [presentationStyleIOS, setPresentationStyleIOS] =
useState<PresentationStyleIOS>(PresentationStyles.formSheet);
const environmentOptions = [
{ key: 'sandbox' as EnvironmentOption, label: 'Sandbox' },
{ key: 'production' as EnvironmentOption, label: 'Production' },
{ key: 'custom' as EnvironmentOption, label: 'Custom URL' },
];
const presentationStyleOptions: {
key: PresentationStyleIOS;
label: string;
}[] = [
{ key: PresentationStyles.formSheet, label: 'Form Sheet' },
{ key: PresentationStyles.fullScreen, label: 'Full Screen' },
];
const getEnvironment = () => {
switch (selectedEnvironment) {
case 'sandbox':
return Environment.sandbox;
case 'production':
return Environment.production;
case 'custom': {
const transactPath = customTransactPath.trim();
const apiPath = customApiPath.trim();
return Environment.custom(transactPath, apiPath);
}
default:
return Environment.sandbox;
}
};
const presentAction = () => {
if (!actionId.trim()) {
Alert.alert('Error', 'Please enter a valid action ID');
return;
}
if (
selectedEnvironment === 'custom' &&
(!customTransactPath.trim() || !customApiPath.trim())
) {
Alert.alert(
'Error',
'Please enter both transact path and API path for custom environment'
);
return;
}
setIsLoading(true);
Atomic.presentAction({
id: actionId.trim(),
environment: getEnvironment(),
presentationStyleIOS,
onLaunch: () => {
console.log('Action launched');
setIsLoading(false);
},
onFinish: (result: any) => {
setIsLoading(false);
console.log('Action finished:', result);
},
onClose: () => {
setIsLoading(false);
console.log('Action closed');
},
onAuthStatusUpdate: (status: any) => {
console.log('Auth Status Update:', status);
},
onTaskStatusUpdate: (status: any) => {
console.log('Task Status Update:', status);
},
});
};
return (
<ScrollView style={styles.container}>
<View style={styles.header}>
<Text style={styles.headerTitle}>Present Action</Text>
<Text style={styles.headerSubtitle}>
Launch specific Atomic actions by ID
</Text>
</View>
<View style={styles.section}>
<Text style={styles.sectionTitle}>Configuration</Text>
<View style={styles.inputGroup}>
<Text style={styles.label}>Action ID *</Text>
<TextInput
style={styles.input}
value={actionId}
onChangeText={setActionId}
placeholder="Enter action ID (e.g., action-123)"
placeholderTextColor="#9ca3af"
/>
</View>
<View style={styles.inputGroup}>
<Text style={styles.label}>Environment</Text>
<View style={styles.radioGroup}>
{environmentOptions.map((option) => (
<TouchableOpacity
key={option.key}
style={styles.radioOption}
onPress={() => setSelectedEnvironment(option.key)}
>
<View style={styles.radioButton}>
<View
style={[
styles.radioButtonInner,
selectedEnvironment === option.key &&
styles.radioButtonSelected,
]}
/>
</View>
<Text style={styles.radioLabel}>{option.label}</Text>
</TouchableOpacity>
))}
</View>
{selectedEnvironment === 'custom' && (
<>
<TextInput
style={[styles.input, styles.customUrlInput]}
value={customTransactPath}
onChangeText={setCustomTransactPath}
placeholder="Enter custom transact path"
placeholderTextColor="#9ca3af"
/>
<TextInput
style={[styles.input, styles.customUrlInput]}
value={customApiPath}
onChangeText={setCustomApiPath}
placeholder="Enter custom API path"
placeholderTextColor="#9ca3af"
/>
</>
)}
</View>
</View>
<View style={styles.section}>
<Text style={styles.sectionTitle}>How it works</Text>
<View style={styles.infoCard}>
<Text style={styles.infoText}>
Present Action allows you to launch specific Atomic actions by their
ID. This is useful for:
</Text>
<Text style={styles.bulletPoint}>
• Launching pre-configured flows
</Text>
<Text style={styles.bulletPoint}>
• Deep linking to specific actions
</Text>
<Text style={styles.bulletPoint}>• Custom user experiences</Text>
<Text style={styles.bulletPoint}>• Streamlined workflows</Text>
</View>
</View>
{Platform.OS === 'ios' && (
<View style={styles.section}>
<Text style={styles.sectionTitle}>iOS Presentation Style</Text>
<View style={styles.optionGrid}>
{presentationStyleOptions.map((style) => (
<TouchableOpacity
key={style.key}
style={[
styles.optionButton,
presentationStyleIOS === style.key && styles.selectedOption,
]}
onPress={() => setPresentationStyleIOS(style.key)}
>
<Text
style={[
styles.optionText,
presentationStyleIOS === style.key &&
styles.selectedOptionText,
]}
>
{style.label}
</Text>
</TouchableOpacity>
))}
</View>
</View>
)}
<View style={styles.buttonContainer}>
<TouchableOpacity
style={[styles.launchButton, isLoading && styles.disabledButton]}
onPress={presentAction}
disabled={isLoading}
>
<Text style={styles.launchButtonText}>
{isLoading ? 'Launching...' : 'Present Action'}
</Text>
</TouchableOpacity>
</View>
</ScrollView>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f8fafc',
},
header: {
padding: 24,
backgroundColor: '#3b82f6',
alignItems: 'center',
},
headerTitle: {
fontSize: 24,
fontWeight: 'bold',
color: '#ffffff',
marginBottom: 8,
},
headerSubtitle: {
fontSize: 14,
color: '#e0e7ff',
textAlign: 'center',
},
section: {
margin: 16,
padding: 16,
backgroundColor: '#ffffff',
borderRadius: 12,
elevation: 2,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
sectionTitle: {
fontSize: 18,
fontWeight: '600',
color: '#1f2937',
marginBottom: 8,
},
sectionDescription: {
fontSize: 14,
color: '#6b7280',
marginBottom: 16,
},
inputGroup: {
marginBottom: 16,
},
label: {
fontSize: 14,
fontWeight: '500',
color: '#374151',
marginBottom: 8,
},
input: {
borderWidth: 1,
borderColor: '#d1d5db',
borderRadius: 8,
padding: 12,
fontSize: 16,
color: '#1f2937',
backgroundColor: '#ffffff',
},
customUrlInput: {
marginTop: 12,
},
radioGroup: {
gap: 12,
},
radioOption: {
flexDirection: 'row',
alignItems: 'center',
gap: 12,
},
radioButton: {
width: 20,
height: 20,
borderRadius: 10,
borderWidth: 2,
borderColor: '#d1d5db',
alignItems: 'center',
justifyContent: 'center',
},
radioButtonInner: {
width: 10,
height: 10,
borderRadius: 5,
backgroundColor: 'transparent',
},
radioButtonSelected: {
backgroundColor: '#3b82f6',
},
radioLabel: {
fontSize: 16,
color: '#374151',
},
switchGroup: {
marginBottom: 16,
},
switchContainer: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
switchLabel: {
fontSize: 16,
color: '#6b7280',
},
infoCard: {
backgroundColor: '#f0f9ff',
padding: 16,
borderRadius: 8,
borderLeftWidth: 4,
borderLeftColor: '#3b82f6',
},
infoText: {
fontSize: 14,
color: '#1e40af',
marginBottom: 8,
},
bulletPoint: {
fontSize: 14,
color: '#3730a3',
marginBottom: 4,
},
buttonContainer: {
padding: 16,
},
launchButton: {
backgroundColor: '#3b82f6',
padding: 16,
borderRadius: 12,
alignItems: 'center',
elevation: 2,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.1,
shadowRadius: 4,
},
disabledButton: {
backgroundColor: '#9ca3af',
},
launchButtonText: {
fontSize: 18,
fontWeight: '600',
color: '#ffffff',
},
optionGrid: {
flexDirection: 'row',
flexWrap: 'wrap',
gap: 8,
},
optionButton: {
paddingHorizontal: 16,
paddingVertical: 8,
borderRadius: 20,
borderWidth: 1,
borderColor: '#d1d5db',
backgroundColor: '#ffffff',
},
selectedOption: {
backgroundColor: '#3b82f6',
borderColor: '#3b82f6',
},
optionText: {
fontSize: 14,
color: '#6b7280',
},
selectedOptionText: {
color: '#ffffff',
},
});
export default PresentActionScreen;