Socket
Socket
Sign inDemoInstall

tht-firebase-api-wrappers

Package Overview
Dependencies
7
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tht-firebase-api-wrappers

Common Firebase API methods used across THT projects


Version published
Weekly downloads
18
increased by500%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

tht-firebase-api-wrappers

Common buttons used throughout the THT projects

Getting Started

Install the library with either Yarn:

yarn add tht-firebase-api-wrappers

or npm:

npm install --save tht-firebase-api-wrappers

Usage

Please note that each method will return an object of:

PropertyTypeDescription
pathstringCollection within Firebase to create document
idstringThe id of the new/updated document if single or undefined if multiple documents were affected
data[obj]List of the document(s) being operated on
errorstring, undefinedundefined if no error has occurred

Exposed Methods

createDocument

PropertyRequiredTypeDescription
pathtruestringCollection within Firebase to create document
documentIdtruestringThe id that will be assigned to newly created document
datatrueobjThe fields to store in the document being created
Example
import {createDocument} from 'tht-firebase-api-wrappers';

function createTask(path, documentId, data) {
    createDocument(path, documentId, data)
      .then(insertionAttempt => {
        console.log(`Successfully inserted at path (${path}`);
      })
      .catch(error => {
        console.log(`Error inserting document at path (${path}) with error (${error})`);
      })
};

getAllDocumentsWithPath

PropertyRequiredTypeDescription
pathtruestringCollection within Firebase to create document
Example
import {getAllDocumentsWithPath} from 'tht-firebase-api-wrappers';

function getTasks(path) {
    getAllDocumentsWithPath(path)
      .then(retrievalAttempt => {
        console.log(": ", retrievalAttempt);
      })
      .catch(error => {
        console.log(`Error retrieving documents at path (${path}) with error (${error})`);
      });
};

getDocumentsWithCriteria

PropertyRequiredTypeDescription
pathtruestringCollection within Firebase to create document
fieldtruestringThe field to compare against
pathtrueWhereFilterOpFilter for the operation
criteriatrueanyThe values to check for
Example
import {getDocumentsWithCriteria} from 'tht-firebase-api-wrappers';

function getTasksFromToday() {
    getDocumentsWithCriteria('path/to/tasks', 'createdDate', '>=', Date.now())
      .then(retrievalAttempt => {
        console.log(": ", retrievalAttempt);
      })
      .catch(error => {
        console.log(`Error retrieving documents at path (${path}) with error (${error})`);
      });
};

FAQs

Last updated on 09 Jul 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc