This commit is contained in:
haerong22
2022-09-19 02:47:08 +09:00
9 changed files with 532 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
* {
margin: 0;
}
.app {
background: #111;
}

View File

@@ -1,12 +1,36 @@
import requests from "./api/requests";
import "./App.css";
import Banner from "./components/Banner";
import Footer from "./components/Footer";
import Nav from "./components/Nav";
import Row from "./components/Row";
const App = () => {
return (
<div className="App">
<div className="app">
<Nav />
<Banner />
<Row
title="NETFLIX ORIGINALS"
id="NO"
fetchUrl={requests.fetchNetflixOriginals}
isLargeRow
/>
<Row title="TRANDING NOW" id="TN" fetchUrl={requests.fetchTrending} />
<Row title="TOP RATED" id="TR" fetchUrl={requests.fetchTopRated} />
<Row
title="ACTION MOVIES"
id="AM"
fetchUrl={requests.fetchActionMovies}
/>
<Row
title="COMEDY MOVIES"
id="=CM"
fetchUrl={requests.fetchComedyMovies}
/>
<Footer />
</div>
);
};

View File

@@ -0,0 +1,107 @@
import React from "react";
import styled from "styled-components";
const Footer = () => {
return (
<FooterContainer>
<FooterContent>
<FooterLinkContainer>
<FooterLinkTitle>넷플릭스 대한민국</FooterLinkTitle>
<FooterLinkContent>
<FooterLink href="https://help.netflix.com/ko/node/412">
넷플릭스 소개
</FooterLink>
<FooterLink href="https://help.netflix.com/ko/node/412">
고객 센터
</FooterLink>
<FooterLink href="https://help.netflix.com/ko/node/412">
미디어 센터
</FooterLink>
<FooterLink href="https://help.netflix.com/ko/node/412">
이용 약관
</FooterLink>
</FooterLinkContent>
<FooterDescContainer>
<FooterDescRights>@ Netflix Rights Reserved.</FooterDescRights>
</FooterDescContainer>
</FooterLinkContainer>
</FooterContent>
</FooterContainer>
);
};
const FooterContainer = styled.div`
display: flex;
justify-content: center;
align-items: center;
padding: 40px 0;
border-top: 1px solid rgb(25, 25, 25);
width: 100%;
position: relative;
z-index: 100;
@media (max-width: 768px) {
padding: 20px 20px;
padding-bottom: 30px;
}
`;
const FooterContent = styled.div``;
const FooterLinkContainer = styled.div`
width: 500px;
@media (max-width: 768px) {
width: 100%;
}
`;
const FooterLinkTitle = styled.h1`
color: gray;
font-size: 17px;
`;
const FooterLinkContent = styled.div`
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 35px;
@media (max-width: 768px) {
margin-top: 26px;
}
`;
const FooterLink = styled.a`
color: gray;
font-size: 14px;
width: 110px;
margin-bottom: 21px;
text-decoration: none;
&:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
margin-bottom: 16px;
}
`;
const FooterDescContainer = styled.div`
margin-top: 30px;
@media (max-width: 768px) {
margin-top: 20px;
}
`;
const FooterDescRights = styled.h2`
color: white;
font-size: 14px;
text-align: center;
`;
export default Footer;

View File

@@ -29,3 +29,14 @@
width: 30px;
object-fit: contain;
}
.nav__input {
position: fixed;
left: 50%;
transform: translate(-50%, 0);
background-color: rgba(0, 0, 0, 0.582);
border-radius: 5px;
color: white;
padding: 5px;
border: none;
}

View File

@@ -0,0 +1,160 @@
.row {
margin-left: 20px;
color: white;
}
h2 {
padding-left: 20px;
}
.slider {
position: relative;
}
.slider__arrow-left {
background-clip: content-box;
padding: 20px 0;
box-sizing: border-box;
transition: 400ms all ease-in-out;
cursor: pointer;
width: 80px;
z-index: 1000;
position: absolute;
left: 0;
top: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
visibility: hidden;
}
.slider__arrow-right {
padding: 20px 0;
background-clip: content-box;
box-sizing: border-box;
transition: 400ms all ease-in-out;
cursor: pointer;
width: 80px;
z-index: 1000;
position: absolute;
right: 0;
top: 0;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
visibility: hidden;
}
.arrow {
transition: 400ms all ease-in-out;
}
.arrow:hover {
transition: 400ms all ease-in-out;
transform: scale(1.5);
}
.slider:hover .slider__arrow-left {
transition: 400ms all ease-in-out;
visibility: visible;
}
.slider:hover .slider__arrow-right {
transition: 400ms all ease-in-out;
visibility: visible;
}
.slider__arrow-left:hover {
background: rgba(20, 20, 20, 0.5);
transition: 400ms all ease-in-out;
}
.slider__arrow-right:hover {
background: rgba(20, 20, 20, 0.5);
transition: 400ms all ease-in-out;
}
.row__posters {
display: flex;
overflow-y: hidden;
overflow-x: scroll;
padding: 20px 0 20px 20px;
scroll-behavior: smooth;
}
.row__posters::-webkit-scrollbar {
display: none;
}
.row__poster {
object-fit: contain;
width: 100%;
max-height: 144px;
margin-right: 10px;
transition: transform 450ms;
border-radius: 4px;
}
.row__poster:hover {
transform: scale(1.08);
}
.row__posterLarge {
max-height: 320px;
}
.row__posterLarge:hover {
transform: scale(1.1);
opacity: 1;
}
.row__arrow-left {
position: absolute;
top: 0;
left: 20px;
height: 100%;
width: 32px;
background: rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
}
.row__arrow-right {
position: absolute;
top: 0;
right: 0px;
height: 100%;
width: 32px;
background: rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
}
@media screen and (min-width: 1200px) {
.row__poster {
max-height: 160px;
}
.row__posterLarge {
max-height: 360px;
}
}
@media screen and (max-width: 768px) {
.row__poster {
max-height: 100px;
}
.row__posterLarge {
max-height: 280px;
}
}
.swiper-pagination {
text-align: right !important;
}
.swiper-pagination-bullet {
background: gray !important;
opacity: 1 !important;
}
.swiper-pagination-bullet-active {
background: white !important;
}
.swiper-button-prev {
color: white !important;
}
.swiper-button-next {
color: white !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
font-size: 1.3rem !important;
font-weight: 600 !important;
}

