【React】Providerでコンテキストを変更する

自分用のメモ

環境の準備

実行環境

  • VS code:v1.62.3
  • Node.js:v14.17.3
  • React:v17.0.2

プロジェクトの作成

React Create Appで作成します。

React Create Appで作成されたソースの変更

  • 15行目でbootstrapをCDNで読み込んでいます。
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="theme-color" content="#000000" />
    <meta
    name="description"
    content="Web site created using create-react-app"
    />
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
    <title>React App</title>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" crossorigin="anonymous" >
  </head>
  <body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
  </body>
</html>
  • 6行目のコンテキストを16行目のコンポーネントで表示しています。
  • 19行目でProviderを使用して、コンテキストを一時的に変更しています。
import React from 'react';
import './App.css';

let data = {title: 'React-Context',
            message: 'this is sample message'}
const SampleContext = React.createContext(data)

class App extends React.Component {
  newdata = {title: '新しいタイトル',
            message: '新しいメッセージです。'}
  render() {
    return (
      <div>
        <h1 className='bg-primary text-white display-4'>React</h1>
        <div className='container'>
          <Title />
          <Message />
          <hr />
          <SampleContext.Provider value={this.newdata}>
            <Title />
            <Message />
          </SampleContext.Provider>
        </div>
      </div>
    )
  }
}

class Title extends React.Component {
  static contextType = SampleContext
  render() {
    return (
      <div className='card p-2 my-3'>
        <h2>{this.context.title}</h2>
      </div>
    )
  }
}

class Message extends React.Component {
  static contextType = SampleContext
  render() {
    return(
      <div className='alert alert-primary'>
        <p>{this.context.message}</p>
      </div>
    )
  }
}

export default App

あとがき

特になし

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です