-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.js
62 lines (45 loc) · 1.53 KB
/
banner.js
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
import React, { useEffect, useState } from 'react'
import axios from "../axios";
import requests from "../requests";
import "./banner.css";
function Banner() {
const [movie,setMovie] = useState([]);
useEffect( () => {
async function fetchData(){
const request = await axios.get(requests.fetchNetflixOrignals);
setMovie(
request.data.results[Math.floor(Math.random()*request.data.results.length-1)]
);
// console.log(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;
}
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>
</header>
)
}
export default Banner