View File

@@ -0,0 +1,70 @@
import axios from "../api/axios";
import React, { useEffect, useState } from "react";
import "./Row.css";
import MovieModal from "./modal";
const Row = ({ title, id, fetchUrl, isLargeRow }) => {
const [movies, setMovies] = useState([]);
const [modalOpen, setModalOpen] = useState(false);
const [movieSelected, setMovieSelected] = useState({});
useEffect(() => {
fetchMovieData();
}, []);
const fetchMovieData = async () => {
const request = await axios.get(fetchUrl);
setMovies(request.data.results);
};
const handleClick = (movie) => {
setModalOpen(true);
setMovieSelected(movie);
};
return (
<section className="row">
<h2>{title}</h2>
<div className="slider">
<div
className="slider__arrow-left"
onClick={() => {
document.getElementById(id).scrollLeft -= window.innerWidth - 80;
}}
>
<span className="arrow">{"<"}</span>
</div>
<div id={id} className="row__posters">
{movies.map((movie) => (
<img
key={movie.id}
className={`row__poster ${isLargeRow && "row__posterLarge"}`}
src={`https://image.tmdb.org/t/p/original${
isLargeRow ? movie.poster_path : movie.backdrop_path
}`}
alt={movie.name}
onClick={() => handleClick(movie)}
/>
))}
</div>
<div
className="slider__arrow-right"
onClick={() => {
document.getElementById(id).scrollLeft += window.innerWidth - 80;
}}
>
<span className="arrow">{">"}</span>
</div>
</div>
{modalOpen && (
<MovieModal {...movieSelected} setModalOpen={setModalOpen} />
)}
</section>
);
};
export default Row;

View File

@@ -0,0 +1,98 @@
.modal {
position: relative;
max-width: 800px;
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
background: #111;
overflow: hidden;
border-radius: 8px;
transition: all 400ms ease-in-out 2s;
animation: fadeIn 400ms;
}
.modal__poster-img {
width: 100%;
height: auto;
}
.modal__content {
padding: 40px;
color: white;
}
.modal__title {
padding: 0;
font-size: 40px;
margin: 16px 0;
}
.modal__details {
font-weight: 600;
font-size: 18px;
}
.modal__overview {
font-size: 20px;
line-height: 1.5;
}
.modal__user-perc {
color: #46d369;
}
.modal::-webkit-scrollbar {
display: none;
visibility: hidden;
}
/* Hide scrollbar for IE, Edge and Firefox */
.modal {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.wrapper-modal {
position: fixed;
inset: 0px;
background-color: rgb(0 0 0 / 71%);
-webkit-tap-highlight-color: transparent;
display: flex;
justify-content: center;
}
.presentation {
z-index: 1200;
position: absolute;
}
.modal-close {
position: absolute;
right: 20px;
top: 20px;
cursor: pointer;
z-index: 1000;
color: white;
}
@media screen and (max-height: 768px) {
.wrapper-modal {
align-items: unset;
padding-top: 2rem;
}
.modal {
overflow-y: scroll;
}
}
@media screen and (max-width: 768px) {
.modal__overview {
font-size: 16px;
}
.modal__details {
font-size: 16px;
}
.wrapper-modal {
padding: 0;
}
.modal {
overflow-y: scroll !important;
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.5);
}
to {
opacity: 1;
transform: scale(1);
}
}

View File

@@ -0,0 +1,45 @@
import React from "react";
import "./MovieModal.css";
const MovieModal = ({
backdrop_path,
title,
overview,
name,
release_date,
first_air_date,
vote_averate,
setModalOpen,
}) => {
return (
<div className="presentation">
<div className="wrapper-modal">
<div className="modal">
<span className="modal-close" onClick={() => setModalOpen(false)}>
X
</span>
<img
className="modal__poster-img"
src={`https://image.tmdb.org/t/p/original${backdrop_path}`}
alt="modal__poster-img"
/>
<div className="modal__content">
<p className="modal__details">
<span className="modal__user_perc">100% for you </span>
{release_date ? release_date : first_air_date}
</p>
<h2 className="modal__title">{title ? title : name}</h2>
<p className="modal__overview"> 평점 : {vote_averate}</p>
<p className="modal__overview">{overview}</p>
</div>
</div>
</div>
</div>
);
};
export default MovieModal;

View File

@@ -1,4 +1,13 @@
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}