forked from NativeScript/firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ios.ts
267 lines (245 loc) · 6.54 KB
/
index.ios.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import { IRemoteConfig, IConfigSettings, IConfigValue, ConfigDefaults } from './common';
import { firebase, FirebaseApp, FirebaseError, serialize } from '@nativescript/firebase-core';
let defaultRemoteConfig: RemoteConfig;
const fb = firebase();
Object.defineProperty(fb, 'remoteConfig', {
value: (app?: FirebaseApp) => {
if (!app) {
if (!defaultRemoteConfig) {
defaultRemoteConfig = new RemoteConfig();
}
return defaultRemoteConfig;
}
return new RemoteConfig(app);
},
writable: false,
});
export class ConfigValue implements IConfigValue {
_native: FIRRemoteConfigValue;
static fromNative(value: FIRRemoteConfigValue) {
if (value instanceof FIRRemoteConfigValue) {
const val = new ConfigValue();
val._native = value;
return val;
}
return null;
}
get native() {
return this._native;
}
get ios() {
return this.native;
}
asBoolean(): boolean {
return this.native.boolValue;
}
asNumber(): number {
return this.native.numberValue;
}
asString(): string {
return this.native.stringValue;
}
getSource(): 'default' | 'static' | 'remote' {
switch (this.native.source) {
case FIRRemoteConfigSource.Default:
return 'default';
case FIRRemoteConfigSource.Static:
return 'static';
case FIRRemoteConfigSource.Remote:
return 'remote';
}
}
}
export class ConfigSettings implements IConfigSettings {
_native: FIRRemoteConfigSettings;
static fromNative(config: FIRRemoteConfigSettings) {
if (config instanceof FIRRemoteConfigSettings) {
const val = new ConfigSettings();
val._native = config;
return val;
}
return null;
}
get native() {
return this._native;
}
get ios() {
return this.native;
}
get fetchTimeMillis(): number {
return this.native.fetchTimeout * 1000;
}
set fetchTimeMillis(value) {
this.native.fetchTimeout = value / 1000;
}
get minimumFetchIntervalMillis(): number {
return this.native.minimumFetchInterval * 1000;
}
set minimumFetchIntervalMillis(value) {
this.native.minimumFetchInterval = value / 1000;
}
}
export class RemoteConfig implements IRemoteConfig {
_native: FIRRemoteConfig;
_app: FirebaseApp;
constructor(app?: FirebaseApp) {
if (app?.native) {
this._native = FIRRemoteConfig.remoteConfigWithApp(app.native);
} else {
if (defaultRemoteConfig) {
return defaultRemoteConfig;
}
defaultRemoteConfig = this;
this._native = FIRRemoteConfig.remoteConfig();
}
}
get native() {
return this._native;
}
get ios() {
return this.native;
}
get app(): FirebaseApp {
if (!this._app) {
// @ts-ignore
this._app = FirebaseApp.fromNative(this.native.app);
}
return this._app;
}
get fetchTimeMillis(): number {
return this.native.lastFetchTime?.getTime?.();
}
get lastFetchStatus(): 'success' | 'failure' | 'no_fetch_yet' | 'throttled' {
switch (this.native.lastFetchStatus) {
case FIRRemoteConfigFetchStatus.Failure:
return 'failure';
case FIRRemoteConfigFetchStatus.Success:
return 'success';
case FIRRemoteConfigFetchStatus.NoFetchYet:
return 'no_fetch_yet';
case FIRRemoteConfigFetchStatus.Throttled:
return 'throttled';
}
}
get settings() {
return ConfigSettings.fromNative(this.native.configSettings);
}
set settings(value: ConfigSettings) {
this.native.configSettings = value.native;
}
activate(): Promise<boolean> {
return new Promise((resolve, reject) => {
this.native.activateWithCompletion((done, error) => {
if (error) {
const err = FirebaseError.fromNative(error);
reject(err);
} else {
resolve(done);
}
});
});
}
ensureInitialized(): Promise<void> {
return new Promise((resolve, reject) => {
this.native.ensureInitializedWithCompletionHandler((error) => {
if (error) {
const err = FirebaseError.fromNative(error);
reject(err);
} else {
resolve();
}
});
});
}
fetch(expirationDurationSeconds?: number): Promise<void> {
return new Promise((resolve, reject) => {
if (typeof expirationDurationSeconds === 'number') {
this.native.fetchWithExpirationDurationCompletionHandler(expirationDurationSeconds, (status, error) => {
if (error) {
const err = FirebaseError.fromNative(error);
reject(err);
} else {
resolve();
}
});
} else {
this.native.fetchWithCompletionHandler((error) => {
if (error) {
const err = FirebaseError.fromNative(error);
reject(err);
} else {
resolve();
}
});
}
});
}
fetchAndActivate(): Promise<boolean> {
return new Promise((resolve, reject) => {
this.native.fetchAndActivateWithCompletionHandler((status, error) => {
if (error) {
const err = FirebaseError.fromNative(error);
const userInfo = error.userInfo;
if (userInfo && userInfo.objectForKey('ActivationFailureReason') !== null && userInfo.objectForKey('ActivationFailureReason')?.indexOf?.('already activate') > -1) {
resolve(true);
} else {
reject(err);
}
} else {
if (status === FIRRemoteConfigFetchAndActivateStatus.SuccessFetchedFromRemote) {
resolve(true);
} else {
resolve(false);
}
}
});
});
}
getAll() {
const ks = NSMutableSet.new<string>();
ks.addObjectsFromArray(this.native.allKeysFromSource(FIRRemoteConfigSource.Static));
ks.addObjectsFromArray(this.native.allKeysFromSource(FIRRemoteConfigSource.Default));
ks.addObjectsFromArray(this.native.allKeysFromSource(FIRRemoteConfigSource.Remote));
const objects = ks.allObjects;
const count = objects.count;
const all = {};
for (let i = 0; i < count; i++) {
const key = objects.objectAtIndex(i);
all[key] = ConfigValue.fromNative(this.native.configValueForKey(key));
}
return all;
}
getBoolean(key: string): boolean {
return this.getValue(key)?.asBoolean?.();
}
getNumber(key: string): number {
return this.getValue(key)?.asNumber?.();
}
getString(key: string): string {
return this.getValue(key)?.asString?.();
}
getValue(key: string) {
return ConfigValue.fromNative(this.native.configValueForKey(key));
}
reset(): Promise<void> {
return Promise.resolve();
}
setDefaults(defaults: ConfigDefaults): Promise<void> {
return new Promise((resolve, reject) => {
this.native.setDefaults(serialize(defaults));
resolve();
});
}
setDefaultsFromResource(resourceName: string): Promise<void> {
return new Promise((resolve, reject) => {
if (NSBundle.mainBundle.pathForResourceOfType(resourceName, 'plist')) {
this.native.setDefaultsFromPlistFileName(resourceName);
resolve();
} else {
reject({
message: 'The specified resource name was not found.',
});
}
});
}
}