Skip to content

Commit 7790ef2

Browse files
authored
Merge pull request #324 from reactjs/sync-f2158e36
Sync with reactjs.org @ f2158e3
2 parents bb04848 + dfeb872 commit 7790ef2

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

Diff for: content/community/conferences.md

+10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Do you know of a local React.js conference? Add it here! (Please keep the list c
1212

1313
## Upcoming Conferences {#upcoming-conferences}
1414

15+
### AgentConf 2022 {#agent-conf-2022}
16+
January 27th - 30th, 2022. In-person in Dornbirn and Lech Austria
17+
18+
[Website](https://agent.sh/) - [Twitter](https://twitter.com/AgentConf) - [Instagram](https://www.instagram.com/teamagent/)
19+
1520
### React Brussels 2021 {#react-brussels-2021}
1621
October 15, 2021 - remote event
1722

@@ -43,6 +48,11 @@ November 12-14, 2021 - remote event
4348

4449
[Website](https://www.reactindia.io) - [Twitter](https://twitter.com/react_india) - [Facebook](https://www.facebook.com/ReactJSIndia/) - [LinkedIn](https://www.linkedin.com/showcase/14545585) - [YouTube](https://www.youtube.com/channel/UCaFbHCBkPvVv1bWs_jwYt3w/videos)
4550

51+
### render(ATL) 2022 {#render-atlanta-2022}
52+
June 2-4, 2022. Atlanta, GA, USA
53+
54+
[Website](https://renderatl.com) - [Twitter](https://twitter.com/renderATL) - [Instagram](https://www.instagram.com/renderatl/) - [Facebook](https://www.facebook.com/renderatl/) - [LinkedIn](https://www.linkedin.com/company/renderatl)
55+
4656
## Past Conferences {#past-conferences}
4757

4858
### render(ATL) 2021 {#render-atlanta-2021}

Diff for: content/community/meetups.md

+3
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
112112
## Italy {#italy}
113113
* [Milan](https://www.meetup.com/React-JS-Milano/)
114114

115+
## Kenya {#kenya}
116+
* [Nairobi - Reactdevske](https://kommunity.com/reactjs-developer-community-kenya-reactdevske)
117+
115118
## Malaysia {#malaysia}
116119
* [Kuala Lumpur](https://www.kl-react.com/)
117120
* [Penang](https://www.facebook.com/groups/reactpenang/)

Diff for: content/docs/concurrent-mode-suspense.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function ProfileTimeline() {
100100

101101
This demo is a teaser. Don't worry if it doesn't quite make sense yet. We'll talk more about how it works below. Keep in mind that Suspense is more of a *mechanism*, and particular APIs like `fetchProfileData()` or `resource.posts.read()` in the above example are not very important. If you're curious, you can find their definitions right in the [demo sandbox](https://codesandbox.io/s/frosty-hermann-bztrp).
102102

103-
Suspense is not a data fetching library. It's a **mechanism for data fetching libraries** to communicate to React that *the data a component is reading is not ready yet*. React can then wait for it to be ready and update the UI. At Facebook, we use Relay and its [new Suspense integration](docs/getting-started/step-by-step-guide/). We expect that other libraries like Apollo can provide similar integrations.
103+
Suspense is not a data fetching library. It's a **mechanism for data fetching libraries** to communicate to React that *the data a component is reading is not ready yet*. React can then wait for it to be ready and update the UI. At Facebook, we use Relay and its [new Suspense integration](https://relay.dev/docs/getting-started/step-by-step-guide/). We expect that other libraries like Apollo can provide similar integrations.
104104

105105
In the long term, we intend Suspense to become the primary way to read asynchronous data from components -- no matter where that data is coming from.
106106

Diff for: content/docs/thinking-in-react.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Puoi cominciare partendo dall'alto (top-down) o dal basso (bottom-up). Il che si
7171

7272
Alla fine di questo passo, avrai una libreria di componenti riutilizzabili che renderizza il tuo modello dati. I componenti avranno solo metodi `render()` dati che è una versione statica dell'applicazione. Il componente al vertice della gerarchia (`TabellaProdottiRicercabile`) riceverà il tuo modello dati come prop. Qualora tu cambiassi il modello dati sottostante, richiamando `ReactDOM.render()` di nuovo, la UI verrà aggiornata. Vedrai come la UI si aggiorna al fine di individuare i necessari cambiamenti dato che quanto sta accadendo non è per nulla complicato. Il **flusso dati monodirezionale** di React (noto anche come *one-way binding*) mantiene ogni cosa modulare e veloce.
7373

74-
Fai riferimento alla [Documentazione](/docs/) se hai bisogno di aiuto nell'esecuzione di questo passo.
74+
Fai riferimento alla [Documentazione](/docs/getting-started.html) se hai bisogno di aiuto nell'esecuzione di questo passo.
7575

7676
### Un Breve Intervallo: Props vs State {#a-brief-interlude-props-vs-state}
7777

Diff for: content/tutorial/tutorial.md

+1
Original file line numberDiff line numberDiff line change
@@ -1149,6 +1149,7 @@ Poi, definitiamo il metodo `jumpTo` in Game per aggiornare quello `stepNumber`.
11491149
// questo metodo non è cambiato
11501150
}
11511151
```
1152+
Notice in `jumpTo` method, we haven't updated history property of the state. That is because state updates are merged or in more simple words react will update only the properties mentioned in `setState` method leaving the remaining state as that is. For more info **[see the documentation](https://reactjs.org/docs/state-and-lifecycle.html#state-updates-are-merged)**
11521153

11531154
È ora di apportare qualche cambiamento al metodo `handleClick` di Game che verrà richiamato quando si clicca su un quadrato.
11541155

Diff for: package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@
6363
"yarn": "^1.3.2"
6464
},
6565
"homepage": "https://it.reactjs.org/",
66-
"keywords": [
67-
"gatsby"
68-
],
66+
"keywords": [],
6967
"license": "CC",
7068
"main": "n/a",
7169
"repository": {
@@ -74,6 +72,7 @@
7472
},
7573
"scripts": {
7674
"build": "gatsby clean && gatsby build",
75+
"build-ci": "gatsby clean && gatsby build",
7776
"check-all": "npm-run-all prettier generate-ids --parallel lint flow",
7877
"ci-check": "npm-run-all prettier:diff --parallel lint flow",
7978
"dev": "gatsby develop -H 0.0.0.0",

0 commit comments

Comments
 (0)