Skip to content

Commit 8a76149

Browse files
committed
translation of list and keys
1 parent 4ce77d2 commit 8a76149

File tree

2 files changed

+39
-39
lines changed

2 files changed

+39
-39
lines changed

content/docs/lists-and-keys.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
---
22
id: lists-and-keys
3-
title: Lists and Keys
3+
title: Списки и ключи
44
permalink: docs/lists-and-keys.html
55
prev: conditional-rendering.html
66
next: forms.html
77
---
88

9-
First, let's review how you transform lists in JavaScript.
9+
Сначала посмотрим как мы работаем со списками в JavaScript.
1010

11-
Given the code below, we use the [`map()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map) function to take an array of `numbers` and double their values. We assign the new array returned by `map()` to the variable `doubled` and log it:
11+
В коде ниже мы используем функцию [`map()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map), чтобы удвоить значения в массиве `numbers`. Мы присваиваем массив, возвращаемый из `map()`, в переменную `doubled` и выводим её в консоль:
1212

1313
```javascript{2}
1414
const numbers = [1, 2, 3, 4, 5];
1515
const doubled = numbers.map((number) => number * 2);
1616
console.log(doubled);
1717
```
1818

19-
This code logs `[2, 4, 6, 8, 10]` to the console.
19+
Этот код выведет `[2, 4, 6, 8, 10]` в консоль.
2020

21-
In React, transforming arrays into lists of [elements](/docs/rendering-elements.html) is nearly identical.
21+
В React преобразование массивов в список [элементов](/docs/rendering-elements.html) выглядит похожим образом.
2222

23-
### Rendering Multiple Components {#rendering-multiple-components}
23+
### Рендер нескольких компонентов {#rendering-multiple-components}
2424

