File size: 6,511 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 161 |
/* eslint-disable no-nested-ternary */
import React, { useContext, useState, useEffect } from 'react';
import Fuse from 'fuse.js';
import { FirebaseContext } from '../context/firebase';
import { SelectProfileContainer } from './profiles';
import { Card, Header, Loading } from '../components';
import * as ROUTES from '../constants/routes';
import logo from '../logo.svg';
import { FooterContainer } from './footer';
import Player from '../components/player';
export function BrowseContainer({ slides }) {
const [category, setCategory] = useState('series');
const [searchTerm, setSearchTerm] = useState('');
const [profile, setProfile] = useState({});
const [loading, setLoading] = useState(true);
const [slideRows, setSlideRows] = useState([]);
const { firebase } = useContext(FirebaseContext);
const user = firebase.auth().currentUser || {};
useEffect(() => {
setTimeout(() => {
setLoading(false);
}, 3000);
}, [profile.displayName]);
useEffect(() => {
setSlideRows(slides[category]);
}, [slides, category]);
useEffect(() => {
const fuse = new Fuse(slideRows,
{ keys: ['data.description', 'data,title', 'data.genre'], });
const results = fuse.search(searchTerm).map(({ item }) => item);
if(slideRows.length > 0 && searchTerm.length > 3
&& results.length > 0 ) {
setSlideRows(results);
} else {
setSlideRows(slides[category]);
}
}, [searchTerm]);
return profile.displayName ? (
<>
{loading ? <Loading src={user.photoURL} />
: <Loading.ReleaseBody />}
<Header>
<Header.Frame>
<Header.Group>
<Header.Logo to={ROUTES.HOME} src={logo} alt="Netflix" />
</Header.Group>
<Header.Group>
<Header.Search searchTerm={searchTerm} setSearchTerm={setSearchTerm} />
<Header.Profile>
<Header.Picture src={user.photoURL} />
<Header.Dropdown>
<Header.Group>
<Header.Picture src={user.photoURL} />
<Header.TextLink>{user.displayName}</Header.TextLink>
</Header.Group>
<Header.Group>
<Header.TextLink onClick={() => firebase.auth().signOut()}>Sign out</Header.TextLink>
</Header.Group>
</Header.Dropdown>
</Header.Profile>
</Header.Group>
</Header.Frame>
<Header.Banner></Header.Banner>
</Header>
{/* <Header src="joker1" dontShowOnSmallViewPort>
<Header.Frame>
<Header.Group>
<Header.Logo to={ROUTES.HOME} src={logo} alt="Netflix" />
<Header.TextLink active={category === 'series' ?
'true' : 'false'} onClick={() => setCategory('series')}>Series
</Header.TextLink>
<Header.TextLink active={category === 'films' ?
'true' : 'false'} onClick={() => setCategory('films')}>Films
</Header.TextLink>
</Header.Group>
<Header.Group>
<Header.Search searchTerm={searchTerm} setSearchTerm={setSearchTerm} />
<Header.Profile>
<Header.Picture src={user.photoURL} />
<Header.Dropdown>
<Header.Group>
<Header.Picture src={user.photoURL} />
<Header.TextLink>{user.displayName}</Header.TextLink>
</Header.Group>
<Header.Group>
<Header.TextLink onClick={() => firebase.auth().signOut()}>Sign out</Header.TextLink>
</Header.Group>
</Header.Dropdown>
</Header.Profile>
</Header.Group>
</Header.Frame>
<Header.Feature>
<Header.FeatureCallOut>Watch Joker Now</Header.FeatureCallOut>
<Header.Text>
Forever alone in a crowd, failed comedian Arthur Fleck seeks connection as he walks the streets of Gotham
City. Arthur wears two masks -- the one he paints for his day job as a clown, and the guise he projects in a
futile attempt to feel like he's part of the world around him.
</Header.Text>
<Header.PlayButton>Play</Header.PlayButton>
</Header.Feature>
</Header> */}
{/* <Card.Group>
{slideRows.map((slideItem) => (
<Card key={`${category}-${slideItem.title.toLowerCase()}`}>
<Card.Title>{slideItem.title}</Card.Title>
<Card.Entities>
{slideItem.data.map((item) => (
<Card.Item key={item.docId} item={item}>
<Card.Image src={`/images/${category}/${item.genre}/${item.slug}/small.jpg`}>
</Card.Image>
<Card.Meta>
<Card.SubTitle>{item.title}</Card.SubTitle>
<Card.Text>{item.description}</Card.Text>
</Card.Meta>
</Card.Item>
))}
</Card.Entities>
<Card.Feature category={category}>
<Player>
<Player.Button />
<Player.Video src="/videos/bunny.mp4" />
</Player>
</Card.Feature>
</Card>
))}
</Card.Group> */}
{/* <FooterContainer /> */}
</>
) : (
<SelectProfileContainer user={user} setProfile={setProfile} />
);
}
//new timestamp 7:53:08, need to work on Player test and overall performance |