Water Component を作る 2
動画: https://youtu.be/7B0tiLHj_c0 コード: https://codesandbox.io/s/n4qmwyp1n0
import React from "react";
import { render } from "react-dom";
class Water extends React.Component {
constructor(props) {
super(props);
this.state = { temp: 15 };
}
// 表示する内容を温度によって変えるためのメソッド
getWaterState(temp) {
if (temp <= 0) {
return "Ice";
}
if (100 <= temp) {
return "Steam";
}
return "Water";
}
render() {
return (
<div>
// 一度づつあげてもラチがあかないので一気に10変更できるように
<button onClick={this.onButtonPlus}>+1</button>
<button onClick={this.onButtonPlus10}>+10</button>
<button onClick={this.onButtonMinus}>-1</button>
<button onClick={this.onButtonMinus10}>-10</button>
<h2>
// this.getWaterState で氷なのか水なのか蒸気なのかを判定させて表示
phase: {this.getWaterState(this.state.temp)}, {this.state.temp} ℃
</h2>
</div>
);
}
onButtonPlus = () => {
this.setState({ temp: this.state.temp + 1 });
};
onButtonPlus10 = () => {
this.setState({ temp: this.state.temp + 10 });
};
onButtonMinus = () => {
this.setState({ temp: this.state.temp - 1 });
};
onButtonMinus10 = () => {
this.setState({ temp: this.state.temp - 10 });
};
}
render(<Water />, document.getElementById("root"));