import React from 'react' import {StyleSheet, View} from 'react-native' import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect} from '@react-navigation/native' import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {useModalControls} from '#/state/modals' import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {useSetMinimalShellMode} from '#/state/shell' import {APP_LANGUAGES, LANGUAGES} from 'lib/../locale/languages' import {useAnalytics} from 'lib/analytics/analytics' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' import {s} from 'lib/styles' import {Button} from 'view/com/util/forms/Button' import {ViewHeader} from 'view/com/util/ViewHeader' import {CenteredView} from 'view/com/util/Views' import {Text} from '../com/util/text/Text' type Props = NativeStackScreenProps export function LanguageSettingsScreen(_props: Props) { const pal = usePalette('default') const {_} = useLingui() const langPrefs = useLanguagePrefs() const setLangPrefs = useLanguagePrefsApi() const {isTabletOrDesktop} = useWebMediaQueries() const {screen, track} = useAnalytics() const setMinimalShellMode = useSetMinimalShellMode() const {openModal} = useModalControls() useFocusEffect( React.useCallback(() => { screen('Settings') setMinimalShellMode(false) }, [screen, setMinimalShellMode]), ) const onPressContentLanguages = React.useCallback(() => { track('Settings:ContentlanguagesButtonClicked') openModal({name: 'content-languages-settings'}) }, [track, openModal]) const onChangePrimaryLanguage = React.useCallback( (value: Parameters[0]) => { if (!value) return if (langPrefs.primaryLanguage !== value) { setLangPrefs.setPrimaryLanguage(value) } }, [langPrefs, setLangPrefs], ) const onChangeAppLanguage = React.useCallback( (value: Parameters[0]) => { if (!value) return if (langPrefs.appLanguage !== value) { setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value)) } }, [langPrefs, setLangPrefs], ) const myLanguages = React.useMemo(() => { return ( langPrefs.contentLanguages .map(lang => LANGUAGES.find(l => l.code2 === lang)) .filter(Boolean) // @ts-ignore .map(l => l.name) .join(', ') ) }, [langPrefs.contentLanguages]) return ( {/* APP LANGUAGE */} App Language Select your app language for the default text to display in the app. Boolean(l.code2)).map(l => ({ label: l.name, value: l.code2, key: l.code2, }))} style={{ inputAndroid: { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, inputIOS: { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, inputWeb: { cursor: 'pointer', // @ts-ignore web only '-moz-appearance': 'none', '-webkit-appearance': 'none', appearance: 'none', outline: 0, borderWidth: 0, backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, }} /> {/* PRIMARY LANGUAGE */} Primary Language Select your preferred language for translations in your feed. Boolean(l.code2)).map(l => ({ label: l.name, value: l.code2, key: l.code2 + l.code3, }))} style={{ inputAndroid: { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, inputIOS: { backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, inputWeb: { cursor: 'pointer', // @ts-ignore web only '-moz-appearance': 'none', '-webkit-appearance': 'none', appearance: 'none', outline: 0, borderWidth: 0, backgroundColor: pal.viewLight.backgroundColor, color: pal.text.color, fontSize: 14, letterSpacing: 0.5, fontWeight: '500', paddingHorizontal: 14, paddingVertical: 8, borderRadius: 24, }, }} /> {/* CONTENT LANGUAGES */} Content Languages Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown. ) } const styles = StyleSheet.create({ container: { flex: 1, paddingBottom: 90, }, desktopContainer: { borderLeftWidth: 1, borderRightWidth: 1, paddingBottom: 40, }, button: { flexDirection: 'row', alignItems: 'center', gap: 8, }, })