File size: 5,520 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
import React, { useState, useEffect } from 'react';
import { Link as ReactRouterLink } from 'react-router-dom';
import "./styles/header.css";
import axios from '../../axios';
import Row from '../row';
import requests from '../../request';
import { Background, ButtonLink, Container, PlayButton, Search, SearchIcon, SearchInput, Logo, Dropdown, Profile, Picture, Group, Feature, Text, FeatureCallOut, Link } from './styles/header';
export default function Header({ bg = true, children, ...restProps }) {
return bg ? <Background { ...restProps}>{children}</Background> : children;
}
Header.Banner = function HeaderBanner({ children, ...restProps }) {
const [show, handleShow] = useState(false);
const [movie, setMovie] = useState([]);
useEffect(() => {
async function fetchData() {
const request = await axios.get(requests.fetchNetflixOriginals);
setMovie ( request.data.results[Math.floor(Math.random() * request.data.results.length - 1)]
);
return request;
}
fetchData();
}, []);
console.log(movie);
function truncate(str, n) {
return str?.length > n ? str.substr(0, n-1) + "..." : str;
}
// useEffect(() => {
// window.addEventListener("scroll", () => {
// if (window.scrollY > 100) {
// handleShow(true)
// } else handleShow(false);
// });
// return () => {
// window.removeEventListener("scroll");
// };
// }, []);
return (
<header className = "banner"
style={{
backgroundSize: "cover",
backgroundImage: `url("https://image.tmdb.org/t/p/original${movie?.backdrop_path}")`,
backgroundPosition: "center center",
}}
>
<div className = "banner_contents">
<h1 className="banner_title">
{movie?.title || movie?.name || movie?.original_name}
</h1>
<div className="banner_buttons">
<button className="banner_button">Play</button>
<button className="banner_button">My List</button>
</div>
<h1 className = "banner_description">
{truncate(movie?.overview, 150)}
</h1>
</div>
<div className="banner_fadeBottom" />
<div className={`nav ${show && "nav_black"}`}></div>
<div>
<Row title="NETFLIX ORIGINALS" fetchUrl={requests.fetchNetflixOriginals}
isLargeRow
/>
<Row title="Trending Now" fetchUrl={requests.fetchTrending} />
<Row title="Top Rated" fetchUrl={requests.fetchTopRated} />
<Row title="Action Movies" fetchUrl={requests.fetchActionMovies} />
<Row title="Comedy Movies" fetchUrl={requests.fetchComedyMovies} />
<Row title="Horror Movies" fetchUrl={requests.fetchHorrorMovies} />
<Row title="Romance Movies" fetchUrl={requests.fetchRomanticMovies} />
<Row title="Documentaries" fetchUrl={requests.fetchDocumentaries} />
</div>
</header>
);
}
Header.FeatureCallOut = function HeaderFeatureCallOut({ children, ...restProps }) {
return <FeatureCallOut {...restProps}>{children}</FeatureCallOut>;
};
Header.Feature = function HeaderFeature({ children, ...restProps }) {
return <Feature {...restProps}>{children}</Feature>;
};
Header.Profile = function HeaderProfile({ children, ...restProps }) {
return <Profile {...restProps}>{children}</Profile>;
};
Header.Picture = function HeaderPicture({ src, ...restProps }) {
return <Picture {...restProps} src={`/images/users/${src}.png`} />;
};
Header.Search = function HeaderSearch({ searchTerm, setSearchTerm, ...restProps }) {
const [searchActive, setSearchActive] = useState(false);
return (
<Search {...restProps}>
<SearchIcon onClick={() => setSearchActive(searchActive => !searchActive)}>
<img src="/images/icons/search.png" alt="Search" />
</SearchIcon>
<SearchInput value={searchTerm} onChange={({ target }) => setSearchTerm(target.value)}
placeholder="Search films and series"
active={searchActive}
/>
</Search>
);
};
Header.Dropdown = function HeaderDropdown({ children, ...restProps }) {
return <Dropdown {...restProps}>{children}</Dropdown>;
};
Header.Text = function HeaderText({ children, ...restProps }) {
return <Text {...restProps}>{children}</Text>;
};
Header.TextLink = function HeaderTextLink({ children, ...restProps }) {
return <Link {...restProps}>{children}</Link>;
};
Header.PlayButton = function HeaderPlayButton({children, ...restProps}) {
return <PlayButton {...restProps}>{children}</PlayButton>
}
Header.Frame = function HeaderFrame({ children, ...restProps }) {
return <Container { ...restProps}>{children}</Container>;
};
Header.Group = function HeaderGroup({ children, ...restProps }) {
return <Group { ...restProps}>{children}</Group>;
};
Header.ButtonLink = function HeaderButtonLink({ children, ...restProps }) {
return <ButtonLink { ...restProps}>{children}</ButtonLink>;
};
Header.Logo = function HeaderLogo({ to, ...restProps }) {
return (
<ReactRouterLink to={to}>
<Logo { ...restProps} />
</ReactRouterLink>
);
}; |