Component Lifecycle

OwlSuri·2022년 4월 4일
0
  1. 그리기
    => render

  2. 그리고 난 뒤
    => componentDidMount

  3. 그리고 난 뒤 변경되었을 때
    => componentDidUpdate

  4. 그리고 난 뒤 사라질때
    => componentWillUnmount

    import { Component,createRef } from "react";
    import Router from 'next/router'
    interface IState{
       count:number
    }
    export default class CounterPage extends Component {
       inputRef = createRef<HTMLInputElement>();
       state = {
           count: 0,
       }
       componentDidMount(){
           console.log("마운트됨")
           this.inputRef.current?.focus()
        // 포커스 깜빡깜빡
       }
    
       componentDidUpdate(){
           console.log("수정되고 다시그려짐")
       }
    
       componentWillUnmount(){
           console.log("컴포넌트 사라짐")
           // 채팅방 나가기
           // api 요청
       }
    
       onClickCounter = () => {
           console.log(this.state.count)
           this.setState((prev:IState) =>({
               count: prev.count + 1,
           }))
       }
       onClickMove = () => {
           Router.push("/")
       }
    
       render(){
           return(
               <div>
                   <input type="text" ref={this.inputRef}/>
                   <div>현재카운트 : {this.state.count}</div>
                   <button onClick={this.onClickCounter}>카운트 올리기!!</button>
                   <button onClick={this.onClickMove}>나가기!!</button>
               </div>
           ) 
       }
    }

이 클래스형 컴포넌트를 함수형 컴포넌트로 바꾸면?
https://velog.io/@owlsuri/Component-LifeCycle

profile
기억이 안되면, 기록을 -

0개의 댓글