Go to file
Sebastian Markbåge 76864f7ff7
Add SuspenseList Component (#15902)
* Add SuspenseList component type

* Push SuspenseContext for SuspenseList

* Force Suspense boundaries into their fallback state

In the "together" mode, we do a second render pass that forces the
fallbacks to stay in place, if not all can unsuspend at once.

* Add test

* Transfer thennables to the SuspenseList

This way, we end up retrying the SuspenseList in case the nested boundary
that just suspended doesn't actually get mounted with this set of
thennables. This happens when the second pass renders the fallback
directly without first attempting to render the content.

* Add warning for unsupported displayOrder

* Add tests for nested sibling boundaries and nested lists

* Fix nested SuspenseList forwarding thennables

* Rename displayOrder to revealOrder

Display order has some "display list" connotations making it sound like
a z-index thing.

Reveal indicates that this isn't really about when something gets rendered
or is ready to be rendered. It's about when content that is already there
gets to be revealed.

* Add test for avoided boundaries

* Make SuspenseList a noop in legacy mode

* Use an explicit suspense list state object

This will be used for more things in the directional case.
2019-06-19 19:34:28 -07:00
.circleci Fix fuzz test environment variable 2019-06-13 15:59:35 -07:00
.github Reword issue template 2018-01-03 15:58:07 +00:00
fixtures using the wrong renderer's act() should warn (#15756) 2019-05-29 22:56:04 +01:00
packages Add SuspenseList Component (#15902) 2019-06-19 19:34:28 -07:00
scripts [Flare] Add RN build step for ReactTypes (#15926) 2019-06-19 13:27:10 +01:00
.babelrc Remove ES3-specific transforms (#12716) 2018-04-30 14:30:37 +01:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Use Yarn Workspaces (#11252) 2017-10-19 00:22:21 +01:00
.eslintrc.js [React Native] Inline calls to FabricUIManager in shared code (#15490) 2019-04-29 14:31:16 -07:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Parallelizes the build script across multiple processes (#15716) 2019-05-29 14:34:50 -07:00
.mailmap Update .mailmap 2017-09-06 16:58:21 -07:00
.nvmrc Add new docs website (#10896) 2017-09-28 10:18:04 -07:00
.prettierrc.js Add `use strict` to .prettierrc.js (#13787) 2018-10-20 17:42:11 -04:00
.watchmanconfig Added a .watchmanconfig file (#11581) 2017-11-16 18:39:03 -08:00
AUTHORS Update authors for v16 (#10861) 2017-09-27 10:24:16 +01:00
CHANGELOG.md Changelog 2019-03-27 23:58:06 -07:00
CODE_OF_CONDUCT.md Updated url to Code of Conduct page (#13126) 2018-06-29 13:27:24 +01:00
CONTRIBUTING.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 2017-09-29 18:43:22 -07:00
LICENSE Drop the year from Facebook copyright headers and the LICENSE file. (#13593) 2018-09-07 15:11:23 -07:00
README.md Remove coverage badge from README (#15216) 2019-03-26 12:37:05 -07:00
appveyor.yml add nodejs 10 to windows test (#13241) 2018-08-02 01:09:37 +01:00
dangerfile.js Update name of CI job in sizebot (#15767) 2019-05-29 14:52:11 -07:00
netlify.toml add netlify toml file (#12350) 2018-05-20 21:03:51 +01:00
package.json chore: use jest-serializer-raw for react-fresh snapshots (#15806) 2019-06-03 12:46:33 -07:00
yarn.lock chore: use jest-serializer-raw for react-fresh snapshots (#15806) 2019-06-03 12:46:33 -07:00

README.md

React · GitHub license npm version CircleCI Status PRs Welcome

React is a JavaScript library for building user interfaces.

  • Declarative: React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug.
  • Component-Based: Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.
  • Learn Once, Write Anywhere: We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps using React Native.

Learn how to use React in your own project.

Installation

React has been designed for gradual adoption from the start, and you can use as little or as much React as you need:

You can use React as a <script> tag from a CDN, or as a react package on npm.

Documentation

You can find the React documentation on the website.

Check out the Getting Started page for a quick overview.

The documentation is divided into several sections:

You can improve it by sending pull requests to this repository.

Examples

We have several examples on the website. Here is the first one to get you started:

function HelloMessage({ name }) {
  return <div>Hello {name}</div>;
}

ReactDOM.render(
  <HelloMessage name="Taylor" />,
  document.getElementById('container')
);

This example will render "Hello Taylor" into a container on the page.

You'll notice that we used an HTML-like syntax; we call it JSX. JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. If you're using React as a <script> tag, read this section on integrating JSX; otherwise, the recommended JavaScript toolchains handle it automatically.

Contributing

The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. Development of React happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving React.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to React.

Good First Issues

To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.

License

React is MIT licensed.