Skip to content
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

v1.1.1 #429

Merged
merged 13 commits into from
Oct 17, 2022
Merged

v1.1.1 #429

merged 13 commits into from
Oct 17, 2022

Commits on Oct 10, 2022

  1. [FE] issue387: 서버 응답 런타임에 타입 확인 (#401)

    * refactor: is<Type>함수 typeChecker로 통합
    
    * refactor: handlers 폴더로 묶기
    
    * feat: typeChecker 구현
    
    * feat: json 파일 수정
    
    * feat: handler 수정
    
    * feat: tag type check
    
    * feat: member type check
    
    * feat: link type check
    
    * feat: link-preview type check
    
    * feat: auth type check
    
    * feat: community & notice article type check
    
    * feat: review type check
    
    * feat: study, my study type check
    
    * feat: Owner type 수정
    
    * feat: axios response interceptor 수정
    
    아무 응답도 오지 않을 시 빈 string('')이 응답 데이터로 반환됨
    -> 명시적으로 null로 교체
    
    * refactor: TODO 주석 추가
    
    * refactor: checker 타입 수정 및 함수 위치 이동
    
    - 도메인에 맞게 이동
    
    * refactor: 타입 이름 변경 및 import 'type' 추가
    
    * refactor: axiosInstance interceptor 함수 분리
    
    * feat: util typeChecker axios 의존성 제거
    
    * refactor: my study 함수명 및 타입명 수정
    
    * feat: checkOptionalType과 checkType 합치기
    
    * feat: link preview 타입 수정
    
    * refactor: util typeChecker 수정
    
    * refactor: 상수 분리
    
    * feat: key 배열이 객체의 모든 key를 담고 있는지 확인
    
    * feat: object.hasOwnProperties -> Object.hasOwn
    
    - https://eslint.org/docs/latest/rules/no-prototype-builtins
    - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwn
    
    * fix: 라우팅 오류 수정
    
    * refactor: 상수 분리
    
    - USER_ROLE
    - CATEGORY_NAME
    - STUDY_STATUS
    
    * feat: checkType 함수 수정
    
    isNullOrUndefined -> isNull
    nan-noo authored Oct 10, 2022
    Configuration menu
    Copy the full SHA
    984a67a View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2022

  1. Configuration menu
    Copy the full SHA
    9c0fce4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58d8eb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0540c58 View commit details
    Browse the repository at this point in the history
  4. fix: api 타입 수정 (#409)

    - main page 스터디 목록
    - my study page 스터디 목록
    -> 타입 충돌 오류 수정
    nan-noo authored Oct 11, 2022
    Configuration menu
    Copy the full SHA
    240e02e View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Configuration menu
    Copy the full SHA
    df37033 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    51752f2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e980b9 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Configuration menu
    Copy the full SHA
    b041135 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2022

  1. [FE] issue419: 전체적인 버그 및 기능 수정 (#423)

    * fix: 스터디 상세 페이지 소개글 overflow시 가로 스크롤되도록 수정
    
    * fix: 글쓰기/미리보기 컴포넌트 overflow시 스크롤 되도록 수정
    
    * fix: subject tag validation 조건 추가
    
    - 한 개 이상을 선택해야 생성할 수 있도록 변경
    
    * feat: 누구나 스터디방 페이지에 접근할 수 있도록 수정
    
    - 상세 페이지 가입하지 않았거나 모집완료일 때 이동하기 버튼 보여주기
    - 스터디 방 페이지 접속시 Read만 가능하도록 수정
    
    * fix: maxMemberCount가 string 타입으로 전송되는 오류 수정
    
    * feat: 로그인 성공시 이전 페이지로 이동하도록 수정
    
    * fix: 스터디 종료 날짜보다 스터디 모집 마감 날짜가 이후인 오류 수정
    
    * feat: 스터디 수정/생성 submit 시 오류가 있으면 alert하도록 수정
    
    * test: history pop시 cypress CORS 에러 수정
    
    - 테스트 오류 원인: 로그인 페이지 접속 후 로그인에 성공하면 뒤 페이지로 이동하는데, cypress가 이 때문에 CORS에러를 발생시킴
    - 테스트 오류 해결: 로그인 페이지 접속하지 않고 액세스 토큰을 직접 설정
    
    * test: cypress 오류 수정
    nan-noo authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    f27443c View commit details
    Browse the repository at this point in the history
  2. fix: 401 에러 발생시 로그아웃 후 reload -> replace (#425)

    메인 페이지로 이동시킨다
    nan-noo authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    9ebefb6 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

  1. [FE] issue419: 스터디 방 페이지 전체 공개 (#427)

    * feat: user role, user info api 수정
    
    * feat: 로그인 관련 훅 수정
    
    - useAuth
    - useUserInfo
    - useUserRole
    
    enabled 옵션 변경
    
    * feat: 로그인 관련 훅 사용하고 있는 컴포넌트 수정
    
    * refactor: type과 상대경로 수정
    nan-noo authored Oct 16, 2022
    Configuration menu
    Copy the full SHA
    241a9a4 View commit details
    Browse the repository at this point in the history
  2. [FE] fix: 로그인 성공 후 헤더가 바뀌지 않는 오류 해결 (#428)

    * fix: 로그인시 헤더가 바뀌지 않는 문제 해결
    
    * refactor: eslint 적용
    nan-noo authored Oct 16, 2022
    Configuration menu
    Copy the full SHA
    efe168e View commit details
    Browse the repository at this point in the history