import { NetInfoStateType } from '@react-native-community/netinfo'; import { IMAGES_PREFERENCE_DOWNLOAD, AUDIO_PREFERENCE_DOWNLOAD, VIDEO_PREFERENCE_DOWNLOAD, MediaDownloadOption } from '../constants'; import userPreferences from './userPreferences'; import { store } from '../store/auxStore'; type TMediaType = typeof IMAGES_PREFERENCE_DOWNLOAD | typeof AUDIO_PREFERENCE_DOWNLOAD | typeof VIDEO_PREFERENCE_DOWNLOAD; export const fetchAutoDownloadEnabled = (mediaType: TMediaType) => { const { netInfoState } = store.getState().app; const mediaDownloadPreference = userPreferences.getString(mediaType) as MediaDownloadOption; if (mediaDownloadPreference === 'wifi_mobile_data') { return true; } if (mediaDownloadPreference === 'wifi' && netInfoState === NetInfoStateType.wifi) { return true; } if (mediaDownloadPreference === null) { if (mediaType === 'imagesPreferenceDownload') { return true; } if (mediaType === 'audioPreferenceDownload' || mediaType === 'videoPreferenceDownload') { return netInfoState === NetInfoStateType.wifi; } } return false; };