import { STRING_E2E_ENABLED, STRING_ENC_NOT_ENABLED, STRING_LOCAL_ENC_ENABLED } from '@/Strings' import { AppState } from '@/UIModels/AppState' import { observer } from 'mobx-react-lite' import { FunctionComponent } from 'react' import { Title, Text } from '../../PreferencesComponents/Content' import PreferencesGroup from '../../PreferencesComponents/PreferencesGroup' import PreferencesSegment from '../../PreferencesComponents/PreferencesSegment' import EncryptionEnabled from './EncryptionEnabled' type Props = { appState: AppState } const Encryption: FunctionComponent = ({ appState }) => { const app = appState.application const hasUser = app.hasAccount() const hasPasscode = app.hasPasscode() const isEncryptionEnabled = app.isEncryptionAvailable() const encryptionStatusString = hasUser ? STRING_E2E_ENABLED : hasPasscode ? STRING_LOCAL_ENC_ENABLED : STRING_ENC_NOT_ENABLED return ( Encryption {encryptionStatusString} {isEncryptionEnabled && } ) } export default observer(Encryption)