25-
You can build collections of elements and [include them in JSX](/docs/introducing-jsx.html#embedding-expressions-in-jsx) using curly braces `{}`.
25+
Вы можете создавать коллекции элементов и добавлять их в JSX [include them in JSX](/docs/introducing-jsx.html#embedding-expressions-in-jsx) с помощью фигурных скобок `{}`.
2626

27-
Below, we loop through the `numbers` array using the JavaScript [`map()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map) function. We return a `<li>` element for each item. Finally, we assign the resulting array of elements to `listItems`:
27+
Ниже, мы итерируемся по массиву `numbers`, используя функцию JavaScript [`map()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map), и возвращаем элемент `<li>` в каждой итерации. В итоге мы присваиваем получившийся массив элементов в `listItems`:
2828

2929
```javascript{2-4}
3030
const numbers = [1, 2, 3, 4, 5];
@@ -33,7 +33,7 @@ const listItems = numbers.map((number) =>
3333
);
3434
```
3535

36-
We include the entire `listItems` array inside a `<ul>` element, and [render it to the DOM](/docs/rendering-elements.html#rendering-an-element-into-the-dom):
36+
Затем добавляем массив `listItems` внутрь элемента `<ul>` и [рендерим в DOM](/docs/rendering-elements.html#rendering-an-element-into-the-dom):
3737

3838
```javascript{2}
3939
ReactDOM.render(
@@ -44,13 +44,13 @@ ReactDOM.render(
4444

4545
[**Try it on CodePen**](https://codepen.io/gaearon/pen/GjPyQr?editors=0011)
4646

47-
This code displays a bullet list of numbers between 1 and 5.
47+
Данный код выведет ненумерованный список с числами от 1 до 5.
4848

49-
### Basic List Component {#basic-list-component}
49+
### Базовый компонент списка {#basic-list-component}
5050

51-
Usually you would render lists inside a [component](/docs/components-and-props.html).
51+
Обычно вы будете рендерить списки внутри [компонента](/docs/components-and-props.html).
5252

53-
We can refactor the previous example into a component that accepts an array of `numbers` and outputs an unordered list of elements.
53+
Мы можем отрефакторить предыдущий пример с использованием компонента, который принимает массив `numbers` и выводит неупорядоченный список элементов.
5454

5555
```javascript{3-5,7,13}
5656
function NumberList(props) {
@@ -70,9 +70,9 @@ ReactDOM.render(
7070
);
7171
```
7272

73-
When you run this code, you'll be given a warning that a key should be provided for list items. A "key" is a special string attribute you need to include when creating lists of elements. We'll discuss why it's important in the next section.
73+
Когда вы запустите данный код, то увидите предупреждение о том, что у каждого элемента массива должен быть ключ. «Ключ» – это специальный строковый атрибут, который вам необходимо добавлять при создании списка элементов. Мы обсудим почему это важно в следующей главе.
7474

75-
Let's assign a `key` to our list items inside `numbers.map()` and fix the missing key issue.
75+
Добавим `key` к нашему списку элементов внутри `numbers.map()` и поправим проблему его отсутствия.
7676

7777
```javascript{4}
7878
function NumberList(props) {
@@ -96,9 +96,9 @@ ReactDOM.render(
9696

9797
[**Try it on CodePen**](https://codepen.io/gaearon/pen/jrXYRR?editors=0011)
9898

99-
## Keys {#keys}
99+
## Ключи {#keys}
100100

101-
Keys help React identify which items have changed, are added, or are removed. Keys should be given to the elements inside the array to give the elements a stable identity:
101+
Ключи помогают React определять какие элементы были изменены, добавлены или удалены. Ключи нужно присваивать элементам внутри массива для их явной идентификации:
102102

103103
```js{3}
104104
const numbers = [1, 2, 3, 4, 5];
@@ -109,7 +109,7 @@ const listItems = numbers.map((number) =>
109109
);
110110
```
111111

112-
The best way to pick a key is to use a string that uniquely identifies a list item among its siblings. Most often you would use IDs from your data as keys:
112+
Лучший способ выбрать ключ это использовать строку, которая будет явно отличать элемент списка от его соседей. Чаще всего вы будете использовать ID из ваших данных как ключи:
113113

114114
```js{2}
115115
const todoItems = todos.map((todo) =>
@@ -119,34 +119,34 @@ const todoItems = todos.map((todo) =>
119119
);
120120
```
121121

122-
When you don't have stable IDs for rendered items, you may use the item index as a key as a last resort:
122+
Когда у вас нет заданных ID для списка, то в крайнем случае можете использовать индекс элемента как ключ:
123123

124124
```js{2,3}
125125
const todoItems = todos.map((todo, index) =>
126-
// Only do this if items have no stable IDs
126+
// Делайте так только если у элементов массива нет заданного ID
127127
<li key={index}>
128128
{todo.text}
129129
</li>
130130
);
131131
```
132132

133-
We don't recommend using indexes for keys if the order of items may change. This can negatively impact performance and may cause issues with component state. Check out Robin Pokorny's article for an [in-depth explanation on the negative impacts of using an index as a key](https://medium.com/@robinpokorny/index-as-a-key-is-an-anti-pattern-e0349aece318). If you choose not to assign an explicit key to list items then React will default to using indexes as keys.
133+
Мы не рекомендуем использовать индексы как ключи если порядок элементов может поменяться. Это негативно скажется на производительности и может вызвать проблемы с состоянием компонента. Посмотрите статью Робина Покорни (Robin Pokorny) с [подробным объяснением негативного влияния использования индексов как ключей](https://medium.com/@robinpokorny/index-as-a-key-is-an-anti-pattern-e0349aece318). Если вы решите не присваивать ключ к элементу списка, то React по умолчанию будет использовать индексы как ключи.
134134

135-
Here is an [in-depth explanation about why keys are necessary](/docs/reconciliation.html#recursing-on-children) if you're interested in learning more.
135+
Вот [подробное объяснение о том, почему ключи необходимы](/docs/reconciliation.html#recursing-on-children) если вы захотели узнать больше.
136136

137-
### Extracting Components with Keys {#extracting-components-with-keys}
137+
### Извлечение компонентов с ключами {#extracting-components-with-keys}
138138

139-
Keys only make sense in the context of the surrounding array.
139+
Ключи имеют смысл только в контексте массива.
140140

141-
For example, if you [extract](/docs/components-and-props.html#extracting-components) a `ListItem` component, you should keep the key on the `<ListItem />` elements in the array rather than on the `<li>` element in the `ListItem` itself.
141+
Например если вы [извлекаете](/docs/components-and-props.html#extracting-components) компонент `ListItem`, то нужно указывать ключ для `<ListItem />` в массиве, вместо элементов `<li>` внутри самого `ListItem`.
142142

143-
**Example: Incorrect Key Usage**
143+
**Пример неправильного использования ключей**
144144

145145
```javascript{4,5,14,15}
146146
function ListItem(props) {
147147
const value = props.value;
148148
return (
149-
// Wrong! There is no need to specify the key here:
149+
// Неправильно! Нет необходимости задавать здесь ключ:
150150
<li key={value.toString()}>
151151
{value}
152152
</li>
@@ -156,7 +156,7 @@ function ListItem(props) {
156156
function NumberList(props) {
157157
const numbers = props.numbers;
158158
const listItems = numbers.map((number) =>
159-
// Wrong! The key should have been specified here:
159+
// Неправильно! Ключ необходимо определить здесь:
160160
<ListItem value={number} />
161161
);
162162
return (
@@ -173,7 +173,7 @@ ReactDOM.render(
173173
);
174174
```
175175

176-
**Example: Correct Key Usage**
176+
**Пример правильного использования ключей**
177177

178178
```javascript{2,3,9,10}
179179
function ListItem(props) {
@@ -204,11 +204,11 @@ ReactDOM.render(
204204

205205
[**Try it on CodePen**](https://codepen.io/gaearon/pen/ZXeOGM?editors=0010)
206206

207-
A good rule of thumb is that elements inside the `map()` call need keys.
207+
Наличие ключей у элементов внутри `map()` является хорошим тоном.
208208

209-
### Keys Must Only Be Unique Among Siblings {#keys-must-only-be-unique-among-siblings}
209+
### Ключи должны быть уникальными среди соседей {#keys-must-only-be-unique-among-siblings}
210210

211-
Keys used within arrays should be unique among their siblings. However they don't need to be globally unique. We can use the same keys when we produce two different arrays:
211+
Ключам, которые используются в массивах, нужно быть уникальными среди своих соседей. Однако они не должны быть уникальными глобально. Мы можем использовать одни и те же ключи для создания двух разных массивов.
212212

213213
```js{2,5,11,12,19,21}
214214
function Blog(props) {
@@ -248,7 +248,7 @@ ReactDOM.render(
248248

249249
[**Try it on CodePen**](https://codepen.io/gaearon/pen/NRZYGN?editors=0010)
250250

251-
Keys serve as a hint to React but they don't get passed to your components. If you need the same value in your component, pass it explicitly as a prop with a different name:
251+
Ключи являются подсказками для React, но они никогда не передаются в ваши компоненты. Если в компоненте нужно тоже самое значение, то передайте его явно через проп с другим именем:
252252

253253
```js{3,4}
254254
const content = posts.map((post) =>
@@ -259,11 +259,11 @@ const content = posts.map((post) =>
259259
);
260260
```
261261

262-
With the example above, the `Post` component can read `props.id`, but not `props.key`.
262+
В примере выше компонент `Post` может прочитать значение `props.id`, но не `props.key`.
263263

264-
### Embedding map() in JSX {#embedding-map-in-jsx}
264+
### Встраивание map() в JSX {#embedding-map-in-jsx}
265265

266-
In the examples above we declared a separate `listItems` variable and included it in JSX:
266+
В примерах выше мы отдельно определяли переменную `listItems` и вставляли её в JSX:
267267

268268
```js{3-6}
269269
function NumberList(props) {
@@ -280,7 +280,7 @@ function NumberList(props) {
280280
}
281281
```
282282

283-
JSX allows [embedding any expression](/docs/introducing-jsx.html#embedding-expressions-in-jsx) in curly braces so we could inline the `map()` result:
283+
JSX позволяет [встроить любое выражение](/docs/introducing-jsx.html#embedding-expressions-in-jsx) в фигурные скобки, так мы можем заинлайнить результат `map()`:
284284

285285
```js{5-8}
286286
function NumberList(props) {
@@ -298,4 +298,4 @@ function NumberList(props) {
298298

299299
[**Try it on CodePen**](https://codepen.io/gaearon/pen/BLvYrB?editors=0010)
300300

301-
Sometimes this results in clearer code, but this style can also be abused. Like in JavaScript, it is up to you to decide whether it is worth extracting a variable for readability. Keep in mind that if the `map()` body is too nested, it might be a good time to [extract a component](/docs/components-and-props.html#extracting-components).
301+
Иногда это приводит к более чистому коду, но таким стилем так же можно злоупотреблять. Как и в JavaScript вам придется самостоятельно решать стоит ли извлекать код в переменную для читабельности. Держите в голове, что если содержимое `map()` является слишком сложным, вероятно это отличная возможность чтобы [извлечь компонент](/docs/components-and-props.html#extracting-components).

content/docs/nav.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
- id: conditional-rendering
2727
title: Conditional Rendering
2828
- id: lists-and-keys
29-
title: Lists and Keys
29+
title: Списки и ключи
3030
- id: forms
3131
title: Forms
3232
- id: lifting-state-up

0 commit comments

Comments
 (0)