Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MSSQL
- NPM
- 공정능력
- es6
- react
- JavaScript
- plugin
- Kotlin
- IntelliJ
- window
- vaadin
- mybatis
- GIT
- R
- hadoop
- xPlatform
- Express
- SSL
- Sqoop
- 보조정렬
- mapreduce
- Android
- Spring
- tomcat
- Python
- Eclipse
- table
- SPC
- SQL
- Java
Archives
- Today
- Total
DBILITY
react infinite scroll 본문
반응형
https://github.com/ankeetmaini/react-infinite-scroll-component#readme
특별히 복잡한 것은 없다.
스크롤시 반복데이터가 추가되는 대상 Element를 감싸고 설정하면 끝. 세상 참 좋아졌다.
<InfiniteScroll next={props.onRequestData} hasMore={true} dataLength={props.data.length} style={{overflow:"hidden"}}>
<Row className={'p-2'}>
{
props.data.map((v, i) => {
return (
<Col md={4} className={'p-2'} key={i}>
<div className={'room p-4'}>
<p>{v.content}</p>
</div>
</Col>
)
})
}
</Row>
</InfiniteScroll>
위 콤포넌트와 별개로 그냥 useEffect에 vanilla를 엮으면 되긴 하더라.
const handleScroll = () => {
let scrollY = window.innerHeight + window.scrollY;
if (scrollY >= window.document.body.offsetHeight - 2) {
/**
* 여기쯤에서 뭔가 하고 싶다면.
*/
window.scrollTo(window.scrollX, scrollY);
}
};
useEffect(() => {
console.log('mount');
window.addEventListener('scroll', handleScroll);
return () => {
console.log('unmount');
window.removeEventListener('scroll', handleScroll);
}
}, [handleScroll]);
이거 보고 광고 한번 안 누른 이는 삼대가 재수가 없을지어다!ㅋㅋ
반응형
'reference' 카테고리의 다른 글
git tutorial (0) | 2022.01.06 |
---|---|
react icons (0) | 2022.01.05 |
typescript in 5 minutes (0) | 2021.12.21 |
jar to exe launch4j (0) | 2021.11.26 |
java swing datetimepicker intellij palette component regist (0) | 2021.11.20 |
Comments