You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/learn/render-and-commit.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ React павінен адрэндэрыць вашы кампаненты пер
24
24
3.**Фіксацыя** у DOM (падача стравы на стол)
25
25
26
26
<IllustrationBlocksequential>
27
-
<Illustrationcaption="Trigger"alt="React as a server in a restaurant, fetching orders from the users and delivering them to the Component Kitchen."src="/images/docs/illustrations/i_render-and-commit1.png" />
28
-
<Illustrationcaption="Render"alt="The Card Chef gives React a fresh Card component."src="/images/docs/illustrations/i_render-and-commit2.png" />
29
-
<Illustrationcaption="Commit"alt="React delivers the Card to the user at their table."src="/images/docs/illustrations/i_render-and-commit3.png" /></IllustrationBlock>
27
+
<Illustrationcaption="Ініцыяцыя"alt="React — гэта афіцыянт у рэстаране, які атрымлівае заказы ад карыстальнікаў і дастаўляе іх на кухню кампанентаў."src="/images/docs/illustrations/i_render-and-commit1.png" />
28
+
<Illustrationcaption="Рэндэрынг"alt="Шэф дае React свежы экземпляр кампанента Card."src="/images/docs/illustrations/i_render-and-commit2.png" />
29
+
<Illustrationcaption="Фіксацыя"alt="React дастаўляе кампанент Cart карыстальніку за яго сталом."src="/images/docs/illustrations/i_render-and-commit3.png" /></IllustrationBlock>
30
30
31
31
## Этап 1: Ініцыяцыя рэндэрынгу {/_step-1-trigger-a-render_/}
32
32
@@ -54,7 +54,7 @@ export default function Image() {
54
54
return (
55
55
<img
56
56
src="https://i.imgur.com/ZF6s192.jpg"
57
-
alt="'Floralis Genérica' by Eduardo Catalano: a gigantic metallic flower sculpture with reflective petals"
57
+
alt="'Родавы Флораліс' Эдуарда Каталана: гіганцкая металічная скульптура кветкі з люстэркавымі пялёсткамі"
58
58
/>
59
59
);
60
60
}
@@ -69,9 +69,9 @@ export default function Image() {
69
69
Пасля таго як кампанент быў першапачаткова адрэндэраны, вы можаце ініцыяваць наступныя рэндэры, абнаўляючы яго стан з дапамогай функцыі [`set`.](/reference/react/useState#setstate) Абнаўленне стану кампанента аўтаматычна ставіць яго ў чаргу на рэндэр. (Гэта падобна на наведвальніка рэстарана, які пасля першапачатковага заказу, дазаказвае сабе чай, дэсерт і разнастайныя рэчы, у залежнасці ад стану смагі ці голаду.)
70
70
71
71
<IllustrationBlocksequential>
72
-
<Illustrationcaption="State update..."alt="React as a server in a restaurant, serving a Card UI to the user, represented as a patron with a cursor for their head. They patron expresses they want a pink card, not a black one!"src="/images/docs/illustrations/i_rerender1.png" />
73
-
<Illustrationcaption="...triggers..."alt="React returns to the Component Kitchen and tells the Card Chef they need a pink Card."src="/images/docs/illustrations/i_rerender2.png" />
74
-
<Illustrationcaption="...render!"alt="The Card Chef gives React the pink Card."src="/images/docs/illustrations/i_rerender3.png" /></IllustrationBlock>
72
+
<Illustrationcaption="Абнаўленне стану..."alt="React — гэта афіцыянт у рэстаране, які дастаўляе карыстальніцкі інтэрфейс кампанета Card кліенту.Кліент кажа, што хоча ружовы Card, а не чорны!"src="/images/docs/illustrations/i_rerender1.png" />
73
+
<Illustrationcaption="...запускае..."alt="React вяртаецца на кухню кампанентаў і кажа шэфу, што яму патрэбны ружовы Card."src="/images/docs/illustrations/i_rerender2.png" />
74
+
<Illustrationcaption="...рэндэр!"alt="Шэф дае React ружовы Card."src="/images/docs/illustrations/i_rerender3.png" /></IllustrationBlock>
75
75
76
76
## Этап 2: React рэндэрыць вашы кампаненты {/_step-2-react-renders-your-components_/}
77
77
@@ -102,7 +102,7 @@ function Image() {
102
102
return (
103
103
<img
104
104
src="https://i.imgur.com/ZF6s192.jpg"
105
-
alt="'Floralis Genérica' by Eduardo Catalano: a gigantic metallic flower sculpture with reflective petals"
105
+
alt="'Родавы Флораліс' Эдуарда Каталана: гіганцкая металічная скульптура кветкі з люстэркавымі пялёсткамі"
106
106
/>
107
107
);
108
108
}
@@ -197,7 +197,7 @@ export default function App() {
197
197
198
198
Пасля таго як рэндэр завершаны і React абнавіў DOM, браўзер перамалёўвае экран. Хоць гэты працэс і вядомы як «браўзерны рэндэрынг», мы будзем называць яго «маляваннем», каб пазбегнуць блытаніны ў дакументацыі.
199
199
200
-
<Illustrationalt="A browser painting 'still life with card element'."src="/images/docs/illustrations/i_browser-paint.png" />
200
+
<Illustrationalt="Браўзер малюе картціну 'Нацюрморт з элементам Card'."src="/images/docs/illustrations/i_browser-paint.png" />
0 commit comments