Skip to content

Commit a716ba4

Browse files
committed
docs(useloadmore): add docs for useloadmore
1 parent 3a56b65 commit a716ba4

File tree

5 files changed

+34
-6
lines changed

5 files changed

+34
-6
lines changed

packages/app/src/app.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ export default {
3131
'pages/useRequest/refreshDeps/index',
3232
'pages/useRequest/fetch/index',
3333
'pages/useRequest/axios/index',
34+
'pages/useRequest/pagination/index',
35+
'pages/useRequest/paginationCache/index',
36+
'pages/useRequest/loadMore/index',
3437
'pages/useNetworkType/index',
3538
'pages/useOnline/index',
3639
],

packages/app/src/components/DocPage/index.tsx

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
import React, { useEffect } from 'react';
1+
import React, {
2+
useEffect,
3+
forwardRef,
4+
CSSProperties,
5+
ForwardedRef,
6+
} from 'react';
27
import Taro, { PropsWithChildren } from '@tarojs/taro';
38

49
import { useEvent } from 'taro-hooks';
@@ -12,9 +17,17 @@ import './index.less';
1217
export type IDocPageProps = PropsWithChildren<{
1318
title?: string;
1419
panelTitle?: string;
20+
style?: CSSProperties;
21+
forwardedRef: ForwardedRef<unknown>;
1522
}>;
1623

17-
const DocPage = ({ children, title, panelTitle }: IDocPageProps) => {
24+
const DocPage = ({
25+
children,
26+
title,
27+
panelTitle,
28+
style,
29+
forwardedRef,
30+
}: IDocPageProps) => {
1831
// fix runtime change problem
1932
const [state, { emitEvent }] = useEvent('');
2033

@@ -25,7 +38,7 @@ const DocPage = ({ children, title, panelTitle }: IDocPageProps) => {
2538
}, [emitEvent]);
2639

2740
return (
28-
<View className="page">
41+
<View className="page" ref={forwardedRef} style={style}>
2942
<DocHeader title={title} />
3043
<View className="doc-body">
3144
<View className="panel">
@@ -37,4 +50,6 @@ const DocPage = ({ children, title, panelTitle }: IDocPageProps) => {
3750
);
3851
};
3952

40-
export default DocPage;
53+
export default forwardRef((props, ref) => (
54+
<DocPage {...props} forwardedRef={ref} />
55+
));

packages/app/src/pages/useRequest/index.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,16 @@ const list: IListItem[] = [
9393
note: '普通的分页场景,我们会自动管理 current 和 pageSize。',
9494
route: 'pagination',
9595
},
96+
{
97+
title: '缓存分页',
98+
note: '在 cacheKey 场景下, run 的参数 params 是可以缓存的,利用这个特点,我们可以实现 pagination 相关条件的缓存。',
99+
route: 'paginationCache',
100+
},
101+
{
102+
title: '缓存加载更多',
103+
note: '通过设置 cacheKey,可以缓存所有 list 数据。',
104+
route: 'loadMore',
105+
},
96106
];
97107

98108
export default () => {

packages/app/src/pages/useRequest/loadMore/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const LoadMoreRequest = () => {
5656
);
5757

5858
return (
59-
<DocPage title="useRequest 请求" panelTitle="依赖请求">
59+
<DocPage title="useRequest 普通加载更多" panelTitle="普通加载更多">
6060
<View>
6161
You can click the button multiple times, the loadmore will be cached.
6262
</View>

packages/app/src/pages/useRequest/paginationCache/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* desc: 普通的分页场景,我们会自动管理 `current` 和 `pageSize`
2+
* desc: 在 `cacheKey` 场景下, `run` 的参数 `params` 是可以缓存的,利用这个特点,我们可以实现 pagination 相关条件的缓存
33
*/
44
import React, { useState } from 'react';
55
import { useBoolean, useUpdateEffect } from 'ahooks';

0 commit comments

Comments
 (0)