import { RouteProp, useFocusEffect, useNavigation, 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, IconButton, 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} from './set.service'; import SetForm from './SetForm'; 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(); const [selected, setSelected] = useState(0); const {settings} = useSettings(); const [counts, setCounts] = useState(); const weightRef = useRef(null); const repsRef = useRef(null); const unitRef = useRef(null); const navigation = useNavigation(); const workouts = useMemo(() => params.plan.workouts.split(','), [params]); const {color} = useColor(); const [selection, setSelection] = useState({ start: 0, end: set.reps.toString().length, }); useFocusEffect( useCallback(() => { navigation.getParent()?.setOptions({ headerLeft: () => ( navigation.goBack()} /> ), headerRight: null, title: params.plan.days.replace(/,/g, ', '), }); countManyToday().then(setCounts); getBestSet(workouts[0]).then(setBest); }, [navigation, params, workouts]), ); 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 (!best) toast('Added set', 3000); else if ( settings.notify && (+weight > best.weight || (+reps > best.reps && +weight === best.weight)) ) toast("Great work King! That's a new record.", 3000); 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 getTotal = useCallback( (countName: string) => counts?.find(count => count.name === countName)?.total || 0, [counts], ); return ( weightRef.current?.focus()} selection={selection} onSelectionChange={e => setSelection(e.nativeEvent.selection)} innerRef={repsRef} /> {!!settings.showUnit && ( )} ( select(index)} left={() => ( )} /> )} /> ); }