Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- googleColaboratory
- 웹 게임을 만들며 배우는 리액트
- 계산맞추기 게임
- JS 개념
- 자바스크립트
- spring-boot
- 타자 게임 만들기
- props
- 거북이 대포 게임
- DB Browser
- Concurrently
- 인프런
- 따라하며 배우는 노드 리액트 기본 강의
- react
- 모던자바스크립트
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- vs code 내 node
- 노드에 리액트 추가하기
- node.js 설치
- Spring-Framework
- Colaboratory 글자 깨짐
- react오류
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Do it 자바스크립트 + 제이쿼리 입문
- Python
- node.js로 로그인하기
- 리액트
- 모두의 파이썬
- intellij
- intllij 내 Bean을 찾지 못해서 발생하는 오류
Archives
- Today
- Total
프로그래밍 삽질 중
[웹 게임을 만들며 배우는 React] - 끝말잇기(class와 hooks 사용, controlled & uncontrolled) 본문
과거 프로그래밍 자료들/React
[웹 게임을 만들며 배우는 React] - 끝말잇기(class와 hooks 사용, controlled & uncontrolled)
평부 2022. 9. 27. 14:37
출처: https://www.inflearn.com/course/web-game-react/dashboard
* class version
▶ Component 사용
▶ this 사용
const React = require("react");
const { Component } = React;
class WordRelay extends Component {
state = {
word: "제로초",
value: "",
result: "",
};
onSubmitForm = (e) => {
e.preventDefault();
if (this.state.word[this.state.word.length - 1] === this.state.value[0]) {
this.setState({
result: "딩동댕",
word: this.state.value,
value: "",
});
this.input.focus();
} else {
this.setState({
result: "땡",
value: "",
});
this.input.focus();
}
};
onChange = (e) => {
this.setState({ value: e.target.value });
};
input;
onRefInput = (c) => {
this.input = c;
};
render() {
return (
<>
<div>{this.state.word}</div>
<form onSubmit={this.onSubmitForm}>
<input
ref={this.onRefInput}
value={this.state.value}
onChange={this.onChange}
/>
<button>클릭!!!</button>
</form>
<button>클릭!!!</button>
<div>{this.state.result}</div>
</>
);
}
}
module.exports = WordRelay;
* Hooks 사용
▶ 코드가 간결해짐(this 사용하지 않음)
const React = require("react");
const { useState, useRef } = React;
const WordRelay = () => {
const [word, setWord] = useState("제로초");
const [value, setValue] = useState("");
const [result, setResult] = useState("");
const inputRef = useRef(null);
const onSubmitForm = (e) => {
e.preventDefault();
if (word[word.length - 1] === value[0]) {
setResult("딩동댕");
setWord(value);
setValue("");
inputRef.current.focus();
} else {
setResult("땡");
setValue("");
inputRef.current.focus();
}
};
const onChange = (e) => {
setValue(e.target.value);
};
return (
<>
<div>{word}</div>
<form onSubmit={onSubmitForm}>
<input ref={inputRef} value={value} onChange={onChange} />
<button>클릭!!!</button>
</form>
<div>{result}</div>
</>
);
};
module.exports = WordRelay;
* controlled VS uncontrolled
- controlled
▶ 리액트에서 더 권장, value(state가 들어있음, setState로 value를 바꿔줌)와 onChange가 input에 존재
▶ input 요소의 onChange 콜백함수에서 setState를 통해 State가 업데이트됨
▶ 업데이트된 State는 랜더링을 통해 input의 value 속성으로 들어감
▶ 단점 : 각각의 input에 대한 useState와 Handler를 선언해야 함
- uncontrolled
▶ input의 원시적인 형태에 가까움, state를 직접 가지고 있지 않음
▶ useState가 아닌 HTML State로 관리됨
▣ State를 직접 가지고 있지 않기 때문에 기능적으로 많은 것이 닫혀있음
* 예시 참고 : https://mygumi.tistory.com/419
'과거 프로그래밍 자료들 > React' 카테고리의 다른 글
[웹 게임을 만들며 배우는 React] - 숫자야구(useState), 렌더링 문제 (0) | 2022.09.28 |
---|---|
(컴포넌트 분리 및 props) es modules may not assign module.exports or exports.*, use esm export syntax, instead: ./numberbaseball.jsx 문제 해결 (0) | 2022.09.27 |
[웹 게임을 만들며 배우는 React] - 웹팩 데브 서버, 핫 리로딩 (0) | 2022.09.27 |
[웹 게임을 만들며 배우는 React] - Hoonks, 웹팩 (0) | 2022.09.27 |
[웹 게임을 만들며 배우는 React] - 구구단 (0) | 2022.09.02 |