-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2단계 - 상세 정보 & UI/UX 개선하기] 윤생(이윤성) 미션 제출합니다. (#92)
* refactor: app component 태그 네이밍 변경 * feat: 무한 스크롤 구현 + 스로틀링 * feat: 업스크롤 버튼 구현 * feat: 모달창 데이터 받아오기 / 토글 기능 구현 * feat: 닫기버튼 기능 추가 * feat: 별점 기능 구현 * feat: 별점 css 및 마크업 구체화 * fix: 마지막 페이지에서 로딩하는 버그 해결 * feat: esc 키로 모달 닫을 수 있게 변경 * feat: 에러 문구 출력 * refactor: console.log 제거 * refactor: 리터럴 상수화 * feat: 모달 반응형 css * feat: 그리드 css 반응형에 맞춰 구현 * feat: 모달 반응형 구체화 * test: 모달창 렌더링 테스트 * fix: 잘못된 카테고리 요소가 렌더링되는 버그 해결 * fix: 잘못된 액션 인자 전달 수정
- Loading branch information
Showing
11 changed files
with
537 additions
and
52 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"adult": false, | ||
"backdrop_path": "/a2tys4sD7xzVaogPntGsT1ypVoT.jpg", | ||
"belongs_to_collection": null, | ||
"budget": 35000000, | ||
"genres": [ | ||
{ "id": 53, "name": "스릴러" }, | ||
{ "id": 35, "name": "코미디" }, | ||
{ "id": 27, "name": "공포" }, | ||
{ "id": 80, "name": "범죄" } | ||
], | ||
"homepage": "", | ||
"id": 804150, | ||
"imdb_id": "tt14209916", | ||
"original_language": "en", | ||
"original_title": "Cocaine Bear", | ||
"overview": "1985년 마약 밀매업자의 비행기 추락 사고로 인해 비행기에 실려있던 코카인이 조지아주 채터후치 국유림에 떨어지고 코카인을 손에 넣기 위한 마약상들과 관광객들이 코카인을 먹은 흑곰에 의해 처참하게 죽임을 당한다는 내용의 실화를 바탕으로 한 영화", | ||
"popularity": 4435.857, | ||
"poster_path": "/gOnmaxHo0412UVr1QM5Nekv1xPi.jpg", | ||
"production_companies": [ | ||
{ | ||
"id": 33, | ||
"logo_path": "/8lvHyhjr8oUKOOy2dKXoALWKdp0.png", | ||
"name": "Universal Pictures", | ||
"origin_country": "US" | ||
}, | ||
{ | ||
"id": 12365, | ||
"logo_path": null, | ||
"name": "Brownstone Productions", | ||
"origin_country": "US" | ||
}, | ||
{ | ||
"id": 77973, | ||
"logo_path": null, | ||
"name": "Lord Miller Productions", | ||
"origin_country": "US" | ||
} | ||
], | ||
"production_countries": [ | ||
{ "iso_3166_1": "IE", "name": "Ireland" }, | ||
{ "iso_3166_1": "US", "name": "United States of America" } | ||
], | ||
"release_date": "2023-02-22", | ||
"revenue": 70968453, | ||
"runtime": 95, | ||
"spoken_languages": [ | ||
{ "english_name": "English", "iso_639_1": "en", "name": "English" } | ||
], | ||
"status": "Released", | ||
"tagline": "", | ||
"title": "첫번째 테스트", | ||
"video": false, | ||
"vote_average": 6.554, | ||
"vote_count": 493 | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
</head> | ||
<body> | ||
<app-component></app-component> | ||
<modal-component></modal-component> | ||
</body> | ||
</html> |
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
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
Oops, something went wrong.