[20220617 F]

devbit4 [front-end developer]·2022년 6월 17일
0

TIL

목록 보기
69/163

오늘은 (6) 월 (17) 일 / 날씨: ()

한줄:


💼 1) WORK & CODE REVIEW

8 to 17

✍️ 소스코드

  • API 테스트

    	공통코드 value 여쭤보기...!
    	백엔드 부장님 휴가가셔서..잠깐 스톱😅

💻 2) ALGORITHM & STUDY

Every Morning / Every Evening

✍️ 리액트

    const onDragEnd = (info) =>{

    const {destination,draggableId,source} =info;
    
    if(!destination) return;
    //source board 와 destination board 가 같은지 체크
    if(destination?.droppableId === source.droppableId{
    //same board movement. 같은 보드 내 움직임
    	setToDos((allBoards)=>{
        	const boardCopy = [...oldToDos[source.droppableId]];
            boardCopy.splice(source.index, 1);
            boardCopy.splice(destination?.index,0,draggableId);
            return {...allBoards, [source.droppableId]: boardCopy}
        
        })
        }
    //different board movement (cross board movement) 다른 보드 간 움직임
    if(destination.droppableId !==source.droppableId){
    	setToDos((allBoards)=>{
        	const sourceBoard = [...allBoards[source.droppableId]];
            const destinationBoard= [...allBoards[destination.droppableId]];
            sourceBoard.splice(source.index,1);
            destinationBoard.splice(destination?.index,0,draggableId);
            return {...allBoards, [source.droppableId]: sourceBoard}, [destination.droppableId]: destinationBoard}
            
        
        
        })
        
    }
    

🆎🎾 3) ENGLISH/ GERMAN / TENNIS / SWIMMING

Monday/ Wednesday(Tuesday)/ Thursday (Clarisse랑 날짜 조정하기)
Tuesday / Thursday 21 to 22
Saturday 20 to 22


📌 4) ETC (READING/ ECONOMY/ FRIENDS)

Free time


6) TODO & QUESTIONS


❤️ 6월 GOALS

  • notion week plan 루틴루틴루틴
  • 여유생기면 일기말고 칼럼형태?
  • 마이 프로젝트 시간 확보하기
  • 질문질문
  • 수영 다시하게 되어 행복🐬
  • 잔디 좀 심어볼까
  • 알고리즘 공부.....ㅇㅅㅇ
profile
제대로 꾸준하게 / 블로그 이전 => https://dailybit.co.kr

0개의 댓글