Skip to content

markbrown4/gmail-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ReMail

An exploration of React.js and Flux building out some of Gmail's UI.

Facebook's open source tool for rendering Views that's been generating a heap of noise in the community lately. No prior knowledge of React is necessary.

Prerequisites

You'll need Node installed and an intermediate knowledge of JavaScript and a tolerance or love of CoffeeScript.

Install

You can see the finished product in the master branch.

git clone https://github.com/markbrown4/gmail-react
cd gmail-react
npm start

In two separate processes run json-server and live-server.

npm run json-server
npm run live-server

You should see a bunch of familiar Gmail elements on the screen. Have a click around the UI and explore the components, actions and stores for an overview of how the pieces in a React application fit together.

Back to the beginning

Check out the start branch and restart our processes

git reset --hard
git checkout origin/start
npm start
npm run live-server

Ok, let's bring this static page to life and responding to events, just like Pinocchio.

Our first component

Let's remove the entire <ul id="threads"> element from index.html and make a React component to build it dynamically.

# components/inbox/thread_list.cjsx
ThreadList = React.createClass
  render: ->
    <ul id="threads">
      <li className="unread">
        <a>
          <time>Aug 30</time>
          <span className="check"></span>
          <span className="people">
            <span className="name unread">Beatrix Kiddo</span>
          </span>
          <span className="subject">My fox force five joke</span>
          <span className="body">- Vincent, You still wanna hear it?</span>
        </a>
      </li>
    </ul>

React.render <ThreadList />, document.getElementById('content')

At it's simplest React.createClass takes an object with a render function and returns a single root element.

JSX

JSX compiles a mix of JavaScript and HTML into React calls, e.g.

// This JSX
<span className="subject">{text}</span>

// compiles to
React.createElement("span", {"className": "subject"}, text)

CJSX allows us to write CoffeeScript within curly braces {} rather than JavaScript.

Notice we're using className in the place of class, that's because React uses the DOM's property names rather than the HTML attribute names for building these nodes.

Multiple components

Components can render other components.

# components/inbox/thread_list.cjsx
ThreadList = React.createClass
  render: ->
    <ul id="threads">
      <ThreadListItem />
    </ul>

ThreadListItem = React.createClass
  render: ->
    <li className="unread">
      <a>
        <time>Aug 30</time>
        <span className="check"></span>
        <span className="people">
          <span className="name unread">Beatrix Kiddo</span>
        </span>
        <span className="subject">My fox force five joke</span>
        <span className="body">- Vincent, You still wanna hear it?</span>
      </a>
    </li>

React.render <ThreadList />, document.getElementById('content')

Making it dynamic

Data is stored in a components props and state objects, when either of these objects are modified through setState() or setProps() a re-render is triggered.

Most of your components should simply take some data from props and render it. State should contain data that a component's event handlers may change to trigger a UI update.

# components/inbox/thread_list.cjsx
ThreadList = React.createClass
  getInitialState: ->
    threads: []

  componentDidMount: ->
    reqwest '/api/threads/index.json', (threads)=>
      @setState threads: threads

  render: ->
    <ul id="threads">
      { for thread in @state.threads
        <ThreadItem thread={thread} />
      }
    </ul>

ThreadItem = React.createClass
  render: ->
    thread = @props.thread
    lastMessage = thread.lastMessage

    <li className="unread">
      <a>
        <time>{ lastMessage.createdAt }</time>
        <span className="check"></span>
        <span className="people">
          { for person in thread.participants
            <span className="name unread">
              { person.firstName } { person.lastName }
            </span>
          }
        </span>
        <span className="subject">{ lastMessage.subject }</span>
        <span className="body">- { lastMessage.snippet }</span>
      </a>
    </li>

React.render <ThreadList />, document.getElementById('content')

componentDidMount is one of Reacts Lifecycle methods that is run just after a component is first rendered in the DOM. Our ThreadList fetches data from the api, calls setState which re-renders it, this state is passed down to ThreadItem through an attribute(thread) which ThreadItem can access through props(props.thread).

Toggling state

Let's wire up our checkboxes to toggle a selected state on our threads.

React supports all of the usual events, we can listen for them in our components, toggle state and re-render. http://facebook.github.io/react/docs/events.html

