web-dev-qa-db-ja.com

React.js:クリック時にコンポーネントを追加する方法は?

私はReactが初めてで、何か基本的なことに戸惑っています。

クリックイベントでDOMがレンダリングされた後、DOMにコンポーネントを追加する必要があります。

私の最初の試みは次のとおりであり、うまくいきません。しかし、それは私が試してみたいと思った最高のものです。 (jQueryとReactを混在させることをおAびします。)

    ParentComponent = class ParentComponent extends React.Component {
      constructor () {
        this.addChild = this.addChild.bind(this);
      }

      addChild (event) {
        event.preventDefault();
        $("#children-pane").append(<ChildComponent/>);
      }

      render () {
        return (
          <div className="card calculator">
            <p><a href="#" onClick={this.addChild}>Add Another Child Component</a></p>
            <div id="children-pane">
              <ChildComponent/>
            </div>
          </div>
        );
      }
    };

うまくいけば、私が何をする必要があるかが明確になり、適切な解決策を達成するのに役立つことを願っています。

52
jayqui

@Alex McMillanが言及したように、domでレンダリングされるものを指示するために状態を使用します。

以下の例では、入力フィールドがあり、ユーザーがボタンをクリックしたときに2番目のフィールドを追加したい場合、onClickイベントハンドラーはinputLinkClickedをtrueに変更するhandleAddSecondInput()を呼び出します。三項演算子を使用して、2番目の入力フィールドをレンダリングする真実の状態を確認しています

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


    this.state = {
      inputLinkClicked: false
    }
  }

  handleAddSecondInput() {
    this.setState({
      inputLinkClicked: true
    })
  }


  render() {
    return(
      <main id="wrapper" className="" data-reset-cookie-tab>
        <div id="content" role="main">
          <div className="inner-block">

            <H1Heading title="Tell us about any disabilities, illnesses or ongoing conditions"/>

            <InputField label="Name of condition"
              InputType="text"
              InputId="id-condition"
              InputName="condition"
            />

            {
              this.state.inputLinkClicked?

              <InputField label=""
                InputType="text"
                InputId="id-condition2"
                InputName="condition2"
              />

              :

              <div></div>
            }

            <button
              type="button"
              className="make-button-link"
              data-add-button=""
              href="#"
              onClick={this.handleAddSecondInput}
            >
              Add a condition
            </button>

            <FormButton buttonLabel="Next"
              handleSubmit={this.handleSubmit}
              linkto={
                this.state.illnessOrDisability === 'true' ?
                "/404"
                :
                "/add-your-details"
              }
            />

            <BackLink backLink="/add-your-details" />

          </div>
         </div>
      </main>
    );
  }
}
11
Homam Bahrani

Reactを使用している場合、jQueryを使用してDOMを操作しないでください。 Reactコンポーネントは、特定の状態が与えられた場合の外観の表現をレンダリングする必要があります。変換されるDOMはReact自体によって処理されます。

あなたがしたいのは、「レンダリングされるものを決定する状態」をチェーンの上位に格納し、それを渡すことです。 nの子をレンダリングする場合、その状態はコンポーネントを含むものによって「所有」される必要があります。例えば:

class AppComponent extends React.Component {
  state = {
    numChildren: 0
  }

  render () {
    const children = [];

    for (var i = 0; i < this.state.numChildren; i += 1) {
      children.Push(<ChildComponent key={i} number={i} />);
    };

    return (
      <ParentComponent addChild={this.onAddChild}>
        {children}
      </ParentComponent>
    );
  }

  onAddChild = () => {
    this.setState({
      numChildren: this.state.numChildren + 1
    });
  }
}

const ParentComponent = props => (
  <div className="card calculator">
    <p><a href="#" onClick={props.addChild}>Add Another Child Component</a></p>
    <div id="children-pane">
      {props.children}
    </div>
  </div>
);

const ChildComponent = props => <div>{"I am child " + props.number}</div>;
82
Alex McMillan