import {Picker} from '@react-native-picker/picker'; import {useFocusEffect} from '@react-navigation/native'; import React, {useCallback, useContext, useEffect, useState} from 'react'; import {NativeModules, ScrollView, StyleSheet} from 'react-native'; import DocumentPicker from 'react-native-document-picker'; import {Button, Text} from 'react-native-paper'; import {CustomTheme} from './App'; import ConfirmDialog from './ConfirmDialog'; import {MARGIN} from './constants'; import {SnackbarContext} from './MassiveSnack'; import MassiveSwitch from './MassiveSwitch'; import Page from './Page'; import {getSettings, settings, updateSettings} from './settings.service'; interface Input { name: string; value?: T; onChange: (value: T) => void; } export default function SettingsPage() { const [vibrate, setVibrate] = useState(true); const [alarm, setAlarm] = useState(false); const [predict, setPredict] = useState(false); const [sound, setSound] = useState(''); const [notify, setNotify] = useState(false); const [images, setImages] = useState(false); const [battery, setBattery] = useState(false); const [ignoring, setIgnoring] = useState(false); const [search, setSearch] = useState(''); const [showUnit, setShowUnit] = useState(true); const {color, setColor} = useContext(CustomTheme); const {toast} = useContext(SnackbarContext); useFocusEffect( useCallback(() => { console.log('SettingsPage.refresh:', {settings}); setAlarm(!!settings.alarm); setPredict(!!settings.predict); setVibrate(!!settings.vibrate); setSound(settings.sound ?? ''); setNotify(!!settings.notify); setImages(!!settings.images); NativeModules.AlarmModule.ignoringBattery(setIgnoring); }, []), ); useEffect(() => { updateSettings({ vibrate: +vibrate, alarm: +alarm, predict: +predict, sound, notify: +notify, images: +images, showUnit: +showUnit, color, }); getSettings(); }, [vibrate, alarm, predict, sound, notify, images, showUnit, color]); const changeAlarmEnabled = useCallback( (enabled: boolean) => { setAlarm(enabled); if (enabled) toast('Timers will now run after each set.', 4000); else toast('Stopped timers running after each set.', 4000); if (enabled && !ignoring) setBattery(true); }, [setBattery, ignoring, toast], ); const changePredict = useCallback( (enabled: boolean) => { setPredict(enabled); if (enabled) toast('Predict your next set based on todays plan.', 4000); else toast('New sets will always be empty.', 4000); }, [setPredict, toast], ); const changeVibrate = useCallback( (enabled: boolean) => { setVibrate(enabled); if (enabled) toast('When a timer completes, vibrate your phone.', 4000); else toast('Stop vibrating at the end of timers.', 4000); }, [setVibrate, toast], ); const changeSound = useCallback(async () => { const {fileCopyUri} = await DocumentPicker.pickSingle({ type: 'audio/*', copyTo: 'documentDirectory', }); if (!fileCopyUri) return; setSound(fileCopyUri); toast('This song will now play after rest timers complete.', 4000); }, [toast]); const changeNotify = useCallback( (enabled: boolean) => { setNotify(enabled); if (enabled) toast('Show when a set is a new record.', 4000); else toast('Stopped showing notifications for new records.', 4000); }, [toast], ); const changeImages = useCallback( (enabled: boolean) => { setImages(enabled); if (enabled) toast('Show images for sets.', 4000); else toast('Stopped showing images for sets.', 4000); }, [toast], ); const changeUnit = useCallback( (enabled: boolean) => { setShowUnit(enabled); if (enabled) toast('Show option to select unit for sets.', 4000); else toast('Hid the unit option when adding/editing sets.', 4000); }, [toast], ); const switches: Input[] = [ {name: 'Rest timers', value: alarm, onChange: changeAlarmEnabled}, {name: 'Vibrate', value: vibrate, onChange: changeVibrate}, {name: 'Predict sets', value: predict, onChange: changePredict}, {name: 'Record notifications', value: notify, onChange: changeNotify}, {name: 'Show images', value: images, onChange: changeImages}, {name: 'Show unit', value: showUnit, onChange: changeUnit}, ]; return ( {switches .filter(input => input.name.toLowerCase().includes(search.toLowerCase()), ) .map(input => ( {input.name} ))} {'alarm sound'.includes(search.toLowerCase()) && ( )} {'color'.includes(search.toLowerCase()) && ( setColor(value)}> )} { NativeModules.AlarmModule.ignoreBattery(); setBattery(false); }}> Disable battery optimizations for Massive to use rest timers. ); } const styles = StyleSheet.create({ item: { alignSelf: 'flex-start', marginBottom: MARGIN, marginLeft: MARGIN, }, });