A framework for building native apps with React. http://facebook.github.io/react-native/
Go to file
Martin Kralik 4aaa35a22e use RCTEventDispatcher for touch events (6/7)
Summary:
This diff finally makes touch events to be emitted to js from the same object as scroll events. Thanks to changes in previous diffs this means the js will now process them in the right order.

This diff on its own would cause us to send events to js on every frame while dragging a finger on the screen. This is something we tried to avoid with event coalescing in the past, and gets fixed in the following diff D2884595.

public
___
**This diff is part of a larger stack. This is a high level overview about what’s going on here.**

This stack of diffs fixes an issue where scroll events and touch events wouldn’t be processed in the correct order on js side.
Current state of world:
* touch events are send to js immediately when they happen (this makes js respond to touches as soon as possible)
* scroll events are buffered, coalesced and send at the beginning of each js frame (coalescing helps in a case where js is busy processing for several native frames and would get all scroll event for that period afterwards)

How did I change this?
1. I’ve made touch events go through the same class every other event (scroll events included) go, RCTEventDispatcher. This gives us a single place to handle all events.
2. I’ve changed RCTEventDispatcher to flush all buffered events every time it gets a touch event before dispatching the touch. This fixes the original ordering issue.
3. I’ve made “touchMove” behave the same way as scroll events do - they are buffered and coalesced. Since “touchMove” events are fired as often as scroll events (while you drag your finger around), doing only 2. would bring back the issue buffering was fixing.
All of this together effectively still keeps the order of events right, avoids overloading js in the important case we care about. The only downside is an increased latency for “touchMove” events, since they are to longer send to js immediately.

(Even better solution would be changing the native->js event passing system to be pull based instead of push based. That way js would always request touches that has happened since the last time it has asked, which would make it get them as soon as it’s possible to process them and native could do coalescing at that point.
However this change has a much bigger scope, so I’m going with this stack of diffs for now.)

Reviewed By: nicklockwood

Differential Revision: D2884593

