New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cofire

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cofire

Firebase React bindings in a more declarative way. Just connect your component and you´re ready to go.

latest
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

Cofire

Firebase bindings to React. Just cofire a component and it's all set.

Using NPM:

npm install cofire 

Using Yarn:

yarn add cofire

Using...

Wrap your components with cofire/Provider, after this all your nested components will have access to Firebase.

index.js

import React, { Component } from 'react'
import { Provider } from 'cofire'

// firebase settings
const config = {
  apiKey: "<API_KEY>",
  authDomain: "<AUTH_DOMAIN>",
  databaseURL: "<DATABASE_URL>",
  projectId: "<PROJECT_ID>",
  storageBucket: "<STORAGE_BUCKET>",
  messagingSenderId: "<MESSAGING_SENDER_ID>"
}

ReactDOM.render(
  <Provider firebase={config}>
    <App />
  </Provider>, document.getElementById('root'));

On the component that you want to grab data from Firebase, connect your component with cofire HOC.

MyComponent.js

import React from 'react'
import { cofire } from 'cofire'
import { Link } from 'react-router-dom'

const MyComponent = ({ auth, data, saveDoc }) => {
  return (
    <div>
      <ul>
        { data && !data.isLoading && data.data.map( item => <li key={item.id}>{item.id} . {item.name}</li>) }
      </ul>
      <button onClick={async() => await saveDoc({ name: 'Tulio '+new Date().getTime(), email: 'tuliofaria@gmail.com' })}>Save new document to Firestore</button>
    </div>
  )
}



export default cofire( props => {
  let email = 'tuliofaria@gmail.com'
  if(props.match.params.email){
    email = props.match.params.email
  }
  return {
    data: {
      collection: 'users',
      where: [
        {
          alias: 'email',
          field: 'email', 
          op: '==', 
          value: email
        }
      ]
    }
  }
}, ({ firestore }) => {
  return {
    saveDoc: async doc => await firestore.collection('users').add(doc)
  }
})(MyComponent)

What I think is missing?

  • Add support to change values of fields used in queries (Scenario: search for a user. We need to set input value in where clause)
  • Support more Firebase services
  • Add tests
  • Test in React-Native

FAQs

Package last updated on 04 Jan 2018

Did you know?

Socket

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