GithubHelp home page GithubHelp logo

notsidney / gatsby-source-firestorer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from deanc/gatsby-source-firestorer

0.0 0.0 0.0 288 KB

Gatsby source plugin for building websites using the Firestore as a data source.

JavaScript 100.00%

gatsby-source-firestorer's Introduction

@deanc/gatsby-source-firestorer npm version

Gatsby source plugin for building websites using the Firestore as a data source. Forked from a couple of other versions and updated to use latest Gatsby params.

Authentication

You have two ways to authenticate to Firebase.

  1. (Reccommended) Supply a valid firebaseConfig object with read-only credentials. Instructions here.
  2. Get a private key for your Firebase project from the Firebase console.

Usage

Method 1: Standard web SDK (Reccommended)

  1. Supply a valid firebaseConfig object
  2. $ yarn add @deanc/gatsby-source-firestore
  3. Configure gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: '@deanc/gatsby-source-firestore',
      options: {
        config: {
          apiKey: 'api-key',
          authDomain: 'project-id.firebaseapp.com',
          databaseURL: 'https://project-id.firebaseio.com',
          storageBucket: 'yourapp.appspot.com',
          projectId: 'project-id',
          messagingSenderId: 'sender-id',
          appId: 'app-id',
          measurementId: 'measurement-id',
        },
        types: [
          {
            type: 'Book',
            collection: 'books',
            map: doc => ({
              title: doc.title,
              isbn: doc.isbn,
              author___NODE: doc.author.id,
            }),
            conditions: [['status', '==', 'public']], // optional
          },
          {
            type: 'Author',
            collection: 'authors',
            map: doc => ({
              name: doc.name,
              country: doc.country,
              books___NODE: doc.books.map(book => book.id),
            }),
          },
        ],
      },
    },
  ],
};

Method 2: Firebase Admin SDK

  1. Get a private key for your Firebase project.
  2. Put that private key somewhere in your Gatsby project.
  3. $ yarn add @deanc/gatsby-source-firestore
  4. Configure gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: '@deanc/gatsby-source-firestore',
      options: {
        credential: require('./firebase.credentials.json'),
        types: [
          {
            type: 'Book',
            collection: 'books',
            map: doc => ({
              title: doc.title,
              isbn: doc.isbn,
              author___NODE: doc.author.id,
            }),
            conditions: [['status', '==', 'public']], // optional
          },
          {
            type: 'Author',
            collection: 'authors',
            map: doc => ({
              name: doc.name,
              country: doc.country,
              books___NODE: doc.books.map(book => book.id),
            }),
          },
        ],
      },
    },
  ],
};

Querying

To query

{
  allBooks {
    edges {
      node {
        title
        isbn
        author {
          name
        }
      }
    }
  }
}

Configurations

Key Description
credential Require your private key here
config Put a valid firebaseConfig object here
types Array of types, which require some of the following 3 keys
type (required) The type of the collection, which will be used in GraphQL queries. Eg, when type = Book, the GraphQL types are named book and allBook
collection (required) The name of the collections in Firestore. Nested collections are not tested.
map (required) A function to map your data in Firestore to Gatsby nodes, utilize the undocumented ___NODE to link between nodes
conditions (optional) An array of where conditions. Corresponds directly to: https://firebase.google.com/docs/firestore/query-data/queries#simple_queries

Disclaimer

No maintenance/warranty are provided. Feel free to send in pull requests.

Acknowledgement

gatsby-source-firestorer's People

Contributors

alvinthen avatar baymose avatar cbejensen avatar deanc avatar dependabot[bot] avatar franatique avatar itwasmattgregg avatar pierre-b avatar tomphill avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.