-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[6팀 방재현] [Chapter 1-1] 프레임워크 없이 SPA 만들기 #50
Open
CRITICBANGGU
wants to merge
21
commits into
hanghae-plus:main
Choose a base branch
from
CRITICBANGGU:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- getLocalStorage(key) : key값에 따른 localStorage value return - setLocalStorage(key,value) : key,value를 받아 localStorage에 저장 - removeLocalStorage(key) : key값을 받아 localStorage 요소 제거
- userInfo -> user
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
과제 체크포인트
기본과제
1) 라우팅 구현:
2) 사용자 관리 기능:
3) 프로필 페이지 구현:
4) 컴포넌트 기반 구조 설계:
5) 상태 관리 초기 구현:
6) 이벤트 처리 및 DOM 조작:
7) 라우팅 예외 처리:
심화과제
1) 해시 라우터 구현
2) 라우트 가드 구현
3) 이벤트 위임
과제 셀프회고
기술적 성장
여러번 사용해봤지만, 정확한 명칭과 개념을 알지 못하고 '그냥 이렇게 하니깐','예시 코드에 있던데?' 라는 생각으로 개발을 했습니다. 자세하게 찾아보고 공부하니깐 개발이 더 재미있었습니다~!
코드 품질
매직넘버가 없어서 잘 읽히는 코드를 만들고 싶었습니다. 그래서 ROUTE_DATA 배열에 접근할 때, 사용할 index를 따로 관리 했습니다. 코드가 잘 읽히는(개인적인 생각) 코드인 것 같긴한데... 로직 부분에서는 과연 잘 읽히는 것인가? 에 대한 물음표는 아직 남아있습니다..!
학습 효과 분석
과제 피드백
잘 보면 다 찾을 수는 있지만.. 테스트 코드에 있는 요구조건이 있어 조금 아주조금... 헷갈렸습니다..! 앞으로는 과제를 할 때, 테스트 코드를 먼저 보고 해보겠습니다!
(ex. 로그인이 되지 않은 상태에서 "/profile" 경로로 접근하면, 로그인 페이지로 리다이렉션 된다.)
리뷰 받고 싶은 내용
navAction
함수 내에서e.target.id
가"logout"
일 때 localStorage에서 user정보 사라지고/login
으로 navigate 처리되도록 작성하였습니다. 다만, run 시켜 제가 테스트를 하면 원하는 순서로 동작하는데, 이 로직이 테스트 코드에서는 동작하지 않는 이유는 무엇인가요?! 추가로 어떻게 해결을 해야할지 방향을 모르겠습니다..!문제 상황
main.js
에서DOMContentLoaded
이벤트가 발생하면, body에 click 이벤트를 위임하여navAction(e)
가 동작하도록 설정하였습니다.navAction
함수는 클릭 이벤트가 발생했을 때, 클릭된 대상(e.target
)의 id를 확인하여logoutAction
함수를 호출합니다.id="logout"
을 가진<a>
태그를 클릭해도logoutAction
함수가 호출되지 않습니다.대처
render
함수 실행 시,id="logout"
을 가진 요소를 찾아와 있으면 event를 추가해줬습니다.문제라고 생각한 이유
main.js
에서 이미 같은 동작을 한번 했는데, render가 될 때, 또 event를 연결시킨다는게 중복된 코드라고 생각합니다.id='logout'
인 button은 없습니다.)logoutButton이 존재 하는지 (굳이)비교해줘야 합니다.
현재 작성된 Layout 컴포넌트의 확장성을 높일 수 있는 방법이 무엇이 있을까요?
element.view()
로 렌더링을 하는가?view()
만 props로 받아오면 되는 것 아닌가?