fb-gh-sync-id: 749a4dc6256f93fde0d8733687394b080ddd4484
2016-02-03 05:24:08 -08:00
Examples flush events queue when an event cannot be coalesced (4/7) 2016-02-03 05:23:55 -08:00
IntegrationTests Decouple Module System from Native Calls 2015-12-08 16:03:37 -08:00
JSCLegacyProfiler Add suport for JSC profiling on iOS 9 2015-11-16 03:38:11 -08:00
Libraries Replace `ScrollView.scrollTo()` API with something less ambiguous. 2016-02-03 04:00:40 -08:00
React use RCTEventDispatcher for touch events (6/7) 2016-02-03 05:24:08 -08:00
ReactAndroid Fix bug related to removeClippedSubviews and view collapsing. 2016-02-03 03:31:29 -08:00
bots Update bots/README.md 2016-01-12 15:11:24 +00:00
docs Remove AppState from Known Issues page 2016-02-02 10:20:36 -08:00
gradle/wrapper Upgrade gradle to 2.9 2015-12-14 06:37:34 -08:00
jestSupport Enable ES7 async functions in jest 2016-01-21 11:19:32 -08:00
local-cli Hot Loading Indicators 2016-02-01 12:42:33 -08:00
packager Move process.exit outside of DependencyResolver 2016-02-02 18:10:47 -08:00
react-native-cli Revert 5da0e135b6 2016-01-09 15:30:14 +00:00
scripts Update release.sh 2016-01-22 18:53:47 +00:00
website Update showcase.js 2016-02-02 17:36:09 -05:00
.buckconfig limiting BUCK's memory for CI 2016-02-01 10:49:33 -08:00
.buckjavaargs limiting BUCK's memory for CI 2016-02-01 10:49:33 -08:00
.editorconfig
.eslintignore
.eslintrc Add global flow types to eslint globals 2016-01-27 15:55:34 -08:00
.flowconfig Deploy v0.21.0 2016-02-01 17:13:35 -08:00
.gitattributes Added a .gitattributes file, ensuring that Bash script source files (gradlew and 2015-10-13 23:10:39 -04:00
.gitignore Add buck build folders to gitignore 2016-01-30 16:02:32 -05:00
.travis.yml Move tests to iOS9.2 2016-01-06 17:12:02 +00:00
CONTRIBUTING.md Add mention of the license comment in CONTRIBUTING.md 2015-12-24 10:27:29 +01:00
LICENSE
LICENSE-CustomComponents
LICENSE-docs
LICENSE-examples
PATENTS
README.md Make link more specific 2016-01-20 18:07:12 +01:00
React.podspec Set the versions in package.json and React.podspec to 0.0.0-master 2016-01-13 06:15:01 -08:00
Releases-publish.md Update Releases-publish.md 2016-01-18 20:41:11 +00:00
Releases.md Update Releases.md 2016-01-29 17:22:36 +01:00
breaking-changes.md Update breaking-changes.md 2016-01-16 21:56:57 +00:00
build.gradle Upgrade gradle to 2.9 2015-12-14 06:37:34 -08:00
circle.yml limiting BUCK's memory for CI 2016-02-01 10:49:33 -08:00
cli.js Breaking change: Move `bundle` to `private-cli` 2015-10-13 11:48:30 -07:00
gradlew Upgrade gradle to 2.9 2015-12-14 06:37:34 -08:00
gradlew.bat
npm-shrinkwrap.json Set the versions in package.json and React.podspec to 0.0.0-master 2016-01-13 06:15:01 -08:00
package.json Hotfix jest startup time 2016-01-22 11:35:35 -08:00
runXcodeTests.sh
settings.gradle

README.md

React Native Build Status Circle CI npm version

React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React. The focus of React Native is on developer efficiency across all the platforms you care about - learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.

Supported operating systems are >= Android 4.1 (API 16) and >= iOS 7.0.

Introduction

See the official React Native website for an introduction to React Native.

Getting Started

Getting Help

Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.

Documentation

The websites documentation is divided into multiple sections.

Another great way to learn more about the components and APIs included with React Native is to read their source. Look under the Libraries directory for components like ScrollView and Navigator, for example. The UIExplorer example is also here to demonstrate some of the ways to use these components. From the source you can get an accurate understanding of each components behavior and API.

The React Native documentation only discusses the components, APIs and topics specific to React Native (React on iOS and Android). For further documentation on the React API that is shared between React Native and React DOM, refer to the React documentation.

Examples

  • git clone https://github.com/facebook/react-native.git
  • cd react-native && npm install

Running the examples on iOS

Now open any example (the .xcodeproj file in each of the Examples subdirectories) and hit Run in Xcode.

Running the examples on Android

Note that you'll need the Android NDK installed, see prerequisites.

./gradlew :Examples:Movies:android:app:installDebug
# Start the packager in a separate shell (make sure you ran npm install):
./packager/packager.sh
# Open the Movies app in your emulator

Extending React Native

  • Looking for a component? JS.coach
  • Fellow developers write and publish React Native modules to npm and open source them on GitHub.
  • Making modules helps grow the React Native ecosystem and community. We recommend writing modules for your use cases and sharing them on npm.
  • Read the guides on Native Modules (iOS, Android) and Native UI Components (iOS, Android) if you are interested in extending native functionality.

Upgrading

React Native is under active development. See the guide on upgrading React Native to keep your project up-to-date.

Opening Issues

If you encounter a bug with React Native we would like to hear about it. Search the existing issues and try to make sure your problem doesnt already exist before opening a new issue. Its helpful if you include the version of React Native and OS youre using. Please include a stack trace and reduced repro case when appropriate, too.

The GitHub issues are intended for bug reports and feature requests. For help and questions with using React Native please make use of the resources listed in the Getting Help section. Product Pains in particular is a good way to signal your interest in a feature or issue. There are limited resources available for handling issues and by keeping the list of open issues lean we can respond in a timely manner.

Contributing

For more information about contributing PRs and issues, see our Contribution Guidelines.

Good First Task is a great starting point for PRs.

We encourage the community to ask and answer questions on Stack Overflow with the react-native tag. It's a great way to help out and be involved!

License

React is BSD licensed. We also provide an additional patent grant.

React documentation is Creative Commons licensed.

Examples provided in this repository and in the documentation are separately licensed, as are some of the custom components.