/*
* Copyright (c) 2019 - 2020 Arnaud Vergnet.
*
* This file is part of Campus INSAT.
*
* Campus INSAT is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Campus INSAT is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Campus INSAT. If not, see .
*/
import * as React from 'react';
import { StyleSheet, View } from 'react-native';
import i18n from 'i18n-js';
import {
RadioButton,
Card,
List,
Switch,
ToggleButton,
useTheme,
} from 'react-native-paper';
import { Appearance } from 'react-native-appearance';
import CustomSlider from '../../../components/Overrides/CustomSlider';
import CollapsibleScrollView from '../../../components/Collapsible/CollapsibleScrollView';
import GENERAL_STYLES from '../../../constants/Styles';
import {
usePreferences,
useProxiwashPreferences,
} from '../../../context/preferencesContext';
import { useNavigation } from '@react-navigation/core';
import {
getPreferenceBool,
getPreferenceNumber,
getPreferenceString,
GeneralPreferenceKeys,
ProxiwashPreferenceKeys,
} from '../../../utils/asyncStorage';
const styles = StyleSheet.create({
slider: {
flex: 1,
marginHorizontal: 10,
height: 50,
},
card: {
margin: 5,
},
pickerContainer: {
marginLeft: 30,
},
});
/**
* Class defining the Settings screen. This screen shows controls to modify app preferences.
*/
function SettingsScreen() {
const navigation = useNavigation();
const theme = useTheme();
const generalPreferences = usePreferences();
const proxiwashPreferences = useProxiwashPreferences();
const nightMode = getPreferenceBool(
GeneralPreferenceKeys.nightMode,
generalPreferences.preferences
) as boolean;
const nightModeFollowSystem =
(getPreferenceBool(
GeneralPreferenceKeys.nightModeFollowSystem,
generalPreferences.preferences
) as boolean) && Appearance.getColorScheme() !== 'no-preference';
const startScreenPickerSelected = getPreferenceString(
GeneralPreferenceKeys.defaultStartScreen,
generalPreferences.preferences
) as string;
const selectedWash = getPreferenceString(
ProxiwashPreferenceKeys.selectedWash,
proxiwashPreferences.preferences
) as string;
const isDebugUnlocked = getPreferenceBool(
GeneralPreferenceKeys.debugUnlocked,
generalPreferences.preferences
) as boolean;
const notif = getPreferenceNumber(
ProxiwashPreferenceKeys.proxiwashNotifications,
proxiwashPreferences.preferences
);
const savedNotificationReminder = !notif || Number.isNaN(notif) ? 0 : notif;
const onProxiwashNotifPickerValueChange = (value: number) => {
proxiwashPreferences.updatePreferences(
ProxiwashPreferenceKeys.proxiwashNotifications,
value
);
};
const onStartScreenPickerValueChange = (value: string) => {
if (value != null) {
generalPreferences.updatePreferences(
GeneralPreferenceKeys.defaultStartScreen,
value
);
}
};
const getProxiwashNotifPicker = () => {
return (
);
};
const getProxiwashChangePicker = () => {
return (
);
};
const getStartScreenPicker = () => {
return (
);
};
const onToggleNightMode = () => {
generalPreferences.updatePreferences(
GeneralPreferenceKeys.nightMode,
!nightMode
);
};
const onToggleNightModeFollowSystem = () => {
generalPreferences.updatePreferences(
GeneralPreferenceKeys.nightModeFollowSystem,
!nightModeFollowSystem
);
};
/**
* Gets a list item using a checkbox control
*
* @param onPressCallback The callback when the checkbox state changes
* @param icon The icon name to display on the list item
* @param title The text to display as this list item title
* @param subtitle The text to display as this list item subtitle
* @param state The current state of the switch
* @returns {React.Node}
*/
const getToggleItem = (
onPressCallback: () => void,
icon: string,
title: string,
subtitle: string,
state: boolean
) => {
return (
(
)}
right={() => }
/>
);
};
const getNavigateItem = (
route: string,
icon: string,
title: string,
subtitle: string,
onLongPress?: () => void
) => {
return (
{
navigation.navigate(route);
}}
left={(props) => (
)}
right={(props) => (
)}
onLongPress={onLongPress}
/>
);
};
const onSelectWashValueChange = (value: string) => {
if (value != null) {
proxiwashPreferences.updatePreferences(
ProxiwashPreferenceKeys.selectedWash,
value
);
}
};
const unlockDebugMode = () => {
generalPreferences.updatePreferences(
GeneralPreferenceKeys.debugUnlocked,
true
);
};
return (
{Appearance.getColorScheme() !== 'no-preference'
? getToggleItem(
onToggleNightModeFollowSystem,
'theme-light-dark',
i18n.t('screens.settings.nightModeAuto'),
i18n.t('screens.settings.nightModeAutoSub'),
nightModeFollowSystem
)
: null}
{Appearance.getColorScheme() === 'no-preference' ||
!nightModeFollowSystem
? getToggleItem(
onToggleNightMode,
'theme-light-dark',
i18n.t('screens.settings.nightMode'),
nightMode
? i18n.t('screens.settings.nightModeSubOn')
: i18n.t('screens.settings.nightModeSubOff'),
nightMode
)
: null}
(
)}
/>
{getStartScreenPicker()}
{getNavigateItem(
'dashboard-edit',
'view-dashboard',
i18n.t('screens.settings.dashboard'),
i18n.t('screens.settings.dashboardSub')
)}
(
)}
/>
{getProxiwashNotifPicker()}
(
)}
/>
{getProxiwashChangePicker()}
{isDebugUnlocked
? getNavigateItem(
'debug',
'bug-check',
i18n.t('screens.debug.title'),
''
)
: null}
{getNavigateItem(
'about',
'information',
i18n.t('screens.about.title'),
i18n.t('screens.about.buttonDesc'),
unlockDebugMode
)}
{getNavigateItem(
'feedback',
'comment-quote',
i18n.t('screens.feedback.homeButtonTitle'),
i18n.t('screens.feedback.homeButtonSubtitle')
)}
);
}
export default SettingsScreen;