freeCodeCamp/curriculum/challenges/russian/03-front-end-libraries/react/access-props-using-this.pro...

5.0 KiB
Raw Blame History

id title challengeType isRequired videoUrl localeTitle
5a24c314108439a4d403616e Access Props Using this.props 6 false Доступ к реквизитам с помощью this.props

Description

Последние несколько проблем касались основных способов передачи реквизита дочерним компонентам. Но что, если дочерний компонент, которому вы передаете реквизит, является компонентом класса ES6, а не функциональным компонентом без состояния? Компонент класса ES6 использует несколько другое соглашение для доступа к реквизитам. Каждый раз, когда вы ссылаетесь на компонент класса внутри себя, вы используете ключевое слово this . Чтобы получить доступ к реквизиту в компоненте класса, вы начинаете код, используемый для доступа к нему с this . Например, если компонент класса ES6 имеет ревизит под названием data , вы пишете {this.props.data} в JSX.

Instructions

Визуализируйте инстанцию компонента ReturnTempPassword в родительском компоненте ResetPassword . Здесь дайте ReturnTempPassword реквизит от tempPassword и присвойте ему значение строки длиной не менее 8 символов. Внутри дочернего елемента ReturnTempPassword , обратитесь к реквизиту tempPassword в тегах strong , чтобы убедиться, что пользователь видит временный пароль.

Tests

tests:
  - text: Компонент <code>ResetPassword</code> должен возвращать один элемент <code>div</code> .
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.children().type() === "div"; })(), "The <code>ResetPassword</code> component should return a single <code>div</code> element.");'
  - text: ''
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.children().childAt(3).name() === "ReturnTempPassword"; })(), "The fourth child of <code>ResetPassword</code> should be the <code>ReturnTempPassword</code> component.");'
  - text: ''
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.find("ReturnTempPassword").props().tempPassword; })(), "The <code>ReturnTempPassword</code> component should have a prop called <code>tempPassword</code>.");'
  - text: ''
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); const temp = mockedComponent.find("ReturnTempPassword").props().tempPassword; return typeof temp === "string" && temp.length >= 8; })(), "The <code>tempPassword</code> prop of <code>ReturnTempPassword</code> should be equal to a string of at least <code>8</code> characters.");'
  - text: ''
    testString: 'assert((function() { const mockedComponent = Enzyme.mount(React.createElement(ResetPassword)); return mockedComponent.find("strong").text() === mockedComponent.find("ReturnTempPassword").props().tempPassword; })(), "The <code>ReturnTempPassword</code> component should display the password you create as the <code>tempPassword</code> prop within <code>strong</code> tags.");'

Challenge Seed

class ReturnTempPassword extends React.Component {
  constructor(props) {
    super(props);

  }
  render() {
    return (
        <div>
            { /* change code below this line */ }
            <p>Your temporary password is: <strong></strong></p>
            { /* change code above this line */ }
        </div>
    );
  }
};

class ResetPassword extends React.Component {
  constructor(props) {
    super(props);

  }
  render() {
    return (
        <div>
          <h2>Reset Password</h2>
          <h3>We've generated a new temporary password for you.</h3>
          <h3>Please reset this password from your account settings ASAP.</h3>
          { /* change code below this line */ }

          { /* change code above this line */ }
        </div>
    );
  }
};

After Test

console.info('after the test');

Solution

// solution required