freeCodeCamp/curriculum/challenges/russian/03-front-end-libraries/react/pass-an-array-as-props.russ...

7.2 KiB
Raw Blame History

id title challengeType isRequired videoUrl localeTitle
5a24c314108439a4d403616a Pass an Array as Props 6 false Передайте массив как реквизит

Description

Последняя задача продемонстрировала, как передавать информацию из родительского компонента в дочерний компонент в качестве props или свойств. В этой задаче рассматривается, как массивы могут быть переданы в качестве props . Чтобы передать массив элементу JSX, он должен рассматриваться как JavaScript и завернут в фигурные скобки.
<ParentComponent>
<Цвета ChildComponent = {["зеленый", "синий", "красный"]} />
</ ParentComponent>
Затем дочерний компонент имеет доступ к colors свойств массива. При доступе к свойству могут использоваться методы массива, такие как join() . const ChildComponent = (props) => <p>{props.colors.join(', ')}</p> Это объединит все элементы массива colors в строку, разделенную запятой, и произведет: <p>green, blue, red</p> Позже мы узнаем о других распространенных методах рендеринга массивов данных в React.

Instructions

В редакторе кода есть компоненты List и ToDo . При рендеринге каждого List из компонента ToDo передайте свойство tasks назначенное массиву заданий, например ["walk dog", "workout"] . Затем войдите в этот массив tasks в компоненте List , показывая его значение в p элементе. Используйте join(", ") чтобы отобразить массив props.tasks в элементе p как список, разделенный запятыми. В сегодняшнем списке должно быть не менее двух задач, а завтра должно быть не менее 3 задач.

Tests

tests:
  - text: Компонент <code>ToDo</code> должен возвращать один внешний <code>div</code> .
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().type() === "div"; })(), "The <code>ToDo</code> component should return a single outer <code>div</code>.");'
  - text: Третий ребенок компонента <code>ToDo</code> должен быть экземпляром компонента <code>List</code> .
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(2).name() === "List"; })(), "The third child of the <code>ToDo</code> component should be an instance of the <code>List</code> component.");'
  - text: Пятый дочерний компонент <code>ToDo</code> должен быть экземпляром компонента <code>List</code> .
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.children().first().childAt(4).name() === "List"; })(), "The fifth child of the <code>ToDo</code> component should be an instance of the <code>List</code> component.");'
  - text: 'Оба экземпляра компонента <code>List</code> должны иметь свойство, называемое <code>tasks</code> а <code>tasks</code> должны иметь тип массива.'
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return Array.isArray(mockedComponent.find("List").get(0).props.tasks) && Array.isArray(mockedComponent.find("List").get(1).props.tasks); })(), "Both instances of the <code>List</code> component should have a property called <code>tasks</code> and <code>tasks</code> should be of type array.");'
  - text: 'Первый компонент <code>List</code> представляющий задачи на сегодняшний день, должен иметь 2 или более элемента.'
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(0).props.tasks.length >= 2; })(), "The first <code>List</code> component representing the tasks for today should have 2 or more items.");'
  - text: 'Второй компонент <code>List</code> представляющий задачи на завтра, должен иметь 3 или более элементов.'
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("List").get(1).props.tasks.length >= 3; })(), "The second <code>List</code> component representing the tasks for tomorrow should have 3 or more items.");'
  - text: 'Компонент <code>List</code> должен отображать значение из поддержки <code>tasks</code> в теге <code>p</code> как список, разделенный запятой, например, <code>walk dog, workout</code> .'
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ToDo)); return mockedComponent.find("p").get(0).props.children === mockedComponent.find("List").get(0).props.tasks.join(", ") && mockedComponent.find("p").get(1).props.children === mockedComponent.find("List").get(1).props.tasks.join(", "); })(), "The <code>List</code> component should render the value from the <code>tasks</code> prop in the <code>p</code> tag as a comma separated list, for example <code>walk dog, workout</code>.");'

Challenge Seed

const List= (props) => {
  { /* change code below this line */ }
  return <p>{}</p>
  { /* change code above this line */ }
};

class ToDo extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div>
        <h1>To Do Lists</h1>
        <h2>Today</h2>
        { /* change code below this line */ }
        <List/>
        <h2>Tomorrow</h2>
        <List/>
        { /* change code above this line */ }
      </div>
    );
  }
};

After Test

console.info('after the test');

Solution

// solution required