Coder Social home page Coder Social logo

Cool idea, any docs? about redux-firebase HOT 8 OPEN

luandro avatar luandro commented on June 22, 2024
Cool idea, any docs?

from redux-firebase.

Comments (8)

nelix avatar nelix commented on June 22, 2024

I'm also curious :)

from redux-firebase.

colbyr avatar colbyr commented on June 22, 2024

I don't have a ton of spare time to work on this right now, but I'll try to give you a broad overview. It's pretty proof-of-concept, but I've been using for a side project (https://limelist.xyz) over the last couple months and it mostly works.

Below is the source of one of my containers in that app. The main thing to notice is the query function which is a bit like a redux select function. Like select, query is used to build a higher order component. It returns a "query" object that the h.o.c. dispatches to the middleware which manages firebase subscriptions and syncs the data it receives from firebase into the store.

The query object kind of looks like the data in my firebase instance. The keys are keys in firebase. The values are functions I've been calling "resolvers" which describe how to process the data found at that keypath. Some resolvers are really simple. For example r.value just returns the value found at it's keypath. Others are more complex and their results generate more subscriptions. r.index(['lists']) assumes it will find an "index" (I'm referring to an "index" as described in the firebase docs) and will resolve each key in the index to a path prefixed with whatever was passed into the resolver call (in this case it will subscribe to a bunch of "lists/{listId}" paths).

Once the data described by the query is loaded it's passed as props to the component wrapped by the h.o.c. In the example below, the result of query is passed to the select which does some rearranging and then passes the final data on to SelectListContainer.

import fetch from '../lib/fetch'
import * as ListActionCreators from '../actionCreators/ListActionCreators'
import React, { PropTypes } from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import { resolvers as r } from 'redux-firebase'
import SelectList from '../components/SelectList'

function query({auth}) {
  return {
    users: {
      [auth.uid]: {
        lists: r.index(['lists']),
      },
    },
    listCollaborators: r.byIndex(['users', auth.uid, 'lists']),
  }
}

function select({auth, firebase}, {users}) {
  return {
    lists: users
      .getIn([auth.uid, 'lists'])
      .sortBy(list => list.get('name').toLowerCase()),
    uid: auth.uid,
  }
}

const SelectListContainer = React.createClass({
  propTypes: {
    dispatch: PropTypes.func.isRequired,
    listCollaborators: PropTypes.object.isRequired,
    lists: PropTypes.object.isRequired,
    uid: PropTypes.string.isRequired,
  },

  render() {
    const {dispatch, listCollaborators, lists, uid} = this.props
    return (
      <SelectList
        {...bindActionCreators(ListActionCreators, dispatch)}
        listCollaborators={listCollaborators}
        lists={lists}
        uid={uid}
      />
    )
  },
})

export default fetch(query)(connect(select)(SelectListContainer))

In my dreams, I would want too build this against some sort of firebase schema definition, but that's probably a whole other problem!

I'm interested to hear your thoughts.

from redux-firebase.

AndersDJohnson avatar AndersDJohnson commented on June 22, 2024

+1 @colbyr Any updated thoughts since your last comment? I really want Firebase support with Redux.

from redux-firebase.

natac13 avatar natac13 commented on June 22, 2024

I am looking for this as well. I started building a middleware to handle all of my firebase actions. It seems this is taking a very similar approach! Glad to see I am on the right track

from redux-firebase.

AndersDJohnson avatar AndersDJohnson commented on June 22, 2024

@luandro, @nelix, @natac13, others: Feel free to try and/or contribute to my brand new work-in-progress project firedux, which has the same goal of integrating Firebase + Redux for ReactJS.

from redux-firebase.

nyura123 avatar nyura123 commented on June 22, 2024

I've been using a similar solution (declarative subscriptions, firebase path resolving, nested subscriptions) for my firebase subscriptions - here it is in case anyone finds it useful.
It's not a redux middleware but can easily be turned into one as shown in the README.
https://github.com/nyura123/firebase-nest

from redux-firebase.

simenbrekken avatar simenbrekken commented on June 22, 2024

I've just released something similar, while it doesn't actually use Redux it has basically the same API surface.

https://github.com/unfold/react-firebase

from redux-firebase.

prescottprue avatar prescottprue commented on June 22, 2024

Trying to get all of the contributors of these libraries in discussions about which things can be combined in this redux-firebase gitter. Everyone is welcome!

Having a similar discussion with the author of redux-react-firebase, he noted that multiple libraries with different names could add to JS fatigue, and I totally agree.

from redux-firebase.

Related Issues (2)

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.