/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import React, { useState, useEffect } from 'react'; import ListItem from '@mui/material/ListItem'; import ListItemText from '@mui/material/ListItemText'; import ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction'; import Switch from '@mui/material/Switch'; import Checkbox from '@mui/material/Checkbox'; function getTwoStateType(type: 'Checkbox' | 'Switch') { if (type === 'Switch') { return Switch; } return Checkbox; } function TwoSatePreference(props: TwoStatePreferenceProps) { const { title, summary, currentValue, updateValue, type, } = props; const [internalCurrentValue, setInternalCurrentValue] = useState(currentValue); useEffect(() => { setInternalCurrentValue(currentValue); }, [currentValue]); return ( {React.createElement(getTwoStateType(type), { edge: 'end', checked: internalCurrentValue, onChange: () => { updateValue(!currentValue); // appear smooth setInternalCurrentValue(!currentValue); }, })} ); } export function CheckBoxPreference(props: CheckBoxPreferenceProps) { return ; } export function SwitchPreferenceCompat(props: SwitchPreferenceCompatProps) { return ; } export default { CheckBoxPreference, SwitchPreferenceCompat };