我正在寻找一种方法,以了解使用react-window时屏幕上可见的列表项。
isVisible道具错误地返回了可见性。
https://codesandbox.io/s/bvaughnreact-window-fixed-size-list-vertical-nmukq
import React from "react";
import { render } from "react-dom";
import { FixedSizeList as List } from "react-window";
import AutoSizer from "react-virtualized-auto-sizer";
import TrackVisibility from "react-on-screen";
import "./styles.css";
const Row = ({ index, style, isVisible }) => (
<div className={index % 2 ? "ListItemOdd" : "ListItemEven"} style={style}>
Row {index + " is" + isVisible}
</div>
);
const RowWrapper = ({ index, style }) => (
<TrackVisibility>
<Row index={index} style={style} />
</TrackVisibility>
);
const Example = () => (
<AutoSizer>
{({ height, width }) => (
<List
className="List"
height={height}
itemCount={1000}
itemSize={35}
width={width}
>
{RowWrapper}
</List>
)}
</AutoSizer>
);
render(<Example />, document.getElementById("root"));
这可能是由于项目的缓存,但是我想知道是否还有另一种方法来跟踪项目的可见性
答案 0 :(得分:0)
我自己弄清楚了。请在以下位置找到代码沙箱
DynamicSizeList -https://codesandbox.io/s/piecykreact-window-dynamic-size-list-vertical-pooy2
通过捕获onWheel事件并将“ tops”与clientHeight和ListHeight进行比较
FixedSizeList -https://codesandbox.io/s/bvaughnreact-window-fixed-size-list-vertical-nmukq
也是基于onWheel事件。
它不适用于屏幕上的反应。
如果有人知道更好的做事方法,请回答。