firestore-extended
TypeScript icon, indicating that this package has built-in type declarations

0.0.23 • Public • Published

Firestore Extended (web and node.js)

Simplify the work with complex and deep objects while retaining all the great benefits from Firebase Firestore.

npm install firebase rxjs firestore-extended --save

Firestore splits its data up into collections and documents which is what allows it to be scalable and fast.

The issues that this can cause is that the best way to store your data might not be the best way to work with and display that data.

It can also be more difficult to figure out how to store your data in a way that is not only cheap in terms of reads but also cheap in terms of performance/speed.

Firestore Extended is meant to help developers solve these issues.

Documentation and Examples

Documentation
Github
npm
Demo

Documentation

Introduction

Actions

Read
Write
Update
Delete
Edit Id

Demo

You can find a simple demo in projects/demo.

It can be run locally if you provide your own firebaseConfig in the environment file or you can find a running demo here:
Demo

Steps to run locally:

  1. Clone this repo
  2. Setup a firebase project and place the config 'firebaseConfig' here: projects/demo/src/environments/firebase.secure.ts and export it.
  3. Run the following commands:
npm install
npm run start

Using the library

This will add and read the Address in a collection inside each Restaurant Document.

example.fs.service.ts

export interface Address {
  zipCode: string;
  city: string;
  line1: string;
}

export interface Restaurant {
  address: Address
}

const restaurantSubCollectionWriters: SubCollectionWriter[] = [
  // add address sub Collection inside each Example Document
  {name: 'address'},
];

const restaurantSubCollectionQueries: SubCollectionQuery[] = [
  // listen for address sub Collection inside each Example Document
  {name: 'address'},
];

export class RestaurantFsService { // <-- Service for listening/writing to Firestore

  app: FirebaseApp;
  firestoreExt: FirestoreExt;  //
  restaurantCollectionRef: CollectionReference<Restaurant>;
  firestore: Firestore;

  constructor() {
    this.app = initializeApp(environment.firebase); // only call this once per application
    this.firestore = getFirestore(this.app);
    this.firestoreExt = new FirestoreExt(this.app);  //  initialize FirestoreExt with firebase app
    this.collectionRef = collection<Restaurant>(this.firestore, 'restaurants');
  }

  listenForRestaurants$(): Observable<FireItem<Restaurant>[]> {
    return this.firestoreExt.listenForCollection$<Restaurant>(this.collectionRef);
  }
}

Angular

Please read Angular README for more information regarding use with Angular.

See the Documentation for much more information.

License

MIT © Daniel Lofgren

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i firestore-extended

    Weekly Downloads

    0

    Version

    0.0.23

    License

    MIT

    Unpacked Size

    737 kB

    Total Files

    38

    Last publish

    Collaborators

    • tylder