docs(list): remove unexpected message on initial data load (#51687)
Some checks are pending
Publish Any Commit / build (push) Waiting to run
🔀 Sync mirror to Gitee / mirror (push) Waiting to run
✅ test / lint (push) Waiting to run
✅ test / test-react-legacy (16, 1/2) (push) Waiting to run
✅ test / test-react-legacy (16, 2/2) (push) Waiting to run
✅ test / test-react-legacy (17, 1/2) (push) Waiting to run
✅ test / test-react-legacy (17, 2/2) (push) Waiting to run
✅ test / test-node (push) Waiting to run
✅ test / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test / test-coverage (push) Blocked by required conditions
✅ test / build (push) Waiting to run
✅ test / test lib/es module (es, 1/2) (push) Waiting to run
✅ test / test lib/es module (es, 2/2) (push) Waiting to run
✅ test / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run

This commit is contained in:
DDDDD12138 2024-11-19 10:41:21 +08:00 committed by GitHub
parent f1ff05d519
commit 64cba3d316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,17 +25,17 @@ const ContainerHeight = 400;
const App: React.FC = () => { const App: React.FC = () => {
const [data, setData] = useState<UserItem[]>([]); const [data, setData] = useState<UserItem[]>([]);
const appendData = () => { const appendData = (showMessage = true) => {
fetch(fakeDataUrl) fetch(fakeDataUrl)
.then((res) => res.json()) .then((res) => res.json())
.then((body) => { .then((body) => {
setData(data.concat(body.results)); setData(data.concat(body.results));
message.success(`${body.results.length} more items loaded!`); showMessage && message.success(`${body.results.length} more items loaded!`);
}); });
}; };
useEffect(() => { useEffect(() => {
appendData(); appendData(false);
}, []); }, []);
const onScroll = (e: React.UIEvent<HTMLElement, UIEvent>) => { const onScroll = (e: React.UIEvent<HTMLElement, UIEvent>) => {