phaser4-rex-plugins
Version:
47 lines (39 loc) • 1.01 kB
JavaScript
import GetValue from '../../../utils/object/GetValue.js';
import Add from './Add.js';
import AddRandom from './AddRandom.js';
import GetId from './GetId.js';
import GetAlias from './GetAlias.js';
import GetRandomAlias from './GetRandomAlias.js';
import Remove from './Remove.js';
class IdAlias {
constructor(config) {
this.database = firebase.firestore();
this.setRootPath(GetValue(config, 'root', ''));
}
shutdown() {
}
destroy() {
this.shutdown();
}
setRootPath(rootPath) {
this.rootPath = rootPath;
this.rootRef = this.database.collection(rootPath);
return this;
}
getAliasRef(alias) {
return this.rootRef.doc(alias);
}
}
var methods = {
add: Add,
addRandom: AddRandom,
getId: GetId,
getAlias: GetAlias,
getRandomAlias: GetRandomAlias,
remove: Remove
}
Object.assign(
IdAlias.prototype,
methods
);
export default IdAlias;