Firebase Stub: added support for data remove

This commit is contained in:
gianantoniopini
2021-01-14 17:16:01 +01:00
parent 46781bba60
commit 6ac0f37ada
4 changed files with 109 additions and 43 deletions

View File

@ -1,16 +1,6 @@
/* eslint-disable no-underscore-dangle */
import DatabaseConstants from '../constants/database';
class DataSnapshot {
constructor(eventType, getData, value = undefined) {
if (!eventType) {
throw new Error('eventType must be provided.');
} else if (typeof eventType !== 'string') {
throw new Error('eventType should be a string.');
}
this._eventType = eventType;
constructor(getData, value = undefined) {
if (!getData) {
throw new Error('getData must be provided.');
} else if (typeof getData !== 'function') {
@ -22,20 +12,12 @@ class DataSnapshot {
this._value = value;
}
get eventType() {
return this._eventType;
}
get value() {
return this._value;
}
val() {
if (this.eventType === DatabaseConstants.valueEventType) {
return typeof this.value !== 'undefined' ? this.value : this._getData();
}
return undefined;
return typeof this.value !== 'undefined' ? this.value : this._getData();
}
}

View File

@ -17,7 +17,7 @@ class Reference {
this._uuid = uuidv4();
this._dataSnapshots = {};
this._dataSnapshot = null;
if (!getDatabaseData) {
throw new Error('getDatabaseData must be provided.');
@ -91,31 +91,42 @@ class Reference {
throw new Error('value must be provided.');
}
this._setDatabaseData(this.path, value);
this.debounceEventCallback(DatabaseConstants.valueEventType);
const currentData = this._getData();
const pathElements = this.path.split('/');
let parentReference = null;
if (pathElements.length === 2) {
const parentReference = this._getReference(pathElements[0]);
parentReference = this._getReference(pathElements[0]);
}
this._setDatabaseData(this.path, value);
if (value === null) {
if (parentReference) {
parentReference.debounceEventCallback(
DatabaseConstants.childRemovedEventType,
currentData,
);
parentReference.debounceEventCallback(DatabaseConstants.valueEventType);
}
} else {
const eventType = DatabaseConstants.valueEventType;
this.debounceEventCallback(eventType);
if (parentReference) {
parentReference.debounceEventCallback(eventType);
}
}
}
debounceEventCallback(eventType) {
debounceEventCallback(eventType, snapshotValue = undefined) {
if (!(eventType in this.eventCallbacks)) {
return;
}
let snapshot = new DataSnapshot(eventType, () => this._getData(), null);
if (this.path === DatabaseConstants.connectedPath) {
snapshot = new DataSnapshot(eventType, () => this._getData(), true);
} else if (this.path === DatabaseConstants.resumesPath) {
snapshot = new DataSnapshot(eventType, () => this._getData());
}
const snapshot =
this.path === DatabaseConstants.connectedPath
? new DataSnapshot(() => this._getData(), true)
: new DataSnapshot(() => this._getData(), snapshotValue);
const debouncedEventCallback = debounce(
this.eventCallbacks[eventType],
@ -139,23 +150,27 @@ class Reference {
}
on(eventType, callback) {
if (eventType !== DatabaseConstants.valueEventType) {
return;
}
this._eventCallbacks[eventType] = callback;
this.debounceEventCallback(eventType);
if (eventType === DatabaseConstants.valueEventType) {
this.debounceEventCallback(eventType);
}
}
async once(eventType) {
const newDataSnapshot = new DataSnapshot(eventType, () => this._getData());
const existingDataSnapshot = this._dataSnapshots[newDataSnapshot.eventType];
if (existingDataSnapshot) {
return Promise.resolve(existingDataSnapshot);
if (!eventType) {
throw new Error('eventType must be provided.');
} else if (typeof eventType !== 'string') {
throw new Error('eventType should be a string.');
}
this._dataSnapshots[newDataSnapshot.eventType] = newDataSnapshot;
if (this._dataSnapshot) {
return Promise.resolve(this._dataSnapshot);
}
const newDataSnapshot = new DataSnapshot(() => this._getData());
this._dataSnapshot = newDataSnapshot;
return Promise.resolve(newDataSnapshot);
}
@ -170,6 +185,12 @@ class Reference {
return Promise.resolve(true);
}
async remove() {
this._setData(null);
return Promise.resolve(true);
}
async set(value) {
this._setData(value);