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

Release 0.2 #96

Merged
merged 107 commits into from
Nov 28, 2019
Merged

Release 0.2 #96

merged 107 commits into from
Nov 28, 2019

Commits on Nov 23, 2019

  1. [Modified] api 요청 주소 변경

    api 요청은 모두 /api 경로를 거치도록 리버스 프록시가 설정되었기 때문에
    라우팅 주소가 변경되었음
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    a7ecbaf View commit details
    Browse the repository at this point in the history
  2. [Modified] 클라이언트에서 api 서버 주소를 /utils/constants.ts 파일에서 관리하도록 변경

    api 주소를 constants.ts 로 넣어놨고
    배포용 api 서버 주소는 보안을 위해 .env 파일에서 관리함
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    154bd80 View commit details
    Browse the repository at this point in the history
  3. [Modified] 유저 인터페이스 수정

    thumbnailUrl, originUrl을 optional 로 수정함.
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    ded1636 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    71049d9 View commit details
    Browse the repository at this point in the history
  5. [Modified] seed 데이터 변경

    이미지 데이터의 creator가 특정 유저의 oid 값을 갖도록 수정함
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    640b286 View commit details
    Browse the repository at this point in the history
  6. [Add] image 서비스의 get10Images 함수가 creator필드를 populate 해서 가져오도록 변경

    메인에 보여줄 카드뷰에 creator를 표시해주기위해 populate 기능 추가함
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    b4c5e24 View commit details
    Browse the repository at this point in the history
  7. [Modified] 이미지 url 변경

    object storage의 원본이미지가 아닌 image optimizer로 압축된 이미지 Url을 가져오도록 설정
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    e6ccdaa View commit details
    Browse the repository at this point in the history
  8. [Add] 통일해서 사용할 수 있는 response 함수, 에러처리

    서버에서 보내는 response를 일관된 형식으로 사용할 수 있도록 utils/response.ts 작성
    response(res, {data}) 형태로 사용 가능
    
    에러가 난 경우는 exporess error handler에서 처리함
    에러 메시지는 utils/messages.ts 에 넣어두고 import 해서 사용
    
    error handler에서 response 함수를 리턴하면 마지막에는 status code를 200으로 바꾸어 응답을 내려준다.
    대신 브라우저에서는 status code 200을 받기 때문에 try-catch로 처리가 불가능 함.
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    8c3ad70 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    98eecc7 View commit details
    Browse the repository at this point in the history
  10. [Add] global style - add colors

    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    a32c8a6 View commit details
    Browse the repository at this point in the history
  11. [Add] global styles - add box-shadow

    전역에서 사용가능하도록 box-shadow 갑 세팅
    Junow committed Nov 23, 2019
    Configuration menu
    Copy the full SHA
    8cb0b72 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    693842d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    1b618df View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2019

  1. Configuration menu
    Copy the full SHA
    00b3b7a View commit details
    Browse the repository at this point in the history
  2. [Modified] useFetch에 Generic Type을 추가함

    useFetch가 다루는 데이터에 대한 의존성을 없애기 위해 Generic Type 사용하도록 변경
    Junow committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    083db0a View commit details
    Browse the repository at this point in the history
  3. [Modified] 코드리뷰 지적사항 반영

    삼항연산자 사용으로 코드 가독성 높임
    Junow committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    0677223 View commit details
    Browse the repository at this point in the history
  4. [Modified] 코드리뷰 지적사항 반영

    구조분해 할당사용
    Junow committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    323ed8c View commit details
    Browse the repository at this point in the history
  5. [Modified] 헤더 너비 조정

    Junow committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    abc96dd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1865f7a View commit details
    Browse the repository at this point in the history
  7. [Add] 배경화면 탭 추가

    Junow committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    fcfd528 View commit details
    Browse the repository at this point in the history
  8. [Modified] 잘못된 파일명을 변경함

    /src/upload --> /src/UploadMain 으로 변경
    /UploadMain/index.tsx
    /UploadMain/style.tsx
    식으로 모든 업로드 관련 컴포넌트를 위와같은
    형식으로 분리함
    jominjimail committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    5887e9e View commit details
    Browse the repository at this point in the history
  9. [Modified] styled component에 있는 className 삭제

    스타일 컴포넌트를 사용하면 className으로 판별해서 스타일을 먹일필요
    없음
    jominjimail committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    6d17c95 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2019

  1. Configuration menu
    Copy the full SHA
    1bff8c6 View commit details
    Browse the repository at this point in the history
  2. Feature/jmj/review feedback (#86)

    Feature/jmj/review feedback
    Junow authored Nov 25, 2019
    Configuration menu
    Copy the full SHA
    9a7cf9f View commit details
    Browse the repository at this point in the history
  3. [Modified] router 관련 이슈

    Junow committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    3f09022 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0d7066f View commit details
    Browse the repository at this point in the history
  5. api 주소관리 관련 (#85)

    api 주소관리 관련
    jominjimail authored Nov 25, 2019
    Configuration menu
    Copy the full SHA
    6a43d6f View commit details
    Browse the repository at this point in the history
  6. [refactor] login2

    style 파일을 분리함
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    5f8d432 View commit details
    Browse the repository at this point in the history
  7. [refactor] login2

     theme에 칼라 추가 및 theme 파일 활용
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    826c430 View commit details
    Browse the repository at this point in the history
  8. [feature] login 성공시 홈으로 리다이렉트

    useState 활용 ( https://velog.io/@velopert/use-typescript-and-redux-like-a-pro) 참고
    
    리덕스의 상태값 state.login의 userOid 값을 확인해서
    있으면 홈으로 리다이렉트,,
    로그인 페이지 자체에서 이 값을 확인해서 리다이렉트하도록함
    로그인되어있을 경우 로그인 페이지로 못들어오게 됨
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    3b721a3 View commit details
    Browse the repository at this point in the history
  9. [fix] 라우팅 구조 제안

    라우팅 구조를 이렇게 하는거 어떠신가요??
    작동하는듯 보입니다
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    5c779e3 View commit details
    Browse the repository at this point in the history
  10. [fix] 로그인 -> 로그인컨테이너

    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    59d49d5 View commit details
    Browse the repository at this point in the history
  11. [Modified] 시드 데이터 변경

    images, workImgeas, User 참조를 건 상태로 seed 데이터를 줄 수 있도록 변경함
    Junow committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    3dfccdf View commit details
    Browse the repository at this point in the history
  12. [feature] login/whoAmI, loing/authUser API 추가

    jwt토큰값을 통해 유저의 정보를 얻는 함수,
    jwt토큰값을 검증하는 함수를 분리하고 이를 API로 만듬
    
    사용자의 정보가 자주 오가지 않도록, 단순 검증하는 함수를
    분리함
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    d4ead01 View commit details
    Browse the repository at this point in the history
  13. [Modified] 이미지 업로드시 이미지와 배경화면을 선택할 수 있음

    이미지는 image이고 배경화면은 wallpaper
    2개의 코드는 비슷한 부분이 많음
    jominjimail committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    0ce9b3f View commit details
    Browse the repository at this point in the history
  14. [Modified] 이미지 업로드시 이미지와 배경화면을 선택할 수 있음

    각각 같은 버킷의 다른 폴더로 들어감
    image -> (.../bucketName/image)
    wallpaper -> (.../bucketName/wallpaper)
    uuid()로 파일 이름을 생성하는 로직을 백엔드로 이동
    -> uuid는 백과 object storage사이에서만 필요한 정보,
      프론트가 굳이 신경쓸 필요는 없다고 판단함.
    jominjimail committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    dfda2f1 View commit details
    Browse the repository at this point in the history
  15. [Fix] work_image 컬렉션에 잘못 된 값이 들어감

    getUrl controller 가 files.originalname 을 리턴하는데
    이값은 "image.png" 임 object storage의 key값이 아님
    내가 리턴 받아야 하는 값은 uuid 로 생성한 고유한 key값
    이므로 file.key를 return 해주는걸로 변경함
    jominjimail committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    7198dc6 View commit details
    Browse the repository at this point in the history
  16. [Add] 이미지 업로드시 image, wallpaper 컬렉션에 add 됨

    우선work_image 컬렉션에 add 한 뒤
    해당 documnet 의 Object Id 값을 return 받아
    image와 wallpaper 각각의 컬렉션에 add 함
    jominjimail committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    59b172c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    d02da8f View commit details
    Browse the repository at this point in the history
  18. [Modified] 이미지 업로드 선택시 클릭할 수 있는 박스 css수정

    이미지 , 배경화면, 글쓰기 를 Box 컴포넌트로 관리
    jominjimail committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    c3b581b View commit details
    Browse the repository at this point in the history
  19. [feat] 회원가입 링크 추가

    로그인 페이지 밑에 링크 컴포넌트로 회원가입 페이지로 이동 가능
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    9c284e0 View commit details
    Browse the repository at this point in the history
  20. [feature] 회원가입 페이지

    윤곽 잡기
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    f388fb2 View commit details
    Browse the repository at this point in the history
  21. [feat] 로그인 상태 적용 헤더

    로그인 상태를 컨택스트로 전달함
    
    컨텍스트 코드 리펙터링 필요
    슈우웅 committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    1be8393 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2019

  1. Configuration menu
    Copy the full SHA
    b836bf9 View commit details
    Browse the repository at this point in the history
  2. Feature/jmj/uploadimage update (#89)

    Feature/jmj/uploadimage update
    Junow authored Nov 26, 2019
    Configuration menu
    Copy the full SHA
    3e3117e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90c059a View commit details
    Browse the repository at this point in the history
  4. Feature/ljh/works detail (#90)

    Feature/ljh/works detail
    jominjimail authored Nov 26, 2019
    Configuration menu
    Copy the full SHA
    fe2be80 View commit details
    Browse the repository at this point in the history
  5. [feature] 로그인 리듀서 변경

    setuser 와 unsetuser로 액션을 변경
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    a9833a7 View commit details
    Browse the repository at this point in the history
  6. [feature] 로그인 리듀서 적용

    기존에 선언된 리듀서를 useSelector를 통해 활용함
    로그인 페이지 들어가기전에 로그인 여부 체크
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    e579fbb View commit details
    Browse the repository at this point in the history
  7. [fix] 헤더 로그인 적용 다시 빼기

    리듀서 활용의 일관성을 위해, 다른 방식으로 리듀서를
    적용한 코드 제거, 헤더는 추후에 준호님이 하기로 함
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    e03f4a3 View commit details
    Browse the repository at this point in the history
  8. [feat] 라우터 제안

    로그인 회원가입 페이지에서 헤더가 안나오기
    홈 및 피트 컨테이너에서의 라우팅, 뎁스가 파일별로
    동일하도록 하기
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    f7e24a2 View commit details
    Browse the repository at this point in the history
  9. [Chore] 엉망 리듀서 삭제

    로그인 관련 작업중, 엉망으로 다시 짠 리듀서
    삭제함 .. 기존 리듀서의 상태 사용방법을 알지 못해서
    만들어진  리듀서임
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    fbd2abc View commit details
    Browse the repository at this point in the history
  10. Merge branch 'develop' into feature/sch/login_real

    SuphremeCH authored Nov 26, 2019
    Configuration menu
    Copy the full SHA
    5a84421 View commit details
    Browse the repository at this point in the history
  11. Feature/sch/login real (#91)

    Feature/sch/login real
    Junow authored Nov 26, 2019
    Configuration menu
    Copy the full SHA
    42fe0fa View commit details
    Browse the repository at this point in the history
  12. [Modified] db에 들어가는 url fomat 변경

    이미지를  object storage 에 push 하기 위해 key형태를
    endpoint/bucketName/images/12341234.png
    위와 같이 지정했음 db에 url 를 저장하는 format을
    
    images/12341234.png --> 12341234.png 로 변경
    --> type 인자를 통해 images를 쉽게 유추할 수 있어서
    jominjimail committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    1f3830b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3be4869 View commit details
    Browse the repository at this point in the history
  14. [Modified] 파일 경로를 떼고 파일명만 보냄

    object strage의 key값이 /파일경로/파일명.png형태인데
    파일경로를 제외한걸 return 보내기로 함
    jominjimail committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    dfb79b6 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    a2e8c4a View commit details
    Browse the repository at this point in the history
  16. [Modified] 이미지 피드 가져오는 기능 추가

    images 콜렉션에서 creator, owner 를 populate 해서 좋아요수, 댓글 수 등을 가져옴
    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    3138792 View commit details
    Browse the repository at this point in the history
  17. [Feat] 업로드 선택 화면 만들기 #68

    업로드 버튼 클릭시 보이는 이미지, 음악 선택할 수 있는
    선택 화면 만듦
    jominjimail committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    645d6ee View commit details
    Browse the repository at this point in the history
  18. [Feature] 카드 클릭시 디테일 페이지로 이동

    get /api/feed/images/:id
    id 로 workImage를 하나 찾아 준다.
    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    6a76e5a View commit details
    Browse the repository at this point in the history
  19. [feature] 쿠키를 활용함

    app.tsx에서 쿠키를 활용함
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    ce26db1 View commit details
    Browse the repository at this point in the history
  20. [feature] 사용자 상태 가져오기, 기능 준비

    typescript조건을 맞춘 껍데기
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    95b8918 View commit details
    Browse the repository at this point in the history
  21. [Modified] 라우터 구조 변경

    /
    /home
        /detail/:id
        /works
        /wallpaper
        /music
    /login
    /join
    
    match props 으로 주소 변경에 능동적으로 대처 가능
    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    d63d545 View commit details
    Browse the repository at this point in the history
  22. [Modified] 이미지 디테일 페이지 주소 변경

    home/detail/:id --> home/detail-image/:id
    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    d8871db View commit details
    Browse the repository at this point in the history
  23. [feature] makeUserState함수 구현

    서버로부터 쿠키에 저장된 토큰을 검증받고, 사용자 정보를
    반환받아, 사용자 정보를 리듀스의 state타입에 맞는 객체로 만들어
    준다
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    b5dfe76 View commit details
    Browse the repository at this point in the history
  24. [Feature] work-detail 디자인

    글쓴이, 제목, 조회수, 날짜 나타내 주었음.
    추후에 데이터 저장할 떄 timestamp 같이 저장해서 불러와야함
    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    37c1934 View commit details
    Browse the repository at this point in the history
  25. [feature] 받아온 UserState를 가지고 리덕스의 상태 변화

    LoginUser의 객체를 바꿔줌
    슈우웅 committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    0ff3c8f View commit details
    Browse the repository at this point in the history
  26. [Add] 좋아요버튼

    Junow committed Nov 26, 2019
    Configuration menu
    Copy the full SHA
    da683f2 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    ca653e4 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2019

  1. [feature] Login 리듀서에서 login 액션 추가

    로그인 버튼을 클릭한 후, 로그인 성공시 상태변화를 일으켜
    메인부터 다시 로드 되도록 할 필요가 있음
    
    로그인 성공시 반환되는 값은 oid값 뿐이므로,login 액션은
    상태에서 isLogin값만 변화시킴
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    d646238 View commit details
    Browse the repository at this point in the history
  2. [Fix] 크롬이 더이상 URL.createObjectURL() 함수를 지원하지 않아 오류가

    생김
    
    Chrome browsers are disabling support for it (URL.createObjectURL)
    그래서 FileRead()함수로 대체
    jominjimail committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    4d0ff12 View commit details
    Browse the repository at this point in the history
  3. [Feature] work-detail 페이지 디자인 80% 완성

    아직 더미데이터가 완벽하지 않아 댓글 표시를 제대로 하지 못
    댓글에 owner oid 넣어야
    로그인 했을때 안했을떄 렌더링 되는 정보 분리해줘야함 ex) 댓글은 로그인 후 작성 가능합니다.
    Junow committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    349d6b2 View commit details
    Browse the repository at this point in the history
  4. [fix] 무한 패칭 문제 해결

    로그인이 되어있는데 이름값이 없는 경우만 유저
    상태정보를 패칭하도록 바꿈
    
    한번만 패칭
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    86bc2df View commit details
    Browse the repository at this point in the history
  5. [fix] 서버 API 반환값 변경

    util의 response를 반환해서 일관성을 맞춤
    변경된 반환값에 맞춰 로그인 기능 수정
    
    일관성!!
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    0c01252 View commit details
    Browse the repository at this point in the history
  6. [feature] signup API의 reponse 유틸 활용하도록 변경

    일관성!
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    5463dee View commit details
    Browse the repository at this point in the history
  7. [fix] 무한 패칭 문제 해결(빠진 코드)

    커밋 실수 ㅠㅠ
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    69bcaff View commit details
    Browse the repository at this point in the history
  8. [feature] 회원가입 성공 시 리다이렉트

    성공시 로그인 페이지로
    실패시 회원가입 페이지 그대로 있음
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    b83490d View commit details
    Browse the repository at this point in the history
  9. [Chore] 콘솔 로그 파일 없애기

    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    a903dad View commit details
    Browse the repository at this point in the history
  10. [Feat] 이미지 업로드 상세 페이지 화면 만들기 #70

    제목을 입력하지 않았을때 제목을 입력하라는 경고창을 띄움
    경고창은 /commons/Popup_wanr 으로 분리
    보라색 버튼로 basics/PURPLE_Button으로 분리
    jominjimail committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    bd97b42 View commit details
    Browse the repository at this point in the history
  11. [Feat] 댓글 추가기능

    댓글 추가 -> 데이터베이스 업데이트 -> 업데이트된 결과 바로 확인가능
    
    useRef로 input을 비워주었음
    
    useFetch에서 setData 함수를 리턴하도록 수정함 -> 댓글이 추가됐을 때 페이지를 리렌더링 하여 추가된 댓글을 렌더링 해주기 위함임
    Junow committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    7555b38 View commit details
    Browse the repository at this point in the history
  12. [refactor] jwt 미들웨어 추가 및 구조 개선

    jwt 토큰을 검증하고 디코드 하는 미들웨어를 만들고
    다른 api들이 이 미들웨어를 활용하도록 구조를 개선함
    
    토큰을 검증하고 디코드하는 과정을 공유하기 쉬움
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    43fbefb View commit details
    Browse the repository at this point in the history
  13. [feature] oauth 링크 실제 로그인 페이지에 적용

    서버에서 oauth 버튼을 불러오는 API 삭제
    oauth 적용
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    2e6df85 View commit details
    Browse the repository at this point in the history
  14. [refactor] 로그인 관련 훅 개선

    useEffect 안쪽에서 비동기적으로 일이 질행되도록 변경함
    메인 화면 로딩 속도가 개선됨
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    218c36c View commit details
    Browse the repository at this point in the history
  15. [fix] 제거된 API 관련 에러 수정

    없어진 함수를 import 하는 문제
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    cb36ca2 View commit details
    Browse the repository at this point in the history
  16. [fix] 로그인 상태 판별 에러 수정

    반환받은 객체가 빈 객체일때 빈객체를
    false값으로 간주하고 코딩해서 생긴 에러
    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    08b913f View commit details
    Browse the repository at this point in the history
  17. [etc] package, package-lock

    슈우웅 committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    c41e57e View commit details
    Browse the repository at this point in the history
  18. [Refactor] 여러곳에서 쓰일 수 있는 기능들 분리

    시간변환, axios 요청등을 다양하게 활용가능하기 때문에 utils 폴더에서 따로 관리한다.
    Junow committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    b9a2eba View commit details
    Browse the repository at this point in the history
  19. [Refactor] WorkDetail의 로직과 뷰를 분리

    점점 비대해지는 WorkDetail 을 유지보수하기 힘들 것 같아서
    WorksDetailContainer를 만듬 -> 로직
    WorkDetail -> 뷰만 담당
    
    추후 WorkDetail을 분리하여 리렌더링되는 범위또한 조절 가능
    Junow committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    53cf8ba View commit details
    Browse the repository at this point in the history
  20. [Chore] console.log 삭제

    Junow committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    0c9c239 View commit details
    Browse the repository at this point in the history
  21. [Feat] 이미지 업로드 상세 페이지 화면 만들기 #70

    업로드 상세 페이지는 팝업 창을 띄워 옵션을 선택하게함
    tag와 user oid를 추가해햐함
    jominjimail committed Nov 27, 2019
    Configuration menu
    Copy the full SHA
    0d33769 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2019

  1. [Add] 업로드 선택 화면 만들기 #68

    업로드 선택 화면 하단에 경고 메시지란을 추가함
    jominjimail committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    559b158 View commit details
    Browse the repository at this point in the history
  2. [Add] 댓글 입력창에 대한 에러처리 추가

    댓글을 5자 미만으로 썼을 때 alert 를 띄워줌
    Junow committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    7e2f94a View commit details
    Browse the repository at this point in the history
  3. [Chore] 코드정리

    Junow committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    78173a8 View commit details
    Browse the repository at this point in the history
  4. [feature] 로그인 상태에 맞게 헤더 변경

    로그인 되면 헤더가 변경됨
    슈우웅 committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    330cb81 View commit details
    Browse the repository at this point in the history
  5. [chore] Oauth관련 상수 클라이언트에 추가

    슈우웅 committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    8ea07fe View commit details
    Browse the repository at this point in the history
  6. [Modified] 오타 수정

    theme.PALE_TEXT,
    theme.WARN_GRAY
    jominjimail committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    8eca25a View commit details
    Browse the repository at this point in the history
  7. [Modified] index.tsx에서 interface 정의한 변수를 type.ts 로 분리

    index.tsx의 코드수가 훨씬 줄어들었다. handler 함수도 뺄수 있다는데
    좀 더 고민해봐야함
    jominjimail committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    7c33804 View commit details
    Browse the repository at this point in the history
  8. Feature/jmj/upload front page (#92)

    Feature/jmj/upload front page
    Junow authored Nov 28, 2019
    Configuration menu
    Copy the full SHA
    fcdfce2 View commit details
    Browse the repository at this point in the history
  9. [Chore] 코드정리

    Junow committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    5d6d47a View commit details
    Browse the repository at this point in the history
  10. Merge branch 'develop' of https://github.com/connect-foundation/2019-18

    … into feature/ljh/works-detail
    Junow committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    6d45a68 View commit details
    Browse the repository at this point in the history
  11. [Feat] 작품 디테일 페이지 디자인, 댓글 (#93)

    [Feat] 작품 디테일 페이지 디자인, 댓글
    jominjimail authored Nov 28, 2019
    Configuration menu
    Copy the full SHA
    b176022 View commit details
    Browse the repository at this point in the history
  12. [refactor] useUserState 훅을 만들어 app.tsx를 정리함

    app.tsx 를 간결하게
    슈우웅 committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    13d5bfd View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e049133 View commit details
    Browse the repository at this point in the history
  14. Feature/sch/login page2 (#94)

    Feature/sch/login page2
    Junow authored Nov 28, 2019
    Configuration menu
    Copy the full SHA
    f5869be View commit details
    Browse the repository at this point in the history
  15. [fix] customType 더하기

    슈우웅 committed Nov 28, 2019
    Configuration menu
    Copy the full SHA
    fcdb29c View commit details
    Browse the repository at this point in the history
  16. Fix - custom type을 까먹어서 죄송합니다. (#95)

    Fix - custom type을 까먹어서 죄송합니다.
    jominjimail authored Nov 28, 2019
    Configuration menu
    Copy the full SHA
    561aefa View commit details
    Browse the repository at this point in the history