【React】独自hooksを作成してstateを変更する2

自分用のメモ

環境の準備

実行環境

  • 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>
  • 28行目のinput項目を変更すると、税率に合わせた金額を表示するアプリです。
  • 17行目で税率を渡すと、必要な値と関数を返します。
  • 24、25行目のtaxとreducedは値ではなく関数のため、即時関数()で値を出力しています。
import React, {useEffect, useState} from 'react';
import './App.css';

const App = () => {
  return (
    <div>
      <h1 className='bg-primary text-white display-4'>React</h1>
      <div className='container'>
        <h4 className='my-3'>Hooks sample</h4>
        <AlertMessage />
      </div>
    </div>
  )
}

const AlertMessage = props => {
  const [price, tax, reduced, setPrice] = useTax(10, 8)
  const DoChange = e => {
    let p = e.target.value
    setPrice(p)
  }
  return (
    <div className='alert alert-primary h5 text-primary'>
      <p className='h5'>通常税率:{tax()}円.</p>
      <p className='h5'>軽減税率:{reduced()}円.</p>
      <div className='form-group'>
        <label className='form-group-label'>Price:</label>
        <input type='number' className='form-control' onChange={DoChange} value={price} />
      </div>
    </div>
  )
}

const useTax = (t1, t2) => {
  const [price, setPrice] = useState(1000)
  const [tx1] = useState(t1)
  const [tx2] = useState(t2)
  const tax = () => {
    return Math.floor(price * (1.0 + tx1 / 100))
  }
  const reduced = () => {
    return Math.floor(price * (1.0 + tx2 / 100))
  }
  return [price, tax, reduced, setPrice]
}

export default App

あとがき

特になし

コメントを残す

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