-
Notifications
You must be signed in to change notification settings - Fork 14
/
BuildConfigType.ts
186 lines (178 loc) · 6.24 KB
/
BuildConfigType.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
import { TranslationsType } from 'translations'
import { ThemeType } from './ThemeType'
// Build Configs
// These are the types of our build configs and therefore define the structure and available options.
// Each build config (e.g. integreat, malte) is available per platform (android, ios, web) with some shared options.
// Feature flags are boolean build config options defining whether a specified feature is enabled.
// Prevent enabled intro slide in combination with a fixed city.
// If you change this make sure you are not navigating to the landing screen upon closing the intro slides.
export type FixedCityType =
| {
// Shows intro slides to the users on first app start.
introSlides: false
// Preselects a city without showing a selection, changing it is not possible for users.
fixedCity: string | null
}
| {
introSlides: true
fixedCity: null
}
export type FeatureFlagsType = FixedCityType & {
// Whether the build should be floss. If set to true, proprietary libraries and features like firebase are stripped.
floss: boolean
// Enables POIs and maps, can be disabled via our api on a per city basis.
pois: boolean
// Enables local news and tünews, can be disabled via our api on a per city basis.
newsStream: boolean
// Enables firebase push notifications, can be disabled by users.
pushNotifications: boolean
// Enables tracking campaign for the jpal evaluation.
jpalTracking: boolean
// Enables error tracking to sentry, can be disabled by users.
sentry: boolean
// Enables additional debugging output for devs (i18n, hidden cities, version).
developerFriendly: boolean
// Enables the option for users to suggest Integreat to their city and uses this template for the suggestion
cityNotCooperating?: boolean
cityNotCooperatingTemplate: string | null
chat: boolean
}
// Available on all platforms
export type CommonBuildConfigType = {
appName: string
appIcon: string
notificationIcon?: string
cmsUrl: string
// Secondary api url to use, selectable by clicking ten times on the location marker (works only on native).
switchCmsUrl?: string
// Host name of the web app, used for sharing, deep linking and social media previews.
hostName: string
// Hostnames from which resources are automatically downloaded for offline usage.
allowedHostNames: string[]
// Linked hosts that can may look similar https://chromium.googlesource.com/chromium/src/+/master/docs/security/lookalikes/lookalike-domains.md#automated-warning-removal
allowedLookalikes: string[]
// Regex defining which urls to intercept as they are internal ones.
supportedIframeSources: string[]
internalLinksHijackPattern: string
featureFlags: FeatureFlagsType
lightTheme: ThemeType
// Translations deviating from the standard integreat translations.
translationsOverride?: TranslationsType
// Assets like icons, logos and imprints.
assets: string
// Whether the build config is used for e2e tests.
e2e?: boolean
// Urls with (localized) information about the app.
aboutUrls: {
default: string
[language: string]: string
}
// Urls with (localized) privacy information.
privacyUrls: {
default: string
[language: string]: string
}
// Urls with (localized) accessibility information
accessibilityUrls?: {
default: string
[language: string]: string
}
}
// Available only on web
export type WebBuildConfigType = CommonBuildConfigType & {
// Used for generating manifest.json
appDescription: string
// Main imprint of the app.
mainImprint: string
// Url to the manifest.json generated with webpack.
manifestUrl?: string
icons: {
appLogo: string
appLogoMobile: string
cityNotCooperating?: string
appleTouchIcon: string
socialMediaPreview: string
favicons: string
}
splashScreen?: {
// Splash screen showed before the web app has been loaded.
backgroundColor: string
imageUrl: string
}
campaign?: {
// Shows a different app logo from start to end date.
campaignAppLogo: string
campaignAppLogoMobile: string
startDate: string
endDate: string
}
// iOS and android app information
apps: {
android: {
// Application identifier
applicationId: string
// SHA-256 certificate fingerprint of the app signing key certificate
sha256CertFingerprint: string
}
ios: {
// iOS application identifier.
bundleIdentifier: string
// Id of the app in the Apple App Store
appStoreId: string
// Apple app site association app ids, used for apple-app-site-association
appleAppSiteAssociationAppIds: string[]
// Unique generated app name in the Apple App Store
appStoreName: string
}
} | null
}
// Firebase config for android
// These values can be retrieved from the google-services.json according to this guide:
// https://developers.google.com/android/guides/google-services-plugin#processing_the_json_file
type AndroidGoogleServicesConfigType = {
googleAppId: string
gcmDefaultSenderId: string
defaultWebClientId: string
gaTrackingId: null | string
firebaseDatabaseUrl: string
googleApiKey: string
googleCrashReportingApiKey: string
projectId: string
}
// Only available on android
export type AndroidBuildConfigType = CommonBuildConfigType & {
splashScreen: boolean
// Application identifier
applicationId: string
// Android application identifier.
googleServices: AndroidGoogleServicesConfigType | null
}
// Firebase config for iOS
// These values can be retrieved from the GoogleService-Info.plist.
type iOSGoogleServicesConfigType = {
clientId: string
reversedClientId: string
apiKey: string
gcmSenderId: string
plistVersion: string
bundleId: string
projectId: string
storageBucket: string
isAdsEnabled: boolean
isAnalyticsEnabled: boolean
isAppInviteEnabled: boolean
isGCMEnabled: boolean
isSigninEnabled: boolean
googleAppId: string
databaseUrl: string
}
// Only available on iOS
export type iOSBuildConfigType = CommonBuildConfigType & {
// Shows the app icon as launch screen on app start.
launchScreen: string
// iOS application identifier.
bundleIdentifier: string
// Provisioning profile to sign the app.
provisioningProfileSpecifier: string
googleServices: iOSGoogleServicesConfigType | null | undefined
}