import {RouteProp, useFocusEffect, useRoute} from '@react-navigation/native'; import React, {useCallback, useMemo, useRef, useState} from 'react'; import {NativeModules, TextInput, View} from 'react-native'; import {FlatList} from 'react-native-gesture-handler'; import {Button, List, RadioButton} from 'react-native-paper'; import {getBestSet} from './best.service'; import {useColor} from './color'; import {PADDING} from './constants'; import CountMany from './count-many'; import MassiveInput from './MassiveInput'; import {useSnackbar} from './MassiveSnack'; import {PlanPageParams} from './plan-page-params'; import Set from './set'; import {addSet, countManyToday, getDistinctSets} from './set.service'; import SetForm from './SetForm'; import StackHeader from './StackHeader'; import {useSettings} from './use-settings'; export default function StartPlan() { const {params} = useRoute>(); const {set} = params; const [name, setName] = useState(set.name); const [reps, setReps] = useState(set.reps.toString()); const [weight, setWeight] = useState(set.weight.toString()); const [unit, setUnit] = useState(); const {toast} = useSnackbar(); const [minutes, setMinutes] = useState(set.minutes); const [seconds, setSeconds] = useState(set.seconds); const [best, setBest] = useState(set); const [selected, setSelected] = useState(0); const {settings} = useSettings(); const [counts, setCounts] = useState(); const [distinctSets, setDistinctSets] = useState(); const weightRef = useRef(null); const repsRef = useRef(null); const unitRef = useRef(null); const workouts = useMemo(() => params.plan.workouts.split(','), [params]); const {color} = useColor(); const [selection, setSelection] = useState({ start: 0, end: set.reps.toString().length, }); useFocusEffect( useCallback(() => { countManyToday().then(newCounts => { setCounts(newCounts); console.log(`${StartPlan.name}.focus:`, {newCounts}); }); getDistinctSets({limit: 100, offset: 0, search: '%'}).then( newDistinct => { setDistinctSets(newDistinct); console.log(`${StartPlan.name}.focus:`, {newDistinct}); }, ); }, [params]), ); const handleSubmit = async () => { console.log(`${SetForm.name}.handleSubmit:`, {reps, weight, unit, best}); await addSet({ name, weight: +weight, reps: +reps, minutes: set.minutes, seconds: set.seconds, steps: set.steps, image: set.image, unit, }); countManyToday().then(setCounts); if ( settings.notify && (+weight > best.weight || (+reps > best.reps && +weight === best.weight)) ) toast("Great work King! That's a new record.", 5000); else if (settings.alarm) toast('Resting...', 3000); else toast('Added set', 3000); if (!settings.alarm) return; const milliseconds = Number(minutes) * 60 * 1000 + Number(seconds) * 1000; const args = [milliseconds, !!settings.vibrate, settings.sound]; NativeModules.AlarmModule.timer(...args); }; const handleUnit = useCallback( (value: string) => { setUnit(value.replace(/,|'/g, '')); if (value.match(/,|'/)) toast('Commas and single quotes would break CSV exports', 6000); }, [toast], ); const select = useCallback( async (index: number) => { setSelected(index); console.log(`${StartPlan.name}.next:`, {name, workouts}); const workout = workouts[index]; console.log(`${StartPlan.name}.next:`, {workout}); const newBest = await getBestSet(workout); setMinutes(newBest.minutes); setSeconds(newBest.seconds); setName(newBest.name); setReps(newBest.reps.toString()); setWeight(newBest.weight.toString()); setUnit(newBest.unit); setBest(newBest); }, [name, workouts], ); const getDescription = useCallback( (countName: string) => { const count = counts?.find(c => c.name === countName); console.log(`${StartPlan.name}:`, {count, countName}); if (!distinctSets) return; const distinct = distinctSets.find(d => d.name === countName); console.log(`${StartPlan.name}:`, {distinct}); if (settings.showSets) return `${count?.total || 0} / ${distinct?.sets || 3}`; return count?.total || '0'; }, [counts, distinctSets, settings.showSets], ); return ( <> weightRef.current?.focus()} selection={selection} onSelectionChange={e => setSelection(e.nativeEvent.selection)} innerRef={repsRef} /> {!!settings.showUnit && ( )} {counts && distinctSets && ( ( select(index)} left={() => ( select(index)} value={index.toString()} status={selected === index ? 'checked' : 'unchecked'} color={color} /> )} /> )} /> )} ); }