Skip to content

Commit 63a518f

Browse files
committed
Implements firestack.database().ServerValue.TIMESTAMP synchronously and timestamp is now used for .push()
1 parent 569be66 commit 63a518f

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

android/src/main/java/io/fullstack/firestack/FirestackModule.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package io.fullstack.firestack;
22

3+
import java.util.Date;
34
import java.util.HashMap;
45
import java.util.Map;
56

@@ -207,6 +208,7 @@ public void onHostDestroy() {
207208
public Map<String, Object> getConstants() {
208209
final Map<String, Object> constants = new HashMap<>();
209210
constants.put("googleApiAvailability", getPlayServicesStatus());
211+
constants.put("serverTimeOffset", new Date().getTime() - Long.parseLong(ServerValue.TIMESTAMP.get(".sv")));
210212
return constants;
211213
}
212214
}

lib/firestack.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export default class Firestack extends Singleton {
171171
return this._remoteConfig;
172172
}
173173

174-
// other
174+
// // TODO remove as deprecated and its in the wrong place anyway
175175
get ServerValue(): Promise<*> {
176176
return promisify('serverValue', FirestackModule)();
177177
}

lib/modules/database/index.js

+17-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ import { NativeModules, NativeEventEmitter } from 'react-native';
66
import { Base } from './../base';
77
import Snapshot from './snapshot.js';
88
import Reference from './reference.js';
9-
import { promisify, isFunction } from './../../utils';
9+
import { promisify } from './../../utils';
1010

11+
const FirestackModule = NativeModules.Firestack;
1112
const FirestackDatabase = NativeModules.FirestackDatabase;
1213
const FirestackDatabaseEvt = new NativeEventEmitter(FirestackDatabase);
1314

@@ -18,6 +19,7 @@ export default class Database extends Base {
1819
constructor(firestack: Object, options: Object = {}) {
1920
super(firestack, options);
2021
this.subscriptions = {};
22+
this.serverTimeOffset = FirestackModule.serverTimeOffset || 0;
2123
this.persistenceEnabled = false;
2224
this.namespace = 'firestack:database';
2325

@@ -31,9 +33,20 @@ export default class Database extends Base {
3133
err => this._handleDatabaseError(err)
3234
);
3335

36+
this.offsetRef = this.ref('.info/serverTimeOffset');
37+
this.offsetRef.on('value', (snapshot) => {
38+
this.serverTimeOffset = snapshot.val() || this.serverTimeOffset;
39+
});
40+
3441
this.log.debug('Created new Database instance', this.options);
3542
}
3643

44+
get ServerValue() {
45+
return {
46+
TIMESTAMP: this._getServerTime(),
47+
};
48+
}
49+
3750
/**
3851
* Returns a new firestack reference instance
3952
* @param path
@@ -143,7 +156,9 @@ export default class Database extends Base {
143156
/**
144157
* INTERNALS
145158
*/
146-
159+
_getServerTime() {
160+
return new Date().getTime() + this.serverTimeOffset;
161+
}
147162

148163
/**
149164
*

lib/modules/database/reference.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default class Reference extends ReferenceBase {
7878
push(value: any, onComplete: Function) {
7979
if (value === null || value === undefined) {
8080
// todo add server timestamp to push id call.
81-
const _paths = this.path.concat([generatePushID()]);
81+
const _paths = this.path.concat([generatePushID(this.db.serverTimeOffset)]);
8282
return new Reference(this.db, _paths);
8383
}
8484

0 commit comments

Comments
 (0)