firebase-firestore-helper
v6.0.0
Published
Firebase Firestore Helper
Downloads
9
Maintainers
Readme
Firebase Firestore Helper
Supports
firebase-firestore-helper@^1.0.0
supportsfirebase-admin@^8.0.0
firebase-firestore-helper@^2.0.0
supportsfirebase-admin@^9.0.0
firebase-firestore-helper@^3.0.0
supportsfirebase-admin@^10.0.0
firebase-firestore-helper@^4.0.0
supportsfirebase-admin@^10.0.0
firebase-firestore-helper@^5.0.0
supportsfirebase-admin@^11.0.0
firebase-firestore-helper@^6.0.0
supportsfirebase-admin@^12.0.0
How to use it
Initializing the Helper
In your ./src/index.js
file (or whatever is called your root file), initialize the helper by doing:
const { initHelper } = require('firebase-firestore-helper');
// import { initHelper } from 'firebase-firestore-helper';
initHelper();
Using the Helper
When .add
function is called, it must receive an id
inside the object to save, which is the one is going to be used as document id.
We recommend to use an string
as ID (usually uuid/v4
)
So, for example:
After running this:
const { helperCreator } = require('firebase-firestore-helper');
const db = helperCreator({ entity: 'users' });
db.add({
id: 'asd123',
username: 'BrodaNoel',
age: 31,
});
Your Firestore DB will look like:
{
"users": {
"asd123": {
"id": "asd123",
"username": "Broda Noel",
"age": 31
}
}
}
Full Example, and recommended use
Your folder tree should contain 3 important parts:
|-> db
| |-> users
| |-> photos
| |-> ...
|-> actions
| |-> users
| |-> photos
| |-> ...
|-> app
| |-> users
| |-> photos
| |-> ...
|-> index.js
index.js
will initialize the helper, by usinginitHelper
function, just before you callinitializeApp
fromfirebase-admin/app
db/users
will expose the object created by this library, which will handle theusers
collections in Firestore. You'll be able to override here.actions/users
will use the object exposed bydb/users
, and where you'll write all the business logic.app/*
is just the regular file where you are listeining for thehttpRequests
, which will useractions/*
in order to handle business logic.
Ideally, you will never user db
files from app
files.
// db/users.js
const { helperCreator } = require('firebase-firestore-helper');
const ENTITY = 'users';
// This will expouse all the functions of this library (check functions documentation)
module.exports = {
// `useCache` is `true` BY DEFAULT!!!
...helperCreator({ entity: ENTITY, useCache: true }),
};
// actions/users.js
const { actionsHelperCreator } = require('firebase-firestore-helper');
const db = require('../db/users');
const login = async (email, password) => {
const user = await db.getBy({ where: { email }, limit: 1 });
if (!user || user.password !== password) {
// ...
}
};
module.exports = {
...actionsHelperCreator(db),
login,
};
// app/users.js
const actions = require('../actions/users');
const login = async (req, res) => {
const isPasswordCorrect = await actions.login(/* ... */);
// Your logic here
return req.send(/* ... */);
}
const edit = async (req, res) => {
// Your logic here
const user = req.body.user;
const firstname = req.body.newData.firstname;
const lastname = req.body.newData.lastname;
await actions.editById(user.id, { firstname, lastname });
return req.send(/* ... */);
}
module.exports = app => {
app.post('/v1/user/login', login);
app.post('/v1/user/edit', edit);
Creator Functions
These are the functions exposed by firebase-firestore-helper
.
helperCreator({ entity, useCache })
This should be used in the db
files.
entity
is the collection name.useCache
istrue
by default. It will create a local cache. Very dangerous if you are editingusers
collection from another side, with no using this library.
Example:
// db/users.js
const { helperCreator } = require('firebase-firestore-helper');
// This will expouse all the functions of this library (check functions documentation)
module.exports = {
...helperCreator({
entity: 'users',
// `useCache` is `true` BY DEFAULT!!!
useCache: true,
}),
};
actionsHelperCreator(db)
This should be used in the actions
files.
Receives only 1 parameter. The DB object created in the db
file.
Example:
// actions/users.js
const { actionsHelperCreator } = require('firebase-firestore-helper');
const db = require('../db/users');
const login = async (email, password) => {
const user = await db.getBy({ where: { email }, limit: 1 });
if (!user || user.password !== password) {
// ...
}
};
module.exports = {
...actionsHelperCreator(db),
login,
};
Firestore Functions (db
object)
add()
Receives an object, that must contain an id
. It saves it in the DB.
db.add({
id: 'asd123',
username: 'BrodaNoel',
});
getBy
Just a regular query.
// These will return AN ARRAY (empty, or with elements)
db.getBy({ where: { username: 'BrodaNoel' } });
db.getBy({ where: { username: 'BrodaNoel' }, limit: 2 });
db.getBy({ where: { age: 10, status: 1 } });
db.getBy({ where: [{ age: 10 }, ['status', 'in', [1, 2, 3]]] });
db.getBy({ where: [{ age: 10 }, ['status', '>=', 2]] });
// This will return `null` or and `object` (because of limit === 1)
db.getBy({ where: { username: 'BrodaNoel' }, limit: 1 });
// Add orders
db.getBy({ where: { age: 10 }, orderBy: 'createdAt' });
db.getBy({ where: { age: 10 }, orderBy: ['createdAt', 'desc'] });
db.getBy({
where: { age: 10 },
orderBy: [
['createdAt', 'desc'],
['age', 'asc'],
],
});
getById
Easy one.
// Returns null or the object
db.getById('ads123');
getAll
Easy one.
// Always an array, empty or with items
db.getAll();
deleteById
Easy one. Deletes a document. Say goodbye. Not able to get back.
We maaaay add removeById
in the future, which will add a status to "hide" the document, instead of removing it. """@TODO"""
db.deleteById('ads123');
editById
Receives and id
and the newData
object. It works as a merge. (firebase update()
)
db.editById('ads123', { age: 32 });
clearCache
Just clean the cache, in case of necessary.
db.clearCache();