You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
180 lines
5.6 KiB
TypeScript
180 lines
5.6 KiB
TypeScript
import {
|
|
NavigationProp,
|
|
RouteProp,
|
|
useFocusEffect,
|
|
useNavigation,
|
|
useRoute,
|
|
} from '@react-navigation/native'
|
|
import {useCallback, useMemo, useRef, useState} from 'react'
|
|
import {FlatList, NativeModules, TextInput, View} from 'react-native'
|
|
import {Button, IconButton, ProgressBar} from 'react-native-paper'
|
|
import AppInput from './AppInput'
|
|
import {getBestSet, getLast} from './best.service'
|
|
import {PADDING} from './constants'
|
|
import CountMany from './count-many'
|
|
import {AppDataSource} from './data-source'
|
|
import {getNow, setRepo, settingsRepo} from './db'
|
|
import GymSet from './gym-set'
|
|
import {PlanPageParams} from './plan-page-params'
|
|
import Settings from './settings'
|
|
import StackHeader from './StackHeader'
|
|
import StartPlanItem from './StartPlanItem'
|
|
import {toast} from './toast'
|
|
import useDark from './use-dark'
|
|
|
|
export default function StartPlan() {
|
|
const {params} = useRoute<RouteProp<PlanPageParams, 'StartPlan'>>()
|
|
const [reps, setReps] = useState(params.first?.reps.toString() || '0')
|
|
const [weight, setWeight] = useState(params.first?.weight.toString() || '0')
|
|
const [unit, setUnit] = useState<string>(params.first?.unit || 'kg')
|
|
const [selected, setSelected] = useState(0)
|
|
const [settings, setSettings] = useState<Settings>()
|
|
const [counts, setCounts] = useState<CountMany[]>()
|
|
const weightRef = useRef<TextInput>(null)
|
|
const repsRef = useRef<TextInput>(null)
|
|
const unitRef = useRef<TextInput>(null)
|
|
const workouts = useMemo(() => params.plan.workouts.split(','), [params])
|
|
const dark = useDark()
|
|
const navigation = useNavigation<NavigationProp<PlanPageParams>>()
|
|
|
|
const [selection, setSelection] = useState({
|
|
start: 0,
|
|
end: 0,
|
|
})
|
|
|
|
const refresh = useCallback(async () => {
|
|
const questions = workouts
|
|
.map((workout, index) => `('${workout}',${index})`)
|
|
.join(',')
|
|
const select = `
|
|
SELECT workouts.name, COUNT(sets.id) as total, sets.sets
|
|
FROM (select 0 as name, 0 as sequence union values ${questions}) as workouts
|
|
LEFT JOIN sets ON sets.name = workouts.name
|
|
AND sets.created LIKE STRFTIME('%Y-%m-%d%%', 'now', 'localtime')
|
|
AND NOT sets.hidden
|
|
GROUP BY workouts.name
|
|
ORDER BY workouts.sequence
|
|
LIMIT -1
|
|
OFFSET 1
|
|
`
|
|
const newCounts = await AppDataSource.manager.query(select)
|
|
console.log(`${StartPlan.name}.focus:`, {newCounts})
|
|
setCounts(newCounts)
|
|
}, [workouts])
|
|
|
|
const select = useCallback(
|
|
async (index: number, newCounts?: CountMany[]) => {
|
|
setSelected(index)
|
|
if (!counts && !newCounts) return
|
|
const workout = counts ? counts[index] : newCounts[index]
|
|
console.log(`${StartPlan.name}.next:`, {workout})
|
|
const last = await getLast(workout.name)
|
|
if (!last) return
|
|
delete last.id
|
|
console.log(`${StartPlan.name}.select:`, {last})
|
|
setReps(last.reps.toString())
|
|
setWeight(last.weight.toString())
|
|
setUnit(last.unit)
|
|
},
|
|
[counts],
|
|
)
|
|
|
|
useFocusEffect(
|
|
useCallback(() => {
|
|
settingsRepo.findOne({where: {}}).then(setSettings)
|
|
refresh()
|
|
}, [refresh]),
|
|
)
|
|
|
|
const handleSubmit = async () => {
|
|
const now = await getNow()
|
|
const workout = counts[selected]
|
|
const best = await getBestSet(workout.name)
|
|
delete best.id
|
|
const newSet: GymSet = {
|
|
...best,
|
|
weight: +weight,
|
|
reps: +reps,
|
|
unit,
|
|
created: now,
|
|
hidden: false,
|
|
}
|
|
await setRepo.save(newSet)
|
|
await refresh()
|
|
if (
|
|
settings.notify &&
|
|
(+weight > best.weight || (+reps > best.reps && +weight === best.weight))
|
|
)
|
|
toast("Great work King! That's a new record.")
|
|
if (!settings.alarm) return
|
|
const milliseconds =
|
|
Number(best.minutes) * 60 * 1000 + Number(best.seconds) * 1000
|
|
NativeModules.AlarmModule.timer(milliseconds)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<StackHeader title={params.plan.days.replace(/,/g, ', ')}>
|
|
<IconButton
|
|
color={dark ? 'white' : 'white'}
|
|
onPress={() => navigation.navigate('EditPlan', {plan: params.plan})}
|
|
icon="edit"
|
|
/>
|
|
</StackHeader>
|
|
<View style={{padding: PADDING, flex: 1, flexDirection: 'column'}}>
|
|
<View style={{flex: 1}}>
|
|
<AppInput
|
|
label="Reps"
|
|
keyboardType="numeric"
|
|
value={reps}
|
|
onChangeText={setReps}
|
|
onSubmitEditing={() => weightRef.current?.focus()}
|
|
selection={selection}
|
|
onSelectionChange={e => setSelection(e.nativeEvent.selection)}
|
|
innerRef={repsRef}
|
|
/>
|
|
<AppInput
|
|
label="Weight"
|
|
keyboardType="numeric"
|
|
value={weight}
|
|
onChangeText={setWeight}
|
|
onSubmitEditing={handleSubmit}
|
|
innerRef={weightRef}
|
|
blurOnSubmit
|
|
/>
|
|
{settings?.showUnit && (
|
|
<AppInput
|
|
autoCapitalize="none"
|
|
label="Unit"
|
|
value={unit}
|
|
onChangeText={setUnit}
|
|
innerRef={unitRef}
|
|
/>
|
|
)}
|
|
{counts && (
|
|
<FlatList
|
|
data={counts}
|
|
renderItem={props => (
|
|
<View>
|
|
<StartPlanItem
|
|
{...props}
|
|
onUndo={refresh}
|
|
onSelect={select}
|
|
selected={selected}
|
|
/>
|
|
<ProgressBar
|
|
progress={(props.item.total || 0) / (props.item.sets || 3)}
|
|
/>
|
|
</View>
|
|
)}
|
|
/>
|
|
)}
|
|
</View>
|
|
<Button mode="contained" icon="save" onPress={handleSubmit}>
|
|
Save
|
|
</Button>
|
|
</View>
|
|
</>
|
|
)
|
|
}
|