# components/inbox/thread_list.cjsx
...
ThreadItem = React.createClass
  getInitialState: ->
    selected: false

  select: (event)->
    event.preventDefault()

    @setState selected: !@state.selected

  render: ->
    thread = @props.thread
    lastMessage = thread.lastMessage

    threadClasses = classNames
      unread: thread.unread
      selected: @state.selected

    <li className={ threadClasses }>
      <a>
        <time>{ lastMessage.createdAt }</time>
        <span className="check" onClick={@select}></span>
        <span className="people">
          { for person in thread.participants
            <span className="name unread">
              { person.firstName } { person.lastName }
            </span>
          }
        </span>
        <span className="subject">{ lastMessage.subject }</span>
        <span className="body">- { lastMessage.snippet }</span>
      </a>
    </li>

classNames is a handy little function by Jed Watson for adding conditional classes.

The Magic

If you use your browsers web inspector and watch what happens when you click the checkbox you'll notice that the only thing that changes in the DOM is a single className on the <li> nodes. This is interesting because the render method has been triggered causing the entire component to be re-rendered yet the document remains unchanged except for the specific parts that require updates.

It's this quality that makes React special and it comes with a number of benefits. Because large chunks of the DOM aren't changing when state changes it's faster, allows for css transitions and form elements aren't replaced while being interacted with.

A components render method should not have any side effects, it should take state and props and render the view consistently.

Communication between components

Let's move our attention to the <div id="sub-header"> element next, it's state needs to be kept in sync with the main content area - when selecting threads we want our SubHeader to show us tools we can use on that selection. We also want checking the box in the sub-header to change state on our threads. The ThreadList and ThreadDetail views also display different content in the SubHeader, there's a few options:

  1. We could add a parent component Inbox above our ThreadList and SubHeader to maintain this shared state that can pass data all the way down to SubHeader and Thread through props.
  2. SubHeader and ThreadList could both have a responsibility to fetch data upon changes and re-render

React encourages us to break down our interface into a hierarchy of small components that given specific props and state render consistently. Option 1 would mean that Inbox recieves the data from the store and passes it to SubHeader and ThreadList. Option 2 has both SubHeader and ThreadList fetching data from the store.

<Inbox>
  <SubHeader />
  <Nav />
  <ThreadList>
    <Thread />
  </ThreadList>
</Inbox>

For communication between two components that don't have a parent-child relationship, you can set up your own global event system. Subscribe to events in componentDidMount(), unsubscribe in componentWillUnmount(), and call setState() when you receive an event. http://facebook.github.io/react/tips/communicate-between-components.html

This seems like a better fit for our SubHeader component. It doesn't tie our data flow to our HTML structure and makes routing simpler, the SubHeader can stay put in a main layout and listen for data changes.

Flux

This is where things get a little more tricky, Flux is a pattern of single directional data flow.

Action > Dispatcher > Store > Component

  • Components initiate Actions
  • Actions dispatch an event with a unique name and payload
  • Actions are a good place to put communication with the server
  • Stores are our Models/Collections, they listen for dispatched events, update themselves and tell the world that they have changed
  • Controller-Views are components that listen for changes on the store, fetch any data they need and pass it down to child components

Our SubHeader and ThreadList components are examples of Controller-Views, they are regular components that have the special job of fetching data from our Store and wanting to know when it's data changes so it can re-render and flow it's data down through to child components.

A basic Flux implementation

A Component can initiate an Action

ThreadListItem = React.createClass
  select: (event)->
    event.preventDefault()

    InboxActions.toggleSelected(@props.id)

  render: ->
    <span className="check" onClick={@select}></span>

Actions dispatch an event with a name and payload

InboxActions =
  toggleSelected: (id)->
   Dispatcher.trigger 'toggle-selected', id

Stores are our Models/Collections, they listen for dispatched events, update themselves and emit that they have changed. Some care is taken to only expose public getters to enforce that all data changes happen through dispatched events.

threads = []

ThreadStore =
  getState: ->
    threads: threads

MicroEvent.mixin(ThreadStore)

toggleSelected = (id)->
  thread = _.find threads, (t)-> t.id == id
  thread.selected = !thread.selected

  ThreadStore.trigger 'change'

Dispatcher.register
  'toggle-selected': (id)-> toggleSelected(id)

