1
0
mirror of https://github.com/tooot-app/app synced 2025-04-04 21:51:12 +02:00
tooot/src/utils/checkEnvironment.ts
xmflsct 5b35951424 Remove expo-updates unfortunately
As now it starts charging
2022-09-21 00:16:55 +02:00

50 lines
1.0 KiB
TypeScript

import Constants from 'expo-constants'
const mapEnvironment = <T = unknown>({
release,
candidate,
development
}: {
release: T
candidate?: T
development?: T
}): T => {
if (isDevelopment) {
if (development) {
return development
} else {
throw new Error('Development environment but no development handler')
}
}
if (isCandidate) {
if (candidate) {
return candidate
} else {
throw new Error('Candidate environment but no candidate handler')
}
}
if (isRelease) {
return release
}
throw new Error(
`Environment not set. Please set the environment in the Expo project settings.`
)
}
const isDevelopment =
__DEV__ ||
['development'].some(channel => (Constants.expoConfig?.extra?.environment) === channel)
const isCandidate = ['candidate'].some(channel =>
(Constants.expoConfig?.extra?.environment) === channel
)
const isRelease = ['release'].some(channel =>
(Constants.expoConfig?.extra?.environment) === channel
)
export { mapEnvironment, isDevelopment, isCandidate, isRelease }