Skip to content

Commit f948085

Browse files
committedJul 11, 2018
Update react documentation links
1 parent 66d759b commit f948085

8 files changed

+9
-9
lines changed
 

‎anti-patterns/02.findDOMNode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Use callback refs over findDOMNode()
33

44
Note:
55
React also supports using a string (instead of a callback) as a ref prop on any component, although this approach is mostly legacy at this point.
6-
- [More about refs](https://facebook.github.io/react/docs/more-about-refs.html)
6+
- [More about refs](https://reactjs.org/docs/refs-and-the-dom.html)
77
- [Why ref-string is legacy?](http://stackoverflow.com/questions/37468913/why-ref-string-is-legacy)
88

99
##### findDOMNode(this)
@@ -117,4 +117,4 @@ class MyComponent extends Component {
117117

118118
### Related links:
119119
- [ESLint Rule proposal: warn against using findDOMNode()](https://github.com/yannickcr/eslint-plugin-react/issues/678#issue-165177220)
120-
- [Refs and the DOM](https://facebook.github.io/react/docs/refs-and-the-dom.html)
120+
- [Refs and the DOM](https://reactjs.org/docs/refs-and-the-dom.html)

‎anti-patterns/03.mixins.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ var FirstView = bindToCarData(React.createClass({
8080

8181
### Related links:
8282
- [Mixins are dead - Long live higher ordercomponents](https://medium.com/@dan_abramov/mixins-are-dead-long-live-higher-order-components-94a0d2f9e750)
83-
- [Mixins are considered harmful](https://facebook.github.io/react/blog/2016/07/13/mixins-considered-harmful.html)
83+
- [Mixins are considered harmful](https://reactjs.org/blog/2016/07/13/mixins-considered-harmful.html)
8484
- [Stackoverflow: Using mixins vs components for code reuse](http://stackoverflow.com/questions/21854938/using-mixins-vs-components-for-code-reuse-in-facebook-react)
8585
- [Stackoverflow: Composition instead of mixins in React](http://stackoverflow.com/questions/30845561/how-to-solve-this-using-composition-instead-of-mixins-in-react)

‎anti-patterns/06.using-indexes-as-key.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ Assuming `todo.id` is unique to this list and stable, React would be able to reo
2222
```
2323

2424
### @Reference:
25-
- [React docs](https://facebook.github.io/react/docs/reconciliation.html#tradeoffs)
25+
- [React docs](https://reactjs.org/docs/reconciliation.html#tradeoffs)
2626
- [Lin Clark's code cartoon](https://youtu.be/-t8eOoRsJ7M?t=981)

‎anti-patterns/07.spreading-props-dom.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Spread = ({ flag, ...domProps }) => (<div {...domProps}>Test</div>);
2222

2323
*Note*
2424

25-
In [scenarios](https://github.com/vasanthk/react-bits/issues/34) where you use a [PureComponent](../perf-tips/02.pure-component.md), when an update happens it re-renders the component even if `domProps` did not change. This is because PureComponent only [shallowly compares](https://facebook.github.io/react/docs/react-api.html#react.purecomponent) the objects.
25+
In [scenarios](https://github.com/vasanthk/react-bits/issues/34) where you use a [PureComponent](../perf-tips/02.pure-component.md), when an update happens it re-renders the component even if `domProps` did not change. This is because PureComponent only [shallowly compares](https://reactjs.org/docs/react-api.html#reactpurecomponent) the objects.
2626

2727
### Related links:
2828
- [React Design Patterns and best practices by Michele Bertoli.](https://github.com/MicheleBertoli/react-design-patterns-and-best-practices)

‎patterns/18.conditionals-in-jsx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ const sampleComponent = () => {
106106

107107
### Related links:
108108
- https://engineering.musefind.com/our-best-practices-for-writing-react-components-dec3eb5c3fc8
109-
- [Conditional rendering](https://facebook.github.io/react/docs/conditional-rendering.html)
109+
- [Conditional rendering](https://reactjs.org/docs/conditional-rendering.html)
110110

111111

‎patterns/19.async-nature-of-setState.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class TestComponent extends React.Component {
5050
// However, we are not adding the event the `React way` - this will have
5151
// effects on how state mutates
5252
//
53-
// Check the list here - https://facebook.github.io/react/docs/events.html
53+
// Check the list here - https://reactjs.org/docs/events.html
5454
this._btnRef.addEventListener('mouseleave', this._onMouseLeaveHandler);
5555

5656
// Add JS timeout

‎perf-tips/02.pure-component.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ export default class Example extends PureComponent {
3939
### Related links:
4040
- [Recompose](https://github.com/acdlite/recompose#composition)
4141
- [Higher Order Components with Functional Patterns Using Recompose](https://egghead.io/courses/higher-order-components-with-functional-patterns-using-recompose)
42-
- [React: PureComponent](https://facebook.github.io/react/docs/react-api.html#react.purecomponent)
42+
- [React: PureComponent](https://reactjs.org/docs/react-api.html#reactpurecomponent)
4343
- [Pure Components](https://www.fullstackreact.com/30-days-of-react/day-11/)
4444
- [Top 5 Recompose HOCs](https://medium.com/@abhiaiyer/top-5-recompose-hocs-1a4c9cc4566)

‎perf-tips/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## Articles
1616

17-
[Optimizing Performance: Docs](https://facebook.github.io/react/docs/optimizing-performance.html)
17+
[Optimizing Performance: Docs](https://reactjs.org/docs/optimizing-performance.html)
1818

1919
[Performance Engineering with React](http://benchling.engineering/performance-engineering-with-react/)
2020

0 commit comments

Comments
 (0)