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 {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 [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); }, [navigation, params]), ); const handleSubmit = async () => { console.log(`${SetForm.name}.handleSubmit:`, {reps, weight, unit}); await addSet({ name, weight: +weight, reps: +reps, minutes: set.minutes, seconds: set.seconds, steps: set.steps, image: set.image, unit, }); countManyToday().then(setCounts); 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 best = await getBestSet(workout); console.log(`${StartPlan.name}.next:`, {best}); setMinutes(best.minutes); setSeconds(best.seconds); setName(best.name); setReps(best.reps.toString()); setWeight(best.weight.toString()); setUnit(best.unit); }, [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={() => ( )} /> )} /> ); }