Massive/EditSet.tsx

93 lines
2.5 KiB
TypeScript
Raw Normal View History

2022-07-11 00:28:30 +00:00
import {
RouteProp,
useFocusEffect,
useNavigation,
useRoute,
} from '@react-navigation/native';
2022-10-14 04:27:19 +00:00
import React, {useCallback} from 'react';
2022-08-28 05:25:31 +00:00
import {NativeModules, View} from 'react-native';
2022-07-20 03:48:48 +00:00
import {IconButton} from 'react-native-paper';
import {PADDING} from './constants';
import {HomePageParams} from './home-page-params';
2022-10-14 04:27:19 +00:00
import {useSnackbar} from './MassiveSnack';
import Set from './set';
import {addSet, getSet, updateSet} from './set.service';
2022-07-20 03:48:48 +00:00
import SetForm from './SetForm';
import {useSettings} from './use-settings';
2022-07-03 01:50:01 +00:00
export default function EditSet() {
2022-07-11 00:28:30 +00:00
const {params} = useRoute<RouteProp<HomePageParams, 'EditSet'>>();
2022-10-05 10:38:52 +00:00
const {set} = params;
const navigation = useNavigation();
2022-10-14 04:27:19 +00:00
const {toast} = useSnackbar();
const {settings} = useSettings();
2022-07-11 00:28:30 +00:00
useFocusEffect(
useCallback(() => {
console.log(`${EditSet.name}.focus:`, set);
let title = 'Create set';
if (typeof set.id === 'number') title = 'Edit set';
navigation.getParent()?.setOptions({
headerLeft: () => (
<IconButton icon="arrow-back" onPress={() => navigation.goBack()} />
),
headerRight: null,
title,
2022-07-11 00:28:30 +00:00
});
2022-10-05 10:38:52 +00:00
}, [navigation, set]),
2022-07-11 00:28:30 +00:00
);
const startTimer = useCallback(
async (name: string) => {
if (!settings.alarm) return;
const {minutes, seconds} = await getSet(name);
const milliseconds = (minutes ?? 3) * 60 * 1000 + (seconds ?? 0) * 1000;
NativeModules.AlarmModule.timer(
milliseconds,
!!settings.vibrate,
settings.sound,
);
},
[settings],
);
2022-07-20 03:48:48 +00:00
const update = useCallback(
async (value: Set) => {
console.log(`${EditSet.name}.update`, value);
await updateSet(value);
2022-07-20 03:48:48 +00:00
navigation.goBack();
},
[navigation],
2022-07-20 03:48:48 +00:00
);
2022-07-20 03:48:48 +00:00
const add = useCallback(
async (value: Set) => {
console.log(`${EditSet.name}.add`, {set: value});
startTimer(value.name);
await addSet(value);
if (!settings.notify) return navigation.goBack();
2022-08-24 01:04:45 +00:00
if (
value.weight > set.weight ||
(value.reps > set.reps && value.weight === set.weight)
2022-08-24 01:04:45 +00:00
)
toast("Great work King! That's a new record.", 3000);
2022-07-20 03:48:48 +00:00
navigation.goBack();
},
[navigation, startTimer, set, toast, settings],
2022-07-20 03:48:48 +00:00
);
const save = useCallback(
async (value: Set) => {
if (typeof set.id === 'number') return update(value);
return add(value);
2022-07-20 03:48:48 +00:00
},
[update, add, set.id],
2022-07-20 03:48:48 +00:00
);
2022-07-03 01:50:01 +00:00
return (
2022-10-13 03:32:12 +00:00
<View style={{padding: PADDING, flex: 1}}>
2022-10-05 10:38:52 +00:00
<SetForm save={save} set={set} />
2022-07-11 00:28:30 +00:00
</View>
2022-07-03 01:50:01 +00:00
);
}