forked from xcarpentier/react-native-country-picker-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountryContext.ts
48 lines (45 loc) · 1.32 KB
/
CountryContext.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import * as React from 'react'
import { TranslationLanguageCode } from './types'
import {
getEmojiFlagAsync,
getImageFlagAsync,
getCountryNameAsync,
getCountriesAsync,
getLetters,
getCountryCallingCodeAsync,
getCountryCurrencyAsync,
getCountryInfoAsync,
search,
} from './CountryService'
export interface CountryContextParam {
translation?: TranslationLanguageCode
getCountryNameAsync: typeof getCountryNameAsync
getImageFlagAsync: typeof getImageFlagAsync
getEmojiFlagAsync: typeof getEmojiFlagAsync
getCountriesAsync: typeof getCountriesAsync
getLetters: typeof getLetters
getCountryCallingCodeAsync: typeof getCountryCallingCodeAsync
getCountryCurrencyAsync: typeof getCountryCurrencyAsync
search: typeof search
getCountryInfoAsync: typeof getCountryInfoAsync
}
export const DEFAULT_COUNTRY_CONTEXT = {
translation: 'common' as TranslationLanguageCode,
getCountryNameAsync,
getImageFlagAsync,
getEmojiFlagAsync,
getCountriesAsync,
getCountryCallingCodeAsync,
getCountryCurrencyAsync,
search,
getLetters,
getCountryInfoAsync,
}
export const CountryContext = React.createContext<CountryContextParam>(
DEFAULT_COUNTRY_CONTEXT,
)
export const useContext = () => React.useContext(CountryContext)
export const {
Provider: CountryProvider,
Consumer: CountryConsumer,
} = CountryContext