Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 5293079

Browse files
authored
Merge pull request #23 from reactjs/gaearon-patch-2
Add notes for July, 7
2 parents 12ba5dd + 0d0b665 commit 5293079

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

2016-07/july-07.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
## July 07 ([discuss](https://github.com/reactjs/core-notes/pull/23))
2+
3+
### Attendees
4+
5+
* [Ben](https://twitter.com/soprano) (React)
6+
* [Dan](https://twitter.com/dan_abramov) (React)
7+
* [Keyan](https://twitter.com/keyanzhang) (React, intern)
8+
* [Paul](https://twitter.com/zpao) (React)
9+
* [Sebastian](https://twitter.com/sebmarkbage) (React)
10+
* [Tom](https://twitter.com/tomocchino) (React)
11+
12+
### Fragments
13+
14+
* We don’t currently allow returning multiple elements from `render()` method.
15+
* This has been a [long requested feature](https://github.com/facebook/react/issues/2127) in the community.
16+
* We generally agree that it should be implemented but we found it to be hard with our existing architecture.
17+
18+
#### Existing Solutions
19+
20+
* There exists a [fork](https://github.com/facebook/react/issues/2127#issuecomment-216401555) that implements fragments but we don’t want to take this implementation.
21+
* It introduces them only for React DOM which would make React features inconsistent across renderers.
22+
* It also introduces some complexity we would like to avoid because we might start breaking other things with it.
23+
24+
#### Our Plans
25+
26+
* [Fiber](https://github.com/reactjs/core-notes/blob/master/2016-06/june-23.md#update-on-fiber) supports fragments but it’s far from done.
27+
* We will include work on fragments in our plan for the second half of 2016.
28+
* Since we want this feature anyway, we can implement it in existing reconciler independently of Fiber.
29+
30+
### Build Size
31+
32+
* We think that React provides good value for its build size (~45kB min+gzip).
33+
* However we understand everybody has different constraints, especially with small apps.
34+
* We intend to be [more mindful](https://github.com/facebook/react/issues/7205) of the build size to avoid accidental regressions.
35+
36+
#### Rollup
37+
38+
* [Keyan](https://twitter.com/keyanzhang) is investigating using [Rollup](http://rollupjs.org/) for our UMD builds. ([#7178](https://github.com/facebook/react/pull/7178))
39+
* After [#7178](https://github.com/facebook/react/pull/7178) is merged, the minified post-gzip size will reduce by 14%. (46kB → 39kB)
40+
* For now, we will use [a hack](https://github.com/facebook/react/pull/7178#issuecomment-230379738) to transpile CommonJS to ES Modules so Rollup understands them.
41+
* Longer term, we’d like to use ES Modules in the source but Facebook internal bundlers don’t understand them yet.
42+
43+
#### Event System
44+
45+
* [Dan](https://twitter.com/dan_abramov) asked why the event system is so large.
46+
* It accounts for a noticeable chunk of React build size.
47+
* Looking at other “React-like” libraries, no one has an event system like ours. Why?
48+
49+
##### Why We Need It
50+
51+
* The intention was to normalize events with weird behavior like `mouseenter` or `focus` across browsers.
52+
* This lets component authors not worry about inconsistencies with bubbling and input events, making ecosystem better.
53+
* The React Native gesture handling system is also built around it.
54+
* The browsers have improved, so we will keep re-evaluating it once in a while, but for now we find it useful.
55+
56+
##### What We Can Improve
57+
58+
* It is overabstracted, and we can simplify code by baking support for some [“plugins”](https://github.com/facebook/react/tree/1a0e3a32150468223d6f9fd0125db0f8503b76d6/src/renderers/dom/client/eventPlugins) right into it.
59+
* There is some code duplication we can reduce in [the event whitelist](https://github.com/facebook/react/blob/1a0e3a32150468223d6f9fd0125db0f8503b76d6/src/renderers/dom/client/eventPlugins/SimpleEventPlugin.js).
60+
* Some weird patterns like [`keyOf()`](https://github.com/facebook/react/blob/1a0e3a32150468223d6f9fd0125db0f8503b76d6/src/renderers/dom/client/eventPlugins/SimpleEventPlugin.js#L40-L41) exist to be compatible with [GCC](https://www.google.co.uk/search?q=google+closure+compiler&gws_rd=cr&ei=O7x-V_66AonOgAbov6GACA). Perhaps we could find another way to fix this?
61+
62+
------------
63+
64+
Please feel free to discuss these notes in the [corresponding pull request](https://github.com/reactjs/core-notes/pull/23).

0 commit comments

Comments
 (0)