Controller-Views are components that listen for changes on the store, fetch any data they need and pass it down to child components

ThreadList = React.createClass
  getInitialState: ->
    ThreadStore.getState()

  componentDidMount: ->
    ThreadStore.bind 'change', @onChange

  componentWillUnmount: ->
    ThreadStore.unbind 'change', @onChange

  onChange: ->
    @setState ThreadStore.getState()

  render: ->
    <ul id="threads">
      { for thread in @state.threads
        <ThreadListItem {...thread} />
      }
    </ul>

The Dispatcher we'll be using is just an event emitter, Stores register events they care about, Actions trigger those events.

# dispatcher.coffee
Dispatcher =
  register: (events)->
    for eventName, callback of events
      @bind eventName, callback

MicroEvent.mixin(Dispatcher)

The Facebook Dispatcher is quite a different implementation than this, it uses Promises, runs callbacks in order and supports control flow with waitFor e.g. Store A can wait for Store B's callbacks to run before it's own.

And that's it, a wonderfully naive implementation of Flux.

Routing

react-router seems to be the most popular solution for routing in React apps so we'll focus on that. It has named routes that can be nested, when a path is matched it renders a component into <RouteHandler />

{ Route, RouteHandler, Redirect } = ReactRouter

App = React.createClass
  render: ->
    <div id="wrapper">
      <Header />
      <SubHeader />
      <Nav />
      <div id="content">
        <RouteHandler />
      </div>
    </div>

routes = (
  <Route handler={App}>
    <Route name="threads" path="threads" handler={ThreadList} />
    <Route name="thread" path="threads/:id" handler={ThreadDetail} />
    <Redirect from="" to="threads" />
  </Route>
)

document.addEventListener "DOMContentLoaded", ->
  ReactRouter.run routes, (Handler)->
    React.render(<Handler/>, document.body)

It has a Link component for generating links to named routes

{ Link } = ReactRouter

Nav = React.createClass
  render: ->
    <Link to="threads">Inbox</Link>
    <Link to="thread" params={id: 1}>Number 1</Link>

It has a mixin ReactRouter.State for getting access to params in the url.

ThreadDetail = React.createClass
  mixins: [ReactRouter.State]

  componentDidMount: ->
    id = @getParams().id
    InboxActions.loadThread(id)

Frameworks

You can use these basic constructs(Stores, Actions, Components, Router) to build an application but you'll want some kind of framework to reduce boilerplate and to make it a pleasant experience so that you're writing code with your ideal API.

Facebook has been drip-feeding their implementation for a while now, starting with React to get people used to the view layer, then with Flux to structure data flow, soon they'll release Flow which will help us define data we need at a component level and combining them into a structure like GraphQL that they use for their API's.

Because there hasn't been an all encompassing framework people have tried many different ways of working with React and Flux and had to stumble around a little bit, every man and his dog has made an addon to solve some specific problem but it's made it difficult to get started.

I found @andrewray's posts helpful early on to understand React and Flux:

After playing with React/Flux for a month or so here's my stupid framework using some constructs that help me to build applications.

https://github.com/markbrown4/stupid_flux

Conclusions

React and Flux are no joke, they're tried & tested solutions to problems that you're bound to run into when building applications of a reasonable size with a team of more than one person. They're also simple ideas with a tiny API, so you can understand all of the pieces in a day of hacking.

React is a smart rendering layer and way to break up your app into re-usable components, it makes sense and does it's job well. Being able to make a change to a single component, and know that your change has no side-effects is a beautiful thing. Because most components are dumb, taking in data and outputting DOM they're much simpler to maintain than needing to keep a mental tab on DOM changes, data syncing issues, timing issues, scope, etc..

Flux has been the bigger change for me though, it's made me stop and think about what data and state belongs where and has made things more predictable and easier to reason about. It's made things easier to test by better separating concerns. With Flux there's a few layers of indirection which seem like excessive code when you start out, these extra layers, not having 'one right way' to do things and having to build a bunch of things myself has slowed me down. Whilst it's easier and quicker to get something done in a framework like Angular I prefer React for it's simplicity and being easier to reason about.

There's been good learnings so far though, so dig in.

About

A React.js tutorial - Gmail

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published