import React from 'react' import {View} from 'react-native' import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' import {useQueryClient} from '@tanstack/react-query' import {sanitizeAppLanguageSetting} from '#/locale/helpers' import {APP_LANGUAGES} from '#/locale/languages' import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {resetPostsFeedQueries} from '#/state/queries/post-feed' import {atoms as a, useTheme} from '#/alf' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' export function AppLanguageDropdown() { const t = useTheme() const queryClient = useQueryClient() const langPrefs = useLanguagePrefs() const setLangPrefs = useLanguagePrefsApi() const sanitizedLang = sanitizeAppLanguageSetting(langPrefs.appLanguage) const onChangeAppLanguage = React.useCallback( (value: Parameters[0]) => { if (!value) return if (sanitizedLang !== value) { setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value)) } setLangPrefs.setPrimaryLanguage(value) setLangPrefs.setContentLanguage(value) // reset feeds to refetch content resetPostsFeedQueries(queryClient) }, [sanitizedLang, setLangPrefs, queryClient], ) return ( Boolean(l.code2)).map(l => ({ label: l.name, value: l.code2, key: l.code2, }))} useNativeAndroidPickerStyle={false} style={{ inputAndroid: { color: t.atoms.text_contrast_medium.color, fontSize: 16, paddingRight: 12 + 4, }, inputIOS: { color: t.atoms.text.color, fontSize: 16, paddingRight: 12 + 4, }, }} /> ) }