@ankhorage/templates 9.4.1 → 9.5.0
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/templates/catalog.generated.js +8 -8
- package/dist/templates/catalog.generated.js.map +1 -1
- package/dist/templates/categories/social-community/chat/createAppManifest.d.ts +4 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.d.ts.map +1 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.js +686 -0
- package/dist/templates/categories/social-community/chat/createAppManifest.js.map +1 -0
- package/package.json +2 -1
- package/src/templates/categories/social-community/chat/assets/images/lake.png +0 -0
- package/src/templates/categories/social-community/chat/assets/images/svg/chats.svg +1 -0
- package/src/templates/categories/social-community/chat/assets/images/svg/friends.svg +1 -0
- package/src/templates/categories/social-community/chat/assets/screens/chats.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/direct.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/friends.png +0 -0
- package/src/templates/categories/social-community/chat/assets/screens/prompts.json +7 -0
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.d.ts +0 -4
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.d.ts.map +0 -1
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.js +0 -1559
- package/dist/templates/categories/education-learning/sharkprey/createAppManifest.js.map +0 -1
- package/src/templates/categories/education-learning/sharkprey/assets/images/sharkprey-logo.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/history.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/learn.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/settings.svg +0 -5
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/stats.svg +0 -6
- package/src/templates/categories/education-learning/sharkprey/assets/images/svg/train.svg +0 -8
- package/src/templates/categories/education-learning/sharkprey/assets/screens/01-splash.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/02-onboarding.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/03-training-setup.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/04-decision-table.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/05-answer-explanation.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/06-session-summary.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/07-hand-history.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/08-stats.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/09-learn.png +0 -0
- package/src/templates/categories/education-learning/sharkprey/assets/screens/10-settings.png +0 -0
|
@@ -1,1559 +0,0 @@
|
|
|
1
|
-
const manifest = {
|
|
2
|
-
metadata: {
|
|
3
|
-
name: 'SharkPrey',
|
|
4
|
-
slug: 'sharkprey',
|
|
5
|
-
version: '0.1.0',
|
|
6
|
-
category: 'education_learning',
|
|
7
|
-
themeId: 'sharkprey',
|
|
8
|
-
},
|
|
9
|
-
themes: [
|
|
10
|
-
{
|
|
11
|
-
id: 'sharkprey',
|
|
12
|
-
name: 'SharkPrey',
|
|
13
|
-
light: {
|
|
14
|
-
primaryColor: '#2563EB',
|
|
15
|
-
harmony: 'triadic',
|
|
16
|
-
},
|
|
17
|
-
dark: {
|
|
18
|
-
primaryColor: '#2563EB',
|
|
19
|
-
harmony: 'triadic',
|
|
20
|
-
},
|
|
21
|
-
tokens: {
|
|
22
|
-
spacing: {
|
|
23
|
-
none: 0,
|
|
24
|
-
xs: 4,
|
|
25
|
-
s: 8,
|
|
26
|
-
m: 16,
|
|
27
|
-
l: 24,
|
|
28
|
-
xl: 32,
|
|
29
|
-
xxl: 48,
|
|
30
|
-
},
|
|
31
|
-
radii: {
|
|
32
|
-
none: 0,
|
|
33
|
-
s: 8,
|
|
34
|
-
m: 12,
|
|
35
|
-
l: 24,
|
|
36
|
-
full: 9999,
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
activeThemeId: 'sharkprey',
|
|
42
|
-
splashScreen: {
|
|
43
|
-
backgroundColor: '#060806',
|
|
44
|
-
image: './assets/images/sharkprey-logo.png',
|
|
45
|
-
imageWidth: 280,
|
|
46
|
-
resizeMode: 'contain',
|
|
47
|
-
dark: {
|
|
48
|
-
backgroundColor: '#060806',
|
|
49
|
-
image: './assets/images/sharkprey-logo.png',
|
|
50
|
-
imageWidth: 280,
|
|
51
|
-
resizeMode: 'contain',
|
|
52
|
-
},
|
|
53
|
-
},
|
|
54
|
-
infra: {
|
|
55
|
-
database: {
|
|
56
|
-
provider: 'supabase',
|
|
57
|
-
tier: 'dev',
|
|
58
|
-
},
|
|
59
|
-
storage: {
|
|
60
|
-
provider: 'auto',
|
|
61
|
-
buckets: ['media'],
|
|
62
|
-
},
|
|
63
|
-
secretStore: {
|
|
64
|
-
provider: 'supabase-vault',
|
|
65
|
-
},
|
|
66
|
-
deployment: {
|
|
67
|
-
target: 'minikube',
|
|
68
|
-
monitoring: false,
|
|
69
|
-
},
|
|
70
|
-
auth: {
|
|
71
|
-
provider: 'supabase',
|
|
72
|
-
scope: 'global',
|
|
73
|
-
flow: {
|
|
74
|
-
signInRoute: 'sign-in',
|
|
75
|
-
signUpRoute: 'sign-up',
|
|
76
|
-
signOutRoute: 'sign-out',
|
|
77
|
-
forgotPasswordRoute: 'forgot-password',
|
|
78
|
-
postSignInRoute: 'onboarding',
|
|
79
|
-
unauthorizedRoute: 'sign-in',
|
|
80
|
-
},
|
|
81
|
-
signIn: {
|
|
82
|
-
identifiers: ['email'],
|
|
83
|
-
},
|
|
84
|
-
signUp: {
|
|
85
|
-
requiredFields: ['email', 'password'],
|
|
86
|
-
optionalFields: ['firstName', 'lastName'],
|
|
87
|
-
signUpPolicy: 'autoSignIn',
|
|
88
|
-
},
|
|
89
|
-
profile: {
|
|
90
|
-
fields: ['email', 'firstName', 'lastName'],
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
networking: {
|
|
94
|
-
cdn: false,
|
|
95
|
-
},
|
|
96
|
-
modules: [],
|
|
97
|
-
state: {
|
|
98
|
-
provider: 'legend',
|
|
99
|
-
persistence: 'local',
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
settings: {
|
|
103
|
-
localization: {
|
|
104
|
-
defaultLocale: 'en',
|
|
105
|
-
locales: ['en'],
|
|
106
|
-
},
|
|
107
|
-
},
|
|
108
|
-
navigator: {
|
|
109
|
-
type: 'stack',
|
|
110
|
-
initialRouteName: 'onboarding',
|
|
111
|
-
routes: [
|
|
112
|
-
{
|
|
113
|
-
name: 'splash',
|
|
114
|
-
screenId: 'splash',
|
|
115
|
-
showInPrimaryNavigation: false,
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
name: 'onboarding',
|
|
119
|
-
screenId: 'onboarding',
|
|
120
|
-
showInPrimaryNavigation: false,
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
name: '(tabs)',
|
|
124
|
-
showInPrimaryNavigation: false,
|
|
125
|
-
navigator: {
|
|
126
|
-
type: 'tabs',
|
|
127
|
-
implementation: 'headless',
|
|
128
|
-
presentation: 'responsive',
|
|
129
|
-
responsive: {
|
|
130
|
-
compact: 'bottom',
|
|
131
|
-
medium: 'rail',
|
|
132
|
-
expanded: 'sidebar',
|
|
133
|
-
},
|
|
134
|
-
initialRouteName: 'train',
|
|
135
|
-
routes: [
|
|
136
|
-
{
|
|
137
|
-
name: 'train',
|
|
138
|
-
label: 'Train',
|
|
139
|
-
path: '/train',
|
|
140
|
-
icon: {
|
|
141
|
-
source: {
|
|
142
|
-
mediaId: 'sharkprey-train-icon',
|
|
143
|
-
},
|
|
144
|
-
},
|
|
145
|
-
screenId: 'training-setup',
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
name: 'history',
|
|
149
|
-
label: 'History',
|
|
150
|
-
path: '/history',
|
|
151
|
-
icon: {
|
|
152
|
-
source: {
|
|
153
|
-
mediaId: 'sharkprey-history-icon',
|
|
154
|
-
},
|
|
155
|
-
},
|
|
156
|
-
screenId: 'hand-history',
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
name: 'stats',
|
|
160
|
-
label: 'Stats',
|
|
161
|
-
path: '/stats',
|
|
162
|
-
icon: {
|
|
163
|
-
source: {
|
|
164
|
-
mediaId: 'sharkprey-stats-icon',
|
|
165
|
-
},
|
|
166
|
-
},
|
|
167
|
-
screenId: 'stats',
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
name: 'learn',
|
|
171
|
-
label: 'Learn',
|
|
172
|
-
path: '/learn',
|
|
173
|
-
icon: {
|
|
174
|
-
source: {
|
|
175
|
-
mediaId: 'sharkprey-learn-icon',
|
|
176
|
-
},
|
|
177
|
-
},
|
|
178
|
-
screenId: 'learn',
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
name: 'settings',
|
|
182
|
-
label: 'Settings',
|
|
183
|
-
path: '/settings',
|
|
184
|
-
icon: {
|
|
185
|
-
source: {
|
|
186
|
-
mediaId: 'sharkprey-settings-icon',
|
|
187
|
-
},
|
|
188
|
-
},
|
|
189
|
-
screenId: 'settings',
|
|
190
|
-
},
|
|
191
|
-
],
|
|
192
|
-
},
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
name: 'decision-table',
|
|
196
|
-
screenId: 'decision-table',
|
|
197
|
-
showInPrimaryNavigation: false,
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
name: 'answer-explanation',
|
|
201
|
-
screenId: 'answer-explanation',
|
|
202
|
-
showInPrimaryNavigation: false,
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
name: 'session-summary',
|
|
206
|
-
screenId: 'session-summary',
|
|
207
|
-
showInPrimaryNavigation: false,
|
|
208
|
-
},
|
|
209
|
-
],
|
|
210
|
-
},
|
|
211
|
-
screens: {
|
|
212
|
-
splash: {
|
|
213
|
-
id: 'splash',
|
|
214
|
-
name: 'Splash',
|
|
215
|
-
title: 'SharkPrey',
|
|
216
|
-
description: 'Native splash evidence. The runtime begins at onboarding after the native splash completes.',
|
|
217
|
-
root: {
|
|
218
|
-
id: 'splash-root',
|
|
219
|
-
type: 'Screen',
|
|
220
|
-
props: {
|
|
221
|
-
width: 'narrow',
|
|
222
|
-
scroll: false,
|
|
223
|
-
},
|
|
224
|
-
style: {
|
|
225
|
-
padding: 24,
|
|
226
|
-
gap: 16,
|
|
227
|
-
},
|
|
228
|
-
children: [
|
|
229
|
-
{
|
|
230
|
-
id: 'splash-logo',
|
|
231
|
-
type: 'Image',
|
|
232
|
-
props: {
|
|
233
|
-
source: {
|
|
234
|
-
mediaId: 'sharkprey-logo',
|
|
235
|
-
},
|
|
236
|
-
alt: 'SharkPrey shark wearing a graduation cap',
|
|
237
|
-
},
|
|
238
|
-
style: {
|
|
239
|
-
width: '100%',
|
|
240
|
-
height: 320,
|
|
241
|
-
borderRadius: 24,
|
|
242
|
-
},
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
id: 'splash-tagline',
|
|
246
|
-
type: 'Text',
|
|
247
|
-
props: {
|
|
248
|
-
text: 'Improve your game. Become the shark.',
|
|
249
|
-
variant: 'lead',
|
|
250
|
-
align: 'center',
|
|
251
|
-
},
|
|
252
|
-
},
|
|
253
|
-
],
|
|
254
|
-
},
|
|
255
|
-
},
|
|
256
|
-
onboarding: {
|
|
257
|
-
id: 'onboarding',
|
|
258
|
-
name: 'Onboarding',
|
|
259
|
-
title: 'Where are you starting?',
|
|
260
|
-
description: 'Initial skill-level choice. Selection persistence requires generated-app state wiring.',
|
|
261
|
-
root: {
|
|
262
|
-
id: 'onboarding-root',
|
|
263
|
-
type: 'Screen',
|
|
264
|
-
props: {
|
|
265
|
-
width: 'narrow',
|
|
266
|
-
scroll: true,
|
|
267
|
-
},
|
|
268
|
-
style: {
|
|
269
|
-
padding: 24,
|
|
270
|
-
gap: 16,
|
|
271
|
-
},
|
|
272
|
-
children: [
|
|
273
|
-
{
|
|
274
|
-
id: 'onboarding-title',
|
|
275
|
-
type: 'Heading',
|
|
276
|
-
props: {
|
|
277
|
-
text: 'Where are you starting?',
|
|
278
|
-
level: 1,
|
|
279
|
-
size: 'h1',
|
|
280
|
-
},
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
id: 'onboarding-tagline',
|
|
284
|
-
type: 'Text',
|
|
285
|
-
props: {
|
|
286
|
-
text: 'Improve your game. Become the shark.',
|
|
287
|
-
variant: 'lead',
|
|
288
|
-
weight: 'semiBold',
|
|
289
|
-
},
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
id: 'onboarding-copy',
|
|
293
|
-
type: 'Text',
|
|
294
|
-
props: {
|
|
295
|
-
text: 'Train one decision at a time—with feedback that explains why.',
|
|
296
|
-
variant: 'body',
|
|
297
|
-
emphasis: 'muted',
|
|
298
|
-
},
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
id: 'onboarding-new',
|
|
302
|
-
type: 'Card',
|
|
303
|
-
props: {
|
|
304
|
-
title: 'New to NLHE',
|
|
305
|
-
description: 'Learn the rules and build a solid foundation.',
|
|
306
|
-
tone: 'outline',
|
|
307
|
-
},
|
|
308
|
-
style: {
|
|
309
|
-
borderRadius: 24,
|
|
310
|
-
},
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
id: 'onboarding-ranges',
|
|
314
|
-
type: 'Card',
|
|
315
|
-
props: {
|
|
316
|
-
title: 'Learning the ranges · Selected',
|
|
317
|
-
description: 'Start with an adaptive baseline assessment.',
|
|
318
|
-
tone: 'outline',
|
|
319
|
-
},
|
|
320
|
-
style: {
|
|
321
|
-
borderRadius: 24,
|
|
322
|
-
},
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
id: 'onboarding-experienced',
|
|
326
|
-
type: 'Card',
|
|
327
|
-
props: {
|
|
328
|
-
title: 'Experienced player',
|
|
329
|
-
description: 'Focus on difficult decision categories.',
|
|
330
|
-
tone: 'outline',
|
|
331
|
-
},
|
|
332
|
-
style: {
|
|
333
|
-
borderRadius: 24,
|
|
334
|
-
},
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
id: 'onboarding-rules',
|
|
338
|
-
type: 'Button',
|
|
339
|
-
props: {
|
|
340
|
-
children: 'New to NLHE? Learn the rules',
|
|
341
|
-
color: 'primary',
|
|
342
|
-
variant: 'ghost',
|
|
343
|
-
size: 'm',
|
|
344
|
-
onPress: {
|
|
345
|
-
type: 'navigate',
|
|
346
|
-
payload: {
|
|
347
|
-
route: 'learn',
|
|
348
|
-
},
|
|
349
|
-
},
|
|
350
|
-
},
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
id: 'onboarding-start',
|
|
354
|
-
type: 'Button',
|
|
355
|
-
props: {
|
|
356
|
-
children: 'Start assessment',
|
|
357
|
-
color: 'primary',
|
|
358
|
-
variant: 'solid',
|
|
359
|
-
size: 'l',
|
|
360
|
-
onPress: {
|
|
361
|
-
type: 'navigate',
|
|
362
|
-
payload: {
|
|
363
|
-
route: '/train',
|
|
364
|
-
},
|
|
365
|
-
},
|
|
366
|
-
},
|
|
367
|
-
},
|
|
368
|
-
],
|
|
369
|
-
},
|
|
370
|
-
},
|
|
371
|
-
'training-setup': {
|
|
372
|
-
id: 'training-setup',
|
|
373
|
-
name: 'Training Setup',
|
|
374
|
-
title: 'Build your session',
|
|
375
|
-
description: 'Dark cards preserve the selected configuration visually; generated-app state owns editing and persistence.',
|
|
376
|
-
root: {
|
|
377
|
-
id: 'training-setup-root',
|
|
378
|
-
type: 'Screen',
|
|
379
|
-
props: {
|
|
380
|
-
width: 'narrow',
|
|
381
|
-
scroll: true,
|
|
382
|
-
},
|
|
383
|
-
style: {
|
|
384
|
-
padding: 24,
|
|
385
|
-
gap: 16,
|
|
386
|
-
},
|
|
387
|
-
children: [
|
|
388
|
-
{
|
|
389
|
-
id: 'setup-title',
|
|
390
|
-
type: 'Heading',
|
|
391
|
-
props: {
|
|
392
|
-
text: 'Build your session',
|
|
393
|
-
level: 1,
|
|
394
|
-
size: 'h1',
|
|
395
|
-
},
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
id: 'setup-game-heading',
|
|
399
|
-
type: 'Heading',
|
|
400
|
-
props: {
|
|
401
|
-
text: 'Game',
|
|
402
|
-
level: 2,
|
|
403
|
-
size: 'h3',
|
|
404
|
-
},
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
id: 'setup-ring',
|
|
408
|
-
type: 'Card',
|
|
409
|
-
props: {
|
|
410
|
-
title: 'Ring Game',
|
|
411
|
-
description: 'Available',
|
|
412
|
-
tone: 'outline',
|
|
413
|
-
},
|
|
414
|
-
style: {
|
|
415
|
-
borderRadius: 24,
|
|
416
|
-
},
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
id: 'setup-sng',
|
|
420
|
-
type: 'Card',
|
|
421
|
-
props: {
|
|
422
|
-
title: "Sit'n'Go",
|
|
423
|
-
description: 'Available',
|
|
424
|
-
tone: 'outline',
|
|
425
|
-
},
|
|
426
|
-
style: {
|
|
427
|
-
borderRadius: 24,
|
|
428
|
-
},
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
id: 'setup-mtt',
|
|
432
|
-
type: 'Card',
|
|
433
|
-
props: {
|
|
434
|
-
title: 'MTT · Selected',
|
|
435
|
-
description: 'Tournament decision practice',
|
|
436
|
-
tone: 'outline',
|
|
437
|
-
},
|
|
438
|
-
style: {
|
|
439
|
-
borderRadius: 24,
|
|
440
|
-
},
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
id: 'setup-table-heading',
|
|
444
|
-
type: 'Heading',
|
|
445
|
-
props: {
|
|
446
|
-
text: 'Table',
|
|
447
|
-
level: 2,
|
|
448
|
-
size: 'h3',
|
|
449
|
-
},
|
|
450
|
-
},
|
|
451
|
-
{
|
|
452
|
-
id: 'setup-six-max',
|
|
453
|
-
type: 'Card',
|
|
454
|
-
props: {
|
|
455
|
-
title: '6-max',
|
|
456
|
-
description: 'Available',
|
|
457
|
-
tone: 'outline',
|
|
458
|
-
},
|
|
459
|
-
style: {
|
|
460
|
-
borderRadius: 24,
|
|
461
|
-
},
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
id: 'setup-nine-max',
|
|
465
|
-
type: 'Card',
|
|
466
|
-
props: {
|
|
467
|
-
title: '9-max · Selected',
|
|
468
|
-
description: 'Full-ring scenario',
|
|
469
|
-
tone: 'outline',
|
|
470
|
-
},
|
|
471
|
-
style: {
|
|
472
|
-
borderRadius: 24,
|
|
473
|
-
},
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
id: 'setup-focus',
|
|
477
|
-
type: 'Card',
|
|
478
|
-
props: {
|
|
479
|
-
title: 'Adaptive mix · Selected',
|
|
480
|
-
description: 'Targets the spots that will improve your game fastest.',
|
|
481
|
-
tone: 'outline',
|
|
482
|
-
},
|
|
483
|
-
style: {
|
|
484
|
-
borderRadius: 24,
|
|
485
|
-
},
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
id: 'setup-session',
|
|
489
|
-
type: 'Card',
|
|
490
|
-
props: {
|
|
491
|
-
title: '10 hands · Selected',
|
|
492
|
-
description: 'About 5 minutes',
|
|
493
|
-
tone: 'outline',
|
|
494
|
-
},
|
|
495
|
-
style: {
|
|
496
|
-
borderRadius: 24,
|
|
497
|
-
},
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
id: 'setup-start',
|
|
501
|
-
type: 'Button',
|
|
502
|
-
props: {
|
|
503
|
-
children: 'Start training',
|
|
504
|
-
color: 'primary',
|
|
505
|
-
variant: 'solid',
|
|
506
|
-
size: 'l',
|
|
507
|
-
onPress: {
|
|
508
|
-
type: 'navigate',
|
|
509
|
-
payload: {
|
|
510
|
-
route: '/decision-table',
|
|
511
|
-
},
|
|
512
|
-
},
|
|
513
|
-
},
|
|
514
|
-
},
|
|
515
|
-
],
|
|
516
|
-
},
|
|
517
|
-
},
|
|
518
|
-
'decision-table': {
|
|
519
|
-
id: 'decision-table',
|
|
520
|
-
name: 'Decision Table',
|
|
521
|
-
title: 'Your decision',
|
|
522
|
-
description: 'Interactive poker decision surface backed by ZORA Tabletop.',
|
|
523
|
-
root: {
|
|
524
|
-
id: 'decision-table-root',
|
|
525
|
-
type: 'Screen',
|
|
526
|
-
props: {
|
|
527
|
-
width: 'narrow',
|
|
528
|
-
scroll: true,
|
|
529
|
-
},
|
|
530
|
-
style: {
|
|
531
|
-
padding: 24,
|
|
532
|
-
gap: 16,
|
|
533
|
-
},
|
|
534
|
-
children: [
|
|
535
|
-
{
|
|
536
|
-
id: 'decision-title',
|
|
537
|
-
type: 'Heading',
|
|
538
|
-
props: {
|
|
539
|
-
text: 'Your decision',
|
|
540
|
-
level: 1,
|
|
541
|
-
size: 'h1',
|
|
542
|
-
},
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
id: 'decision-category',
|
|
546
|
-
type: 'Text',
|
|
547
|
-
props: {
|
|
548
|
-
text: 'Flop · C-bet sizing',
|
|
549
|
-
variant: 'eyebrow',
|
|
550
|
-
color: 'primary',
|
|
551
|
-
},
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
id: 'decision-progress',
|
|
555
|
-
type: 'Text',
|
|
556
|
-
props: {
|
|
557
|
-
text: 'Hand 3 of 10 · Blinds 50 / 100 · Pot 650',
|
|
558
|
-
variant: 'label',
|
|
559
|
-
},
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
id: 'decision-table',
|
|
563
|
-
type: 'TabletopTable',
|
|
564
|
-
props: {
|
|
565
|
-
shape: 'oval',
|
|
566
|
-
seatCount: 9,
|
|
567
|
-
cardSize: 'small',
|
|
568
|
-
centerLabel: 'Pot 650',
|
|
569
|
-
centerSublabel: 'Q♥ 7♣ 2♠',
|
|
570
|
-
centerCards: [
|
|
571
|
-
{ rank: 'Q', suit: 'hearts' },
|
|
572
|
-
{ rank: '7', suit: 'clubs' },
|
|
573
|
-
{ rank: '2', suit: 'spades' },
|
|
574
|
-
],
|
|
575
|
-
seats: [
|
|
576
|
-
{ id: 'utg', label: 'UTG', faceDownCards: 2, muted: true },
|
|
577
|
-
{ id: 'utg1', label: 'UTG+1', faceDownCards: 2, muted: true },
|
|
578
|
-
{ id: 'mp', label: 'MP', faceDownCards: 2, muted: true },
|
|
579
|
-
{ id: 'mp1', label: 'MP+1', faceDownCards: 2, muted: true },
|
|
580
|
-
{ id: 'hj', label: 'HJ', faceDownCards: 2, muted: true },
|
|
581
|
-
{
|
|
582
|
-
id: 'co',
|
|
583
|
-
label: 'Hero · CO',
|
|
584
|
-
sublabel: 'Stack 7,850',
|
|
585
|
-
cards: [
|
|
586
|
-
{ rank: 'A', suit: 'spades' },
|
|
587
|
-
{ rank: 'Q', suit: 'diamonds' },
|
|
588
|
-
],
|
|
589
|
-
selected: true,
|
|
590
|
-
},
|
|
591
|
-
{ id: 'btn', label: 'BTN · D', faceDownCards: 2 },
|
|
592
|
-
{ id: 'sb', label: 'SB', faceDownCards: 2 },
|
|
593
|
-
{ id: 'bb', label: 'BB', sublabel: 'Stack 9,350', faceDownCards: 2 },
|
|
594
|
-
],
|
|
595
|
-
accessibilityLabel: 'Nine-player poker table for the current decision',
|
|
596
|
-
},
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
id: 'decision-action',
|
|
600
|
-
type: 'Text',
|
|
601
|
-
props: {
|
|
602
|
-
text: 'You raised from CO. BB called.',
|
|
603
|
-
variant: 'bodySmall',
|
|
604
|
-
emphasis: 'muted',
|
|
605
|
-
},
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
id: 'decision-question',
|
|
609
|
-
type: 'Heading',
|
|
610
|
-
props: {
|
|
611
|
-
text: "What's the best default continuation-bet size?",
|
|
612
|
-
level: 2,
|
|
613
|
-
size: 'h2',
|
|
614
|
-
},
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
id: 'decision-actions',
|
|
618
|
-
type: 'ButtonGroup',
|
|
619
|
-
props: {
|
|
620
|
-
align: 'stretch',
|
|
621
|
-
orientation: 'vertical',
|
|
622
|
-
gap: 's',
|
|
623
|
-
},
|
|
624
|
-
children: [
|
|
625
|
-
{
|
|
626
|
-
id: 'decision-check',
|
|
627
|
-
type: 'Button',
|
|
628
|
-
props: {
|
|
629
|
-
children: 'Check',
|
|
630
|
-
color: 'primary',
|
|
631
|
-
variant: 'outline',
|
|
632
|
-
size: 'm',
|
|
633
|
-
onPress: {
|
|
634
|
-
type: 'alert',
|
|
635
|
-
payload: {
|
|
636
|
-
message: 'The poker task runtime evaluates this choice.',
|
|
637
|
-
},
|
|
638
|
-
},
|
|
639
|
-
},
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
id: 'decision-small',
|
|
643
|
-
type: 'Button',
|
|
644
|
-
props: {
|
|
645
|
-
children: 'Bet ~33% pot',
|
|
646
|
-
color: 'primary',
|
|
647
|
-
variant: 'outline',
|
|
648
|
-
size: 'm',
|
|
649
|
-
onPress: {
|
|
650
|
-
type: 'alert',
|
|
651
|
-
payload: {
|
|
652
|
-
message: 'The poker task runtime evaluates this choice.',
|
|
653
|
-
},
|
|
654
|
-
},
|
|
655
|
-
},
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
id: 'decision-large',
|
|
659
|
-
type: 'Button',
|
|
660
|
-
props: {
|
|
661
|
-
children: 'Bet ~75% pot',
|
|
662
|
-
color: 'primary',
|
|
663
|
-
variant: 'outline',
|
|
664
|
-
size: 'm',
|
|
665
|
-
onPress: {
|
|
666
|
-
type: 'navigate',
|
|
667
|
-
payload: {
|
|
668
|
-
route: '/answer-explanation',
|
|
669
|
-
},
|
|
670
|
-
},
|
|
671
|
-
},
|
|
672
|
-
},
|
|
673
|
-
],
|
|
674
|
-
},
|
|
675
|
-
],
|
|
676
|
-
},
|
|
677
|
-
},
|
|
678
|
-
'answer-explanation': {
|
|
679
|
-
id: 'answer-explanation',
|
|
680
|
-
name: 'Answer Explanation',
|
|
681
|
-
title: 'Review the decision',
|
|
682
|
-
description: 'Immediate wrong-answer feedback with the correct default and a strategic explanation.',
|
|
683
|
-
root: {
|
|
684
|
-
id: 'answer-explanation-root',
|
|
685
|
-
type: 'Screen',
|
|
686
|
-
props: {
|
|
687
|
-
width: 'narrow',
|
|
688
|
-
scroll: true,
|
|
689
|
-
},
|
|
690
|
-
style: {
|
|
691
|
-
padding: 24,
|
|
692
|
-
gap: 16,
|
|
693
|
-
},
|
|
694
|
-
children: [
|
|
695
|
-
{
|
|
696
|
-
id: 'answer-title',
|
|
697
|
-
type: 'Heading',
|
|
698
|
-
props: {
|
|
699
|
-
text: 'Review the decision',
|
|
700
|
-
level: 1,
|
|
701
|
-
size: 'h1',
|
|
702
|
-
},
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
id: 'answer-category',
|
|
706
|
-
type: 'Text',
|
|
707
|
-
props: {
|
|
708
|
-
text: 'Flop · C-bet sizing',
|
|
709
|
-
variant: 'eyebrow',
|
|
710
|
-
color: 'primary',
|
|
711
|
-
},
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
id: 'answer-context',
|
|
715
|
-
type: 'Card',
|
|
716
|
-
props: {
|
|
717
|
-
title: 'Hero A♠ Q♦',
|
|
718
|
-
description: 'Board Q♥ 7♣ 2♠ · Pot 650',
|
|
719
|
-
tone: 'outline',
|
|
720
|
-
},
|
|
721
|
-
style: {
|
|
722
|
-
borderRadius: 24,
|
|
723
|
-
},
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
id: 'answer-error',
|
|
727
|
-
type: 'Notice',
|
|
728
|
-
props: {
|
|
729
|
-
title: 'Not quite',
|
|
730
|
-
description: 'You chose Bet ~75% pot',
|
|
731
|
-
color: 'danger',
|
|
732
|
-
},
|
|
733
|
-
},
|
|
734
|
-
{
|
|
735
|
-
id: 'answer-correct',
|
|
736
|
-
type: 'Notice',
|
|
737
|
-
props: {
|
|
738
|
-
title: 'Best default: Bet ~33% pot',
|
|
739
|
-
description: 'Correct answer',
|
|
740
|
-
color: 'success',
|
|
741
|
-
},
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
id: 'answer-why',
|
|
745
|
-
type: 'Heading',
|
|
746
|
-
props: {
|
|
747
|
-
text: 'Why',
|
|
748
|
-
level: 2,
|
|
749
|
-
size: 'h2',
|
|
750
|
-
},
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
id: 'answer-explanation-copy',
|
|
754
|
-
type: 'Text',
|
|
755
|
-
props: {
|
|
756
|
-
text: 'A small continuation bet gains value from worse Qx and denies equity efficiently. A large size is unnecessary as a baseline.',
|
|
757
|
-
variant: 'body',
|
|
758
|
-
},
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
id: 'answer-next',
|
|
762
|
-
type: 'Button',
|
|
763
|
-
props: {
|
|
764
|
-
children: 'Next hand',
|
|
765
|
-
color: 'primary',
|
|
766
|
-
variant: 'solid',
|
|
767
|
-
size: 'l',
|
|
768
|
-
onPress: {
|
|
769
|
-
type: 'navigate',
|
|
770
|
-
payload: {
|
|
771
|
-
route: '/decision-table',
|
|
772
|
-
},
|
|
773
|
-
},
|
|
774
|
-
},
|
|
775
|
-
},
|
|
776
|
-
],
|
|
777
|
-
},
|
|
778
|
-
},
|
|
779
|
-
'session-summary': {
|
|
780
|
-
id: 'session-summary',
|
|
781
|
-
name: 'Session Summary',
|
|
782
|
-
title: 'Session complete',
|
|
783
|
-
description: 'Session-level accuracy and adaptive category guidance.',
|
|
784
|
-
root: {
|
|
785
|
-
id: 'session-summary-root',
|
|
786
|
-
type: 'Screen',
|
|
787
|
-
props: {
|
|
788
|
-
width: 'narrow',
|
|
789
|
-
scroll: true,
|
|
790
|
-
},
|
|
791
|
-
style: {
|
|
792
|
-
padding: 24,
|
|
793
|
-
gap: 16,
|
|
794
|
-
},
|
|
795
|
-
children: [
|
|
796
|
-
{
|
|
797
|
-
id: 'summary-title',
|
|
798
|
-
type: 'Heading',
|
|
799
|
-
props: {
|
|
800
|
-
text: 'Session complete',
|
|
801
|
-
level: 1,
|
|
802
|
-
size: 'h1',
|
|
803
|
-
},
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
id: 'summary-progress',
|
|
807
|
-
type: 'ProgressRing',
|
|
808
|
-
props: {
|
|
809
|
-
value: 7,
|
|
810
|
-
max: 10,
|
|
811
|
-
centerValue: '70%',
|
|
812
|
-
centerLabel: 'Accuracy',
|
|
813
|
-
accessibilityLabel: 'Session accuracy',
|
|
814
|
-
accessibilityValueText: '7 of 10 answers correct',
|
|
815
|
-
color: 'primary',
|
|
816
|
-
trackColor: 'neutral',
|
|
817
|
-
size: 180,
|
|
818
|
-
thickness: 12,
|
|
819
|
-
},
|
|
820
|
-
},
|
|
821
|
-
{
|
|
822
|
-
id: 'summary-score',
|
|
823
|
-
type: 'Text',
|
|
824
|
-
props: {
|
|
825
|
-
text: '7 of 10 correct · 70% accuracy',
|
|
826
|
-
variant: 'lead',
|
|
827
|
-
weight: 'semiBold',
|
|
828
|
-
},
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
id: 'summary-strongest',
|
|
832
|
-
type: 'Card',
|
|
833
|
-
props: {
|
|
834
|
-
title: 'Preflop ranges · 86',
|
|
835
|
-
description: 'Strongest',
|
|
836
|
-
tone: 'outline',
|
|
837
|
-
},
|
|
838
|
-
style: {
|
|
839
|
-
borderRadius: 24,
|
|
840
|
-
},
|
|
841
|
-
},
|
|
842
|
-
{
|
|
843
|
-
id: 'summary-needs-work',
|
|
844
|
-
type: 'Card',
|
|
845
|
-
props: {
|
|
846
|
-
title: 'Bet sizing · 61',
|
|
847
|
-
description: 'Needs work',
|
|
848
|
-
tone: 'outline',
|
|
849
|
-
},
|
|
850
|
-
style: {
|
|
851
|
-
borderRadius: 24,
|
|
852
|
-
},
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
id: 'summary-adaptive',
|
|
856
|
-
type: 'Text',
|
|
857
|
-
props: {
|
|
858
|
-
text: 'Your next session will adapt to these results.',
|
|
859
|
-
variant: 'body',
|
|
860
|
-
emphasis: 'muted',
|
|
861
|
-
},
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
id: 'summary-practice',
|
|
865
|
-
type: 'Button',
|
|
866
|
-
props: {
|
|
867
|
-
children: 'Practice bet sizing',
|
|
868
|
-
color: 'primary',
|
|
869
|
-
variant: 'solid',
|
|
870
|
-
size: 'l',
|
|
871
|
-
onPress: {
|
|
872
|
-
type: 'navigate',
|
|
873
|
-
payload: {
|
|
874
|
-
route: '/train',
|
|
875
|
-
},
|
|
876
|
-
},
|
|
877
|
-
},
|
|
878
|
-
},
|
|
879
|
-
],
|
|
880
|
-
},
|
|
881
|
-
},
|
|
882
|
-
'hand-history': {
|
|
883
|
-
id: 'hand-history',
|
|
884
|
-
name: 'Hand History',
|
|
885
|
-
title: 'History',
|
|
886
|
-
description: 'Completed one-decision summaries only. Hand replay is intentionally deferred.',
|
|
887
|
-
root: {
|
|
888
|
-
id: 'hand-history-root',
|
|
889
|
-
type: 'Screen',
|
|
890
|
-
props: {
|
|
891
|
-
width: 'narrow',
|
|
892
|
-
scroll: true,
|
|
893
|
-
},
|
|
894
|
-
style: {
|
|
895
|
-
padding: 24,
|
|
896
|
-
gap: 16,
|
|
897
|
-
},
|
|
898
|
-
children: [
|
|
899
|
-
{
|
|
900
|
-
id: 'history-title',
|
|
901
|
-
type: 'Heading',
|
|
902
|
-
props: {
|
|
903
|
-
text: 'History',
|
|
904
|
-
level: 1,
|
|
905
|
-
size: 'h1',
|
|
906
|
-
},
|
|
907
|
-
},
|
|
908
|
-
{
|
|
909
|
-
id: 'history-filters',
|
|
910
|
-
type: 'ButtonGroup',
|
|
911
|
-
props: {
|
|
912
|
-
align: 'stretch',
|
|
913
|
-
orientation: 'horizontal',
|
|
914
|
-
gap: 's',
|
|
915
|
-
},
|
|
916
|
-
children: [
|
|
917
|
-
{
|
|
918
|
-
id: 'history-all',
|
|
919
|
-
type: 'Button',
|
|
920
|
-
props: {
|
|
921
|
-
children: 'All · Selected',
|
|
922
|
-
color: 'primary',
|
|
923
|
-
variant: 'outline',
|
|
924
|
-
size: 'm',
|
|
925
|
-
onPress: {
|
|
926
|
-
type: 'filter',
|
|
927
|
-
payload: {
|
|
928
|
-
filterKey: 'decisionStatus',
|
|
929
|
-
filterValue: 'all',
|
|
930
|
-
},
|
|
931
|
-
},
|
|
932
|
-
},
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
id: 'history-correct',
|
|
936
|
-
type: 'Button',
|
|
937
|
-
props: {
|
|
938
|
-
children: 'Correct',
|
|
939
|
-
color: 'primary',
|
|
940
|
-
variant: 'outline',
|
|
941
|
-
size: 'm',
|
|
942
|
-
onPress: {
|
|
943
|
-
type: 'filter',
|
|
944
|
-
payload: {
|
|
945
|
-
filterKey: 'decisionStatus',
|
|
946
|
-
filterValue: 'correct',
|
|
947
|
-
},
|
|
948
|
-
},
|
|
949
|
-
},
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
id: 'history-review',
|
|
953
|
-
type: 'Button',
|
|
954
|
-
props: {
|
|
955
|
-
children: 'Review',
|
|
956
|
-
color: 'primary',
|
|
957
|
-
variant: 'outline',
|
|
958
|
-
size: 'm',
|
|
959
|
-
onPress: {
|
|
960
|
-
type: 'filter',
|
|
961
|
-
payload: {
|
|
962
|
-
filterKey: 'decisionStatus',
|
|
963
|
-
filterValue: 'incorrect',
|
|
964
|
-
},
|
|
965
|
-
},
|
|
966
|
-
},
|
|
967
|
-
},
|
|
968
|
-
],
|
|
969
|
-
},
|
|
970
|
-
{
|
|
971
|
-
id: 'history-recent',
|
|
972
|
-
type: 'Heading',
|
|
973
|
-
props: {
|
|
974
|
-
text: 'Recent decisions',
|
|
975
|
-
level: 2,
|
|
976
|
-
size: 'h2',
|
|
977
|
-
},
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
id: 'history-aq',
|
|
981
|
-
type: 'Card',
|
|
982
|
-
props: {
|
|
983
|
-
title: 'A♠ Q♦ · Q♥ 7♣ 2♠ · Incorrect',
|
|
984
|
-
description: 'Bet ~75% → Bet ~33% · C-bet sizing',
|
|
985
|
-
tone: 'outline',
|
|
986
|
-
},
|
|
987
|
-
style: {
|
|
988
|
-
borderRadius: 24,
|
|
989
|
-
},
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
id: 'history-ak',
|
|
993
|
-
type: 'Card',
|
|
994
|
-
props: {
|
|
995
|
-
title: 'A♣ K♠ · Preflop · Correct',
|
|
996
|
-
description: 'Raise 2.5 BB · Preflop ranges',
|
|
997
|
-
tone: 'outline',
|
|
998
|
-
},
|
|
999
|
-
style: {
|
|
1000
|
-
borderRadius: 24,
|
|
1001
|
-
},
|
|
1002
|
-
},
|
|
1003
|
-
{
|
|
1004
|
-
id: 'history-kq',
|
|
1005
|
-
type: 'Card',
|
|
1006
|
-
props: {
|
|
1007
|
-
title: 'K♥ Q♣ · Turn · Correct',
|
|
1008
|
-
description: 'Check · Pot control',
|
|
1009
|
-
tone: 'outline',
|
|
1010
|
-
},
|
|
1011
|
-
style: {
|
|
1012
|
-
borderRadius: 24,
|
|
1013
|
-
},
|
|
1014
|
-
},
|
|
1015
|
-
],
|
|
1016
|
-
},
|
|
1017
|
-
},
|
|
1018
|
-
stats: {
|
|
1019
|
-
id: 'stats',
|
|
1020
|
-
name: 'Stats',
|
|
1021
|
-
title: 'Your game',
|
|
1022
|
-
description: 'Strengths and weaknesses derived from completed decision categories.',
|
|
1023
|
-
root: {
|
|
1024
|
-
id: 'stats-root',
|
|
1025
|
-
type: 'Screen',
|
|
1026
|
-
props: {
|
|
1027
|
-
width: 'narrow',
|
|
1028
|
-
scroll: true,
|
|
1029
|
-
},
|
|
1030
|
-
style: {
|
|
1031
|
-
padding: 24,
|
|
1032
|
-
gap: 16,
|
|
1033
|
-
},
|
|
1034
|
-
children: [
|
|
1035
|
-
{
|
|
1036
|
-
id: 'stats-title',
|
|
1037
|
-
type: 'Heading',
|
|
1038
|
-
props: {
|
|
1039
|
-
text: 'Your game',
|
|
1040
|
-
level: 1,
|
|
1041
|
-
size: 'h1',
|
|
1042
|
-
},
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
id: 'stats-overall',
|
|
1046
|
-
type: 'ProgressRing',
|
|
1047
|
-
props: {
|
|
1048
|
-
value: 72,
|
|
1049
|
-
max: 100,
|
|
1050
|
-
centerValue: '72',
|
|
1051
|
-
centerLabel: 'Overall',
|
|
1052
|
-
accessibilityLabel: 'Overall poker decision score',
|
|
1053
|
-
accessibilityValueText: '72 based on 100 decisions',
|
|
1054
|
-
color: 'primary',
|
|
1055
|
-
trackColor: 'neutral',
|
|
1056
|
-
size: 160,
|
|
1057
|
-
thickness: 12,
|
|
1058
|
-
},
|
|
1059
|
-
},
|
|
1060
|
-
{
|
|
1061
|
-
id: 'stats-based-on',
|
|
1062
|
-
type: 'Text',
|
|
1063
|
-
props: {
|
|
1064
|
-
text: 'Based on 100 decisions',
|
|
1065
|
-
variant: 'body',
|
|
1066
|
-
emphasis: 'muted',
|
|
1067
|
-
},
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
id: 'stats-strengths',
|
|
1071
|
-
type: 'Heading',
|
|
1072
|
-
props: {
|
|
1073
|
-
text: 'Strengths',
|
|
1074
|
-
level: 2,
|
|
1075
|
-
size: 'h2',
|
|
1076
|
-
},
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
id: 'stats-preflop',
|
|
1080
|
-
type: 'Card',
|
|
1081
|
-
props: {
|
|
1082
|
-
title: 'Preflop ranges · 86',
|
|
1083
|
-
description: 'Strong category',
|
|
1084
|
-
tone: 'outline',
|
|
1085
|
-
},
|
|
1086
|
-
style: {
|
|
1087
|
-
borderRadius: 24,
|
|
1088
|
-
},
|
|
1089
|
-
},
|
|
1090
|
-
{
|
|
1091
|
-
id: 'stats-position',
|
|
1092
|
-
type: 'Card',
|
|
1093
|
-
props: {
|
|
1094
|
-
title: 'Position · 74',
|
|
1095
|
-
description: 'Strong category',
|
|
1096
|
-
tone: 'outline',
|
|
1097
|
-
},
|
|
1098
|
-
style: {
|
|
1099
|
-
borderRadius: 24,
|
|
1100
|
-
},
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
id: 'stats-weaknesses',
|
|
1104
|
-
type: 'Heading',
|
|
1105
|
-
props: {
|
|
1106
|
-
text: 'Weaknesses',
|
|
1107
|
-
level: 2,
|
|
1108
|
-
size: 'h2',
|
|
1109
|
-
},
|
|
1110
|
-
},
|
|
1111
|
-
{
|
|
1112
|
-
id: 'stats-sizing',
|
|
1113
|
-
type: 'Card',
|
|
1114
|
-
props: {
|
|
1115
|
-
title: 'Bet sizing · 61',
|
|
1116
|
-
description: 'Needs focused practice',
|
|
1117
|
-
tone: 'outline',
|
|
1118
|
-
},
|
|
1119
|
-
style: {
|
|
1120
|
-
borderRadius: 24,
|
|
1121
|
-
},
|
|
1122
|
-
},
|
|
1123
|
-
{
|
|
1124
|
-
id: 'stats-bluffing',
|
|
1125
|
-
type: 'Card',
|
|
1126
|
-
props: {
|
|
1127
|
-
title: 'Bluffing · 68',
|
|
1128
|
-
description: 'Needs focused practice',
|
|
1129
|
-
tone: 'outline',
|
|
1130
|
-
},
|
|
1131
|
-
style: {
|
|
1132
|
-
borderRadius: 24,
|
|
1133
|
-
},
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
id: 'stats-practice',
|
|
1137
|
-
type: 'Button',
|
|
1138
|
-
props: {
|
|
1139
|
-
children: 'Practice bet sizing',
|
|
1140
|
-
color: 'primary',
|
|
1141
|
-
variant: 'solid',
|
|
1142
|
-
size: 'l',
|
|
1143
|
-
onPress: {
|
|
1144
|
-
type: 'navigate',
|
|
1145
|
-
payload: {
|
|
1146
|
-
route: '/train',
|
|
1147
|
-
},
|
|
1148
|
-
},
|
|
1149
|
-
},
|
|
1150
|
-
},
|
|
1151
|
-
],
|
|
1152
|
-
},
|
|
1153
|
-
},
|
|
1154
|
-
learn: {
|
|
1155
|
-
id: 'learn',
|
|
1156
|
-
name: 'Learn',
|
|
1157
|
-
title: 'Learn',
|
|
1158
|
-
description: 'Fundamentals remain available without replacing the adaptive training loop.',
|
|
1159
|
-
root: {
|
|
1160
|
-
id: 'learn-root',
|
|
1161
|
-
type: 'Screen',
|
|
1162
|
-
props: {
|
|
1163
|
-
width: 'narrow',
|
|
1164
|
-
scroll: true,
|
|
1165
|
-
},
|
|
1166
|
-
style: {
|
|
1167
|
-
padding: 24,
|
|
1168
|
-
gap: 16,
|
|
1169
|
-
},
|
|
1170
|
-
children: [
|
|
1171
|
-
{
|
|
1172
|
-
id: 'learn-title',
|
|
1173
|
-
type: 'Heading',
|
|
1174
|
-
props: {
|
|
1175
|
-
text: 'Learn',
|
|
1176
|
-
level: 1,
|
|
1177
|
-
size: 'h1',
|
|
1178
|
-
},
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
id: 'learn-rules',
|
|
1182
|
-
type: 'Card',
|
|
1183
|
-
props: {
|
|
1184
|
-
title: 'Start with the rules',
|
|
1185
|
-
description: 'Learn the essentials, then put them into practice.',
|
|
1186
|
-
tone: 'outline',
|
|
1187
|
-
eyebrow: 'NEW TO NLHE?',
|
|
1188
|
-
},
|
|
1189
|
-
style: {
|
|
1190
|
-
borderRadius: 24,
|
|
1191
|
-
},
|
|
1192
|
-
children: [
|
|
1193
|
-
{
|
|
1194
|
-
id: 'learn-explore',
|
|
1195
|
-
type: 'Button',
|
|
1196
|
-
props: {
|
|
1197
|
-
children: 'Explore fundamentals',
|
|
1198
|
-
color: 'primary',
|
|
1199
|
-
variant: 'outline',
|
|
1200
|
-
size: 'm',
|
|
1201
|
-
onPress: {
|
|
1202
|
-
type: 'alert',
|
|
1203
|
-
payload: {
|
|
1204
|
-
message: 'Fundamentals content is supplied by the learning service.',
|
|
1205
|
-
},
|
|
1206
|
-
},
|
|
1207
|
-
},
|
|
1208
|
-
},
|
|
1209
|
-
],
|
|
1210
|
-
},
|
|
1211
|
-
{
|
|
1212
|
-
id: 'learn-recommended',
|
|
1213
|
-
type: 'Heading',
|
|
1214
|
-
props: {
|
|
1215
|
-
text: 'Recommended for you',
|
|
1216
|
-
level: 2,
|
|
1217
|
-
size: 'h2',
|
|
1218
|
-
},
|
|
1219
|
-
},
|
|
1220
|
-
{
|
|
1221
|
-
id: 'learn-cbet',
|
|
1222
|
-
type: 'Card',
|
|
1223
|
-
props: {
|
|
1224
|
-
title: 'Continuation-bet sizing',
|
|
1225
|
-
description: 'Why a small bet does more · 2 of 5 lessons',
|
|
1226
|
-
tone: 'outline',
|
|
1227
|
-
eyebrow: 'BET SIZING',
|
|
1228
|
-
},
|
|
1229
|
-
style: {
|
|
1230
|
-
borderRadius: 24,
|
|
1231
|
-
},
|
|
1232
|
-
children: [
|
|
1233
|
-
{
|
|
1234
|
-
id: 'learn-progress',
|
|
1235
|
-
type: 'Progress',
|
|
1236
|
-
props: {
|
|
1237
|
-
value: 2,
|
|
1238
|
-
max: 5,
|
|
1239
|
-
color: 'primary',
|
|
1240
|
-
size: 'm',
|
|
1241
|
-
},
|
|
1242
|
-
},
|
|
1243
|
-
{
|
|
1244
|
-
id: 'learn-continue',
|
|
1245
|
-
type: 'Button',
|
|
1246
|
-
props: {
|
|
1247
|
-
children: 'Continue lesson',
|
|
1248
|
-
color: 'primary',
|
|
1249
|
-
variant: 'solid',
|
|
1250
|
-
size: 'l',
|
|
1251
|
-
onPress: {
|
|
1252
|
-
type: 'alert',
|
|
1253
|
-
payload: {
|
|
1254
|
-
message: 'Lesson detail requires the learning-content runtime.',
|
|
1255
|
-
},
|
|
1256
|
-
},
|
|
1257
|
-
},
|
|
1258
|
-
},
|
|
1259
|
-
],
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
id: 'learn-more',
|
|
1263
|
-
type: 'Heading',
|
|
1264
|
-
props: {
|
|
1265
|
-
text: 'More fundamentals',
|
|
1266
|
-
level: 2,
|
|
1267
|
-
size: 'h2',
|
|
1268
|
-
},
|
|
1269
|
-
},
|
|
1270
|
-
{
|
|
1271
|
-
id: 'learn-rankings',
|
|
1272
|
-
type: 'Card',
|
|
1273
|
-
props: {
|
|
1274
|
-
title: 'Hand rankings',
|
|
1275
|
-
description: '5 min',
|
|
1276
|
-
tone: 'outline',
|
|
1277
|
-
},
|
|
1278
|
-
style: {
|
|
1279
|
-
borderRadius: 24,
|
|
1280
|
-
},
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
id: 'learn-position',
|
|
1284
|
-
type: 'Card',
|
|
1285
|
-
props: {
|
|
1286
|
-
title: 'Position at the table',
|
|
1287
|
-
description: '6 min',
|
|
1288
|
-
tone: 'outline',
|
|
1289
|
-
},
|
|
1290
|
-
style: {
|
|
1291
|
-
borderRadius: 24,
|
|
1292
|
-
},
|
|
1293
|
-
},
|
|
1294
|
-
],
|
|
1295
|
-
},
|
|
1296
|
-
},
|
|
1297
|
-
settings: {
|
|
1298
|
-
id: 'settings',
|
|
1299
|
-
name: 'Settings',
|
|
1300
|
-
title: 'Settings',
|
|
1301
|
-
description: 'Preferences are visible through supported SettingsRow nodes. Generated-app adapters own persisted selection, SharkScope connection, and destructive confirmation.',
|
|
1302
|
-
root: {
|
|
1303
|
-
id: 'settings-root',
|
|
1304
|
-
type: 'Screen',
|
|
1305
|
-
props: {
|
|
1306
|
-
width: 'narrow',
|
|
1307
|
-
scroll: true,
|
|
1308
|
-
},
|
|
1309
|
-
style: {
|
|
1310
|
-
padding: 24,
|
|
1311
|
-
gap: 16,
|
|
1312
|
-
},
|
|
1313
|
-
children: [
|
|
1314
|
-
{
|
|
1315
|
-
id: 'settings-title',
|
|
1316
|
-
type: 'Heading',
|
|
1317
|
-
props: {
|
|
1318
|
-
text: 'Settings',
|
|
1319
|
-
level: 1,
|
|
1320
|
-
size: 'h1',
|
|
1321
|
-
},
|
|
1322
|
-
},
|
|
1323
|
-
{
|
|
1324
|
-
id: 'settings-preferences',
|
|
1325
|
-
type: 'Heading',
|
|
1326
|
-
props: {
|
|
1327
|
-
text: 'Preferences',
|
|
1328
|
-
level: 2,
|
|
1329
|
-
size: 'h2',
|
|
1330
|
-
},
|
|
1331
|
-
},
|
|
1332
|
-
{
|
|
1333
|
-
id: 'settings-appearance',
|
|
1334
|
-
type: 'SettingsRow',
|
|
1335
|
-
props: {
|
|
1336
|
-
title: 'Appearance',
|
|
1337
|
-
description: 'Light, dark, or system',
|
|
1338
|
-
meta: 'System',
|
|
1339
|
-
disabled: false,
|
|
1340
|
-
},
|
|
1341
|
-
},
|
|
1342
|
-
{
|
|
1343
|
-
id: 'settings-toggle-theme',
|
|
1344
|
-
type: 'Button',
|
|
1345
|
-
props: {
|
|
1346
|
-
children: 'Toggle theme',
|
|
1347
|
-
color: 'primary',
|
|
1348
|
-
variant: 'outline',
|
|
1349
|
-
size: 'm',
|
|
1350
|
-
onPress: {
|
|
1351
|
-
type: 'toggleDarkMode',
|
|
1352
|
-
},
|
|
1353
|
-
},
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
id: 'settings-deck',
|
|
1357
|
-
type: 'SettingsRow',
|
|
1358
|
-
props: {
|
|
1359
|
-
title: 'Card deck',
|
|
1360
|
-
description: 'Choose your preferred deck style',
|
|
1361
|
-
meta: 'SharkPrey Classic',
|
|
1362
|
-
disabled: false,
|
|
1363
|
-
},
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
id: 'settings-language',
|
|
1367
|
-
type: 'SettingsRow',
|
|
1368
|
-
props: {
|
|
1369
|
-
title: 'Language',
|
|
1370
|
-
description: 'Application language',
|
|
1371
|
-
meta: 'English',
|
|
1372
|
-
disabled: false,
|
|
1373
|
-
},
|
|
1374
|
-
},
|
|
1375
|
-
{
|
|
1376
|
-
id: 'settings-haptics',
|
|
1377
|
-
type: 'SettingsRow',
|
|
1378
|
-
props: {
|
|
1379
|
-
title: 'Haptics',
|
|
1380
|
-
description: 'Decision feedback',
|
|
1381
|
-
meta: 'On',
|
|
1382
|
-
disabled: false,
|
|
1383
|
-
},
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
id: 'settings-account',
|
|
1387
|
-
type: 'Heading',
|
|
1388
|
-
props: {
|
|
1389
|
-
text: 'Account',
|
|
1390
|
-
level: 2,
|
|
1391
|
-
size: 'h2',
|
|
1392
|
-
},
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
id: 'settings-sharkscope',
|
|
1396
|
-
type: 'SettingsRow',
|
|
1397
|
-
props: {
|
|
1398
|
-
title: 'SharkScope',
|
|
1399
|
-
description: 'Connect your account',
|
|
1400
|
-
meta: 'Not connected',
|
|
1401
|
-
disabled: false,
|
|
1402
|
-
},
|
|
1403
|
-
},
|
|
1404
|
-
{
|
|
1405
|
-
id: 'settings-connect',
|
|
1406
|
-
type: 'Button',
|
|
1407
|
-
props: {
|
|
1408
|
-
children: 'Connect account',
|
|
1409
|
-
color: 'primary',
|
|
1410
|
-
variant: 'outline',
|
|
1411
|
-
size: 'm',
|
|
1412
|
-
onPress: {
|
|
1413
|
-
type: 'alert',
|
|
1414
|
-
payload: {
|
|
1415
|
-
message: 'SharkScope connection requires its generated-app adapter.',
|
|
1416
|
-
},
|
|
1417
|
-
},
|
|
1418
|
-
},
|
|
1419
|
-
},
|
|
1420
|
-
{
|
|
1421
|
-
id: 'settings-data',
|
|
1422
|
-
type: 'Heading',
|
|
1423
|
-
props: {
|
|
1424
|
-
text: 'Data',
|
|
1425
|
-
level: 2,
|
|
1426
|
-
size: 'h2',
|
|
1427
|
-
},
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
id: 'settings-reset',
|
|
1431
|
-
type: 'Button',
|
|
1432
|
-
props: {
|
|
1433
|
-
children: 'Reset stats',
|
|
1434
|
-
color: 'danger',
|
|
1435
|
-
variant: 'outline',
|
|
1436
|
-
size: 'm',
|
|
1437
|
-
onPress: {
|
|
1438
|
-
type: 'alert',
|
|
1439
|
-
payload: {
|
|
1440
|
-
message: 'Confirmation is required before all progress and category scores are erased.',
|
|
1441
|
-
},
|
|
1442
|
-
},
|
|
1443
|
-
},
|
|
1444
|
-
},
|
|
1445
|
-
{
|
|
1446
|
-
id: 'settings-footer',
|
|
1447
|
-
type: 'Text',
|
|
1448
|
-
props: {
|
|
1449
|
-
text: 'SharkPrey · Improve your game. Become the shark.',
|
|
1450
|
-
variant: 'caption',
|
|
1451
|
-
emphasis: 'muted',
|
|
1452
|
-
align: 'center',
|
|
1453
|
-
},
|
|
1454
|
-
},
|
|
1455
|
-
],
|
|
1456
|
-
},
|
|
1457
|
-
},
|
|
1458
|
-
},
|
|
1459
|
-
activeThemeMode: 'dark',
|
|
1460
|
-
media: {
|
|
1461
|
-
assets: {
|
|
1462
|
-
'sharkprey-train-icon': {
|
|
1463
|
-
id: 'sharkprey-train-icon',
|
|
1464
|
-
name: 'Train navigation icon',
|
|
1465
|
-
kind: 'image',
|
|
1466
|
-
source: {
|
|
1467
|
-
kind: 'bundled',
|
|
1468
|
-
path: 'assets/images/svg/train.svg',
|
|
1469
|
-
},
|
|
1470
|
-
contentType: 'image/svg+xml',
|
|
1471
|
-
metadata: {
|
|
1472
|
-
originalFileName: 'train.svg',
|
|
1473
|
-
width: 24,
|
|
1474
|
-
height: 24,
|
|
1475
|
-
},
|
|
1476
|
-
},
|
|
1477
|
-
'sharkprey-history-icon': {
|
|
1478
|
-
id: 'sharkprey-history-icon',
|
|
1479
|
-
name: 'History navigation icon',
|
|
1480
|
-
kind: 'image',
|
|
1481
|
-
source: {
|
|
1482
|
-
kind: 'bundled',
|
|
1483
|
-
path: 'assets/images/svg/history.svg',
|
|
1484
|
-
},
|
|
1485
|
-
contentType: 'image/svg+xml',
|
|
1486
|
-
metadata: {
|
|
1487
|
-
originalFileName: 'history.svg',
|
|
1488
|
-
width: 24,
|
|
1489
|
-
height: 24,
|
|
1490
|
-
},
|
|
1491
|
-
},
|
|
1492
|
-
'sharkprey-stats-icon': {
|
|
1493
|
-
id: 'sharkprey-stats-icon',
|
|
1494
|
-
name: 'Stats navigation icon',
|
|
1495
|
-
kind: 'image',
|
|
1496
|
-
source: {
|
|
1497
|
-
kind: 'bundled',
|
|
1498
|
-
path: 'assets/images/svg/stats.svg',
|
|
1499
|
-
},
|
|
1500
|
-
contentType: 'image/svg+xml',
|
|
1501
|
-
metadata: {
|
|
1502
|
-
originalFileName: 'stats.svg',
|
|
1503
|
-
width: 24,
|
|
1504
|
-
height: 24,
|
|
1505
|
-
},
|
|
1506
|
-
},
|
|
1507
|
-
'sharkprey-learn-icon': {
|
|
1508
|
-
id: 'sharkprey-learn-icon',
|
|
1509
|
-
name: 'Learn navigation icon',
|
|
1510
|
-
kind: 'image',
|
|
1511
|
-
source: {
|
|
1512
|
-
kind: 'bundled',
|
|
1513
|
-
path: 'assets/images/svg/learn.svg',
|
|
1514
|
-
},
|
|
1515
|
-
contentType: 'image/svg+xml',
|
|
1516
|
-
metadata: {
|
|
1517
|
-
originalFileName: 'learn.svg',
|
|
1518
|
-
width: 24,
|
|
1519
|
-
height: 24,
|
|
1520
|
-
},
|
|
1521
|
-
},
|
|
1522
|
-
'sharkprey-settings-icon': {
|
|
1523
|
-
id: 'sharkprey-settings-icon',
|
|
1524
|
-
name: 'Settings navigation icon',
|
|
1525
|
-
kind: 'image',
|
|
1526
|
-
source: {
|
|
1527
|
-
kind: 'bundled',
|
|
1528
|
-
path: 'assets/images/svg/settings.svg',
|
|
1529
|
-
},
|
|
1530
|
-
contentType: 'image/svg+xml',
|
|
1531
|
-
metadata: {
|
|
1532
|
-
originalFileName: 'settings.svg',
|
|
1533
|
-
width: 24,
|
|
1534
|
-
height: 24,
|
|
1535
|
-
},
|
|
1536
|
-
},
|
|
1537
|
-
'sharkprey-logo': {
|
|
1538
|
-
id: 'sharkprey-logo',
|
|
1539
|
-
name: 'SharkPrey shark and graduation-cap logo',
|
|
1540
|
-
kind: 'image',
|
|
1541
|
-
source: {
|
|
1542
|
-
kind: 'bundled',
|
|
1543
|
-
path: 'assets/images/sharkprey-logo.png',
|
|
1544
|
-
},
|
|
1545
|
-
contentType: 'image/png',
|
|
1546
|
-
metadata: {
|
|
1547
|
-
originalFileName: '00-logo.png',
|
|
1548
|
-
width: 1536,
|
|
1549
|
-
height: 1024,
|
|
1550
|
-
},
|
|
1551
|
-
},
|
|
1552
|
-
},
|
|
1553
|
-
},
|
|
1554
|
-
};
|
|
1555
|
-
/*** Create the complete portable application manifest for this template. */
|
|
1556
|
-
export default function createAppManifest() {
|
|
1557
|
-
return structuredClone(manifest);
|
|
1558
|
-
}
|
|
1559
|
-
//# sourceMappingURL=createAppManifest.js.map
|