Replace progress bar with toast in plan

It doesn't feel obvious enough when a new
set has been added with the progress bar +
number incrementing. I frequently found
myself double-checking I had actually submitted
a new set.
This commit is contained in:
Brandon Presley 2022-11-14 14:19:41 +13:00
parent 6b74b5114c
commit b74f77e506
1 changed files with 3 additions and 10 deletions

View File

@ -2,9 +2,9 @@ import {RouteProp, useRoute} from '@react-navigation/native'
import {useCallback, useEffect, useMemo, useRef, useState} from 'react'
import {NativeModules, TextInput, View} from 'react-native'
import {FlatList} from 'react-native-gesture-handler'
import {Button, ProgressBar} from 'react-native-paper'
import {Button} from 'react-native-paper'
import {getBestSet} from './best.service'
import {MARGIN, PADDING} from './constants'
import {PADDING} from './constants'
import CountMany from './count-many'
import {AppDataSource} from './data-source'
import {getNow, setRepo, settingsRepo} from './db'
@ -99,6 +99,7 @@ export default function StartPlan() {
(+weight > best.weight || (+reps > best.reps && +weight === best.weight))
)
toast("Great work King! That's a new record.")
else toast('Set added.')
if (!settings.alarm) return
const milliseconds =
Number(best.minutes) * 60 * 1000 + Number(best.seconds) * 1000
@ -113,11 +114,6 @@ export default function StartPlan() {
toast('Commas and single quotes would break CSV exports')
}, [])
const progress = useMemo(() => {
if (!counts || !counts[selected].sets) return
return counts[selected].total / (counts[selected].sets ?? 1)
}, [counts, selected])
return (
<>
<StackHeader title={params.plan.days.replace(/,/g, ', ')} />
@ -165,9 +161,6 @@ export default function StartPlan() {
/>
)}
</View>
{progress && (
<ProgressBar progress={progress} style={{marginBottom: MARGIN}} />
)}
<Button mode="contained" icon="save" onPress={handleSubmit}>
Save
</Button>