Skip to content

broskoski/emission

 
 

Repository files navigation

Reactions ⇒ Emissions

Emission is a collection of React Native Components which are consumed by Eigen. A writeup on how & why we made a lot of the repo decisions is on our blog here.

Inside here you will find:

  • An example app for building and running Emission's components with an Eigen-like API.
  • An NPM module that relies on React Native and manages the components.
  • A Podspec that wraps it all together for easy external usage in Eigen.

Meta

This is a core Artsy Mobile OSS project, along with Energy, Eidolon, Eigen and Emergence.

Don't know what Artsy is? Check out this overview and more, or read our objc.io on team culture.

Want to know more about Emission? Read the mobile blog posts, or Emission's / React Native's specifically.

Installation

  1. Install Node.js, and Yarn: $ brew install node yarn
  2. Install file watcher used by React Native:
    • $ brew install pcre
    • $ brew link pcre
    • $ brew install watchman --HEAD
  3. Install NPM modules: $ yarn install
  4. Install CocoaPods: $ gem install cocoapods
  5. Install Pods: $ cd Example && ARTSY_STAFF_MEMBER=true pod install

Why Yarn? See our JS glossary for Yarn,

Development

Using VS Code as an IDE

There is a comprehensive document covering our setup here.

Vanilla Commands

  1. Run $ yarn start from the top directory, which will:

    • Clean the example app’s Xcode build dir.
    • Start the example app’s React Native packager.
    • Start the React Storybooks environment.
  2. Now from Xcode you can run the app in Example/Emission.xcworkspace.

Debugging

You can use React Native debugger which is a standalone app to inspect views as well as the standard chrome debugging tools.

  1. Install RN debugger: $ brew update && brew cask install react-native-debugger.
  2. You can now use $ yarn run rndebugger instead of $ yarn start to configure the React Native packager to use RNdebugger.

screen shot 2017-01-23 at 1 00 01 pm

Updating Dependencies

  1. We vendor some data from other repositories that you will sometimes need to update. You can either update all of them with $ yarn run sync-externals or individually:
    • The GraphQL schema of metaphysics that Relay uses to generate queries from: $ yarn run sync-schema
    • The colors defined in Artsy’s style-guide: $ yarn run sync-colors

Using Relay

Some helpful Relay documentation is listed below, but the general workflow is:

  1. Build a fragment for each child component that specifies only the attributes used by the component itself (no extraneous information).
  2. Ensure the parent component calls getFragment for each child component that uses Relay.
  3. Make sure to supply every child component’s props upon instantiation in the parent.

Another gotcha is around fragments that use variables. For this it is important to understand that whenever a Relay backed hierarchy is used, 2 trees will be rendered.

  1. A tree of all Relay query fragments is rendered into a single query.
  2. Once the query has been performed, the view component tree is rendered.

What this means in practice, is that you will need to pass variables down both those trees.

  1. Once from the Relay route down through all getFragment(name, variables) calls.
  2. Second down through the props of all components.

See:


Try quitting and restarting your node instance if you change something Relay-related and you run into this error:

Unhandled JS Exception: RelayQL: Unexpected invocation at runtime. Either the Babel transform was not set up, or it
failed to identify this call site. Make sure it is being used verbatim as `Relay.QL`

Deployment

Currently deploying the emission example app to Testflight is done manually.

On the other hand, our JS is deployed from master to our dev build on Testflight via AppHub.

Resources

About

React Native Components

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 66.1%
  • Objective-C 32.8%
  • Other 1.1%