react + antd-mobile 的listview 在h5移动网页端的下拉刷新和上滑加载的实现

近期的项目是使用react+antd-mobile的h5移动网页端的一个程序,其中一个功能是一个展示列表,具有下拉刷新和上滑加载更多的一个功能,下面就介绍一下这个功能的具体实现;

首先这里我用了antd-mobile的listView和RefreshControl的组件,想了解更多的可以去官网看看 https://mobile.ant.design/docs/react/introduce-cn
(PS:我当时用这个组件的时候,API还没有这么完善,大部分都是去react-native的官方文档中查看的,等我做完了再来看官网就几本跟新的差不多了,也是一把辛酸泪呀~~~~看来官网的维护还是很好的)

这里说一下,如果你要用到RefreshControl的一些监听事件的话,最好吧antd-mobile版本更新一下(最少更新到1.6.1以上),低版本的不支持它的一些监听事件,会报错,如:Uncaught TypeError: this.refs.lv.getInnerViewNode is not a function,版本更新一下就好了。
https://github.com/ant-design/ant-design-mobile/issues/1723

还有个比较重要的是listView的dataSource属性的参数问题需要注意一下,可以参考 https://reactnative.cn/docs/0.26/listviewdatasource.html

接下来就看一下具体的实现过程:
首先引入用到的组件

import { RefreshControl, ListView, Toast, List } from 'antd-mobile';

使用ListView,在ListView中使用RefreshControl

renderList() {
        const row = (dataRow) => {
            return (
                    <div key={dataRow} className="one-output-item" onClick={this.getOutputDetails.bind(this, dataRow)} >
                        {dataRow &&
                        <Item extra={dataRow.balanceAmount && dataRow.balanceAmount.toFixed(2)}>{dataRow.name}</Item>
                        }
                    </div>


            )
        }
        return (
            <ListView
                ref={el => this.lv = el}
                dataSource={this.state.dataSource}
                renderRow={row}
                initialListSize={this.state.pageSize}
                pageSize={this.state.pageSize}
                style={{
                          height: this.state.height,
                        }}
                scrollerOptions={{ scrollbars: true }}
                refreshControl={<RefreshControl
                                      refreshing={this.state.refreshing}
                                      onRefresh={this.onRefresh}
                                />}
                onScroll={this.onScroll}
                scrollRenderAheadDistance={200}
                scrollEventThrottle={20}
                onEndReached={this.onEndReached}
                onEndReachedThreshold={20}
                renderFooter={() => (<p >
                                      {this.state.hasMore ? '正在加载更多的数据...' : '已经全部加载完毕'}
                                    </p>)
                              }
            />

        )
    }

dataSource: 数据源,给其赋值;
renderRow: 简单来说就是接受数据源中的数据,然后渲染出来;
initialListSize: 指定在组件刚挂载的时候渲染多少行数据;
refreshControl:下拉刷新组件,其中的onRefresh是刷新回调函数,refreshing是刷新回调函数;
(PS:官网解释的很详细来,就不一一介绍了)

下拉刷新

onRefresh = () => {
        if (!this.manuallyRefresh) {
            this.setState({ refreshing: true });
        } else {
            this.manuallyRefresh = false;
        }
        //刷新列表,渲染第一页数据
        this.refreshList();

    };

上滑加载更多,实现分页

onEndReached = (event) => {
        if (this.state.isLoading ) {
            return false;
        }
        if ( !this.state.hasMore) {
            return false;
        }
        this.setState({ isLoading: true });
        setTimeout(() => {
            this.getOutputList();

        }, 1000);
    }
import React from 'react';
import { Flex } from 'antd-mobile';
import { RefreshControl, ListView, Button, Toast, List } from 'antd-mobile';

const Item = List.Item;
class OutputList extends React.Component {
    constructor (props) {
        super(props)
        const dataSource = new ListView.DataSource({
            rowHasChanged: (row1, row2) => row1 !== row2,
        })

        this.initData = props.dataList;
        this.state = {
            dataSource: dataSource.cloneWithRows(this.initData),
            refreshing: false,
            height: document.documentElement.clientHeight,
            currentPage: 0,
            pageSize: 20,
            data: [],
            hasMore: true,
            isLoading: false
        };
        if(props.dataList.length < this.state.pageSize){
            this.state.hasMore = false
        }

    }

    componentDidMount() {
        this.renderResize();
        // Set the appropriate height
        setTimeout(() => this.setState({
            height: (this.state.height - 50 - 198 - 50) + "px",
        }), 0);

    }

