..
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 | import React, { useEffect, useCallback } from 'react';
import styled from 'styled-components';
import { CardItem, Anime } from '../../index';
interface CardGridProps {
animeData: Anime[];
hasNextPage: boolean;
onLoadMore: () => void;
}
export const CardGrid: React.FC<CardGridProps> = ({
animeData,
hasNextPage,
onLoadMore,
}) => {
const handleLoadMore = useCallback(() => {
if (hasNextPage) {
onLoadMore();
}
}, [hasNextPage, onLoadMore]);
useEffect(() => {
const handleScroll = () => {
const windowHeight = window.innerHeight;
const documentHeight = document.documentElement.offsetHeight;
const scrollTop =
document.documentElement.scrollTop || document.body.scrollTop;
let threshold = 0;
if (window.innerWidth <= 450) {
threshold = 1;
}
if (windowHeight + scrollTop >= documentHeight - threshold) {
handleLoadMore();
}
};
window.addEventListener('scroll', handleScroll);
return () => {
window.removeEventListener('scroll', handleScroll);
};
}, [handleLoadMore, hasNextPage]);
return (
<StyledCardGrid>
{animeData.map((anime) => (
<CardItem key={anime.id} anime={anime} />
))}
</StyledCardGrid>
);
};
export const StyledCardGrid = styled.div`
margin: 0 auto;
display: grid;
position: relative;
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
grid-template-rows: auto;
gap: 2rem;
transition: 0s;
@media (max-width: 1000px) {
gap: 1.5rem;
}
@media (max-width: 800px) {
grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
gap: 1rem;
}
@media (max-width: 450px) {
grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
gap: 0.8rem;
}
`;
|
|