    renderResize = () => {
        var width = document.documentElement.clientWidth;
        var height =  document.documentElement.clientHeight;
        if( width > height ){
            this.setState({
                height: (height - 50 - 198 - 50) + "px",
            })
        } else{
            this.setState({
                height: (height - 50 - 198 - 50) + "px",
            })

        }

    }

    componentWillMount(){
        window.addEventListener("resize", this.renderResize, false);
    }

    componentWillUnmount = () => {
        window.removeEventListener("resize", this.renderResize, false);
    }


    onScroll = (e) => {
        this.st = e.scroller.getValues().top;
        this.domScroller = e;
    };

    getOutputList = () => {
      
        let params = {
            pageNo: this.state.currentPage++,
            pageSize: this.state.pageSize,
        }

        if(this.state.hasMore){
            getOutputList (params).then((data) => {
                setTimeout(() => {
                    if(data.dataList.length < this.state.pageSize){
                        this.setState({
                            hasMore: false
                        });
                    }
                    this.setState({
                        dataSource: this.state.dataSource.cloneWithRows(this.initData.concat(data.dataList)),
                        refreshing: false,
                        isLoading: false,
                        currentPage: params.pageNo
                    });
                    this.initData = data.dataList.concat(this.initData);

                }, 600);

            }, (data) => {
                if (data.messageCode !== 'netError' && data.messageCode !== 'sysError' && data.messageCode !== 'timeout') {
                    setTimeout(() => {
                        this.setState({
                            refreshing: false,
                            isLoading: false,
                        });

                    }, 600);
                    Toast.info(data.message, commonInfo.showToastTime);
                }
            });
        }else{
            setTimeout(() => {
                this.setState({
                    refreshing: false,
                    isLoading: false,
                });

            }, 600);
        }

    }

    refreshList = () => {
        let params = {
             pageNo: 0,
            pageSize: this.state.pageSize,
        }
        getOutputList(params).then((data) => {

            if (data.dataList.length < this.state.pageSize) {
                this.setState({
                    hasMore: false
                });
            } else {
                this.setState({
                    hasMore: true
                });
            }
            this.setState({
                dataSource: this.state.dataSource.cloneWithRows(data.dataList),
                refreshing: false,
                isLoading: false,
                currentPage: params.pageNo
            });
            this.initData = data.dataList;

        }, (data) => {
            if (data.messageCode !== 'netError' && data.messageCode !== 'sysError' && data.messageCode !== 'timeout') {
                setTimeout(() => {
                    this.setState({
                        refreshing: false,
                        isLoading: false,
                    });

                }, 600);
                Toast.info(data.message, commonInfo.showToastTime);

                commonInfo.hasLoading = true;
            }
        });
    }

    onEndReached = (event) => {
        if (this.state.isLoading ) {
            return false;
        }
        if ( !this.state.hasMore) {
            return false;
        }
        this.setState({ isLoading: true });
        setTimeout(() => {
            this.getOutputList();

        }, 1000);
    }

    onRefresh = () => {
        if (!this.manuallyRefresh) {
            this.setState({ refreshing: true });
        } else {
            this.manuallyRefresh = false;
        }
     
        this.refreshList();

    };

// If you use redux, the data maybe at props, you need use `componentWillReceiveProps`
    componentWillReceiveProps = (props) => {
        this.initData = props.dataList;
        this.setState({
            dataSource: this.state.dataSource.cloneWithRows(this.initData),
        });
    }

    renderList() {
        const row = (dataRow) => {
            return (
                    <div key={dataRow} className="one-output-item" >
                        {dataRow &&
                        <Item extra={dataRow.balanceAmount && dataRow.balanceAmount.toFixed(2)}>{dataRow.name}</Item>
                        }
                    </div>


            )
        }
        return (
            <ListView
                ref={el => this.lv = el}
                dataSource={this.state.dataSource}
                renderRow={row}
                initialListSize={this.state.pageSize}
                pageSize={this.state.pageSize}
                style={{
                          height: this.state.height,
                        }}
                scrollerOptions={{ scrollbars: true }}
                refreshControl={<RefreshControl
                                      refreshing={this.state.refreshing}
                                      onRefresh={this.onRefresh}
                                />}
                onScroll={this.onScroll}
                scrollRenderAheadDistance={200}
                scrollEventThrottle={20}
                onEndReached={this.onEndReached}
                onEndReachedThreshold={20}
                renderFooter={() => (<p >
                                      {this.state.hasMore ? '正在加载更多的数据...' : '已经全部加载完毕'}
                                    </p>)
                              }
            />

        )
    }

    render() {

        return (
            <div>
                {this.renderList()}
            </div>

        );
    }
}
OutputList = createForm()(OutputList);
export default OutputList;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容