react + antd-mobile 的listview 在h5移動網(wǎng)頁端的下拉刷新和上滑加載的實現(xiàn)

近期的項目是使用react+antd-mobile的h5移動網(wǎng)頁端的一個程序单料,其中一個功能是一個展示列表悔政,具有下拉刷新和上滑加載更多的一個功能,下面就介紹一下這個功能的具體實現(xiàn);

首先這里我用了antd-mobile的listView和RefreshControl的組件街氢,想了解更多的可以去官網(wǎng)看看 https://mobile.ant.design/docs/react/introduce-cn
(PS:我當(dāng)時用這個組件的時候突诬,API還沒有這么完善苫拍,大部分都是去react-native的官方文檔中查看的芜繁,等我做完了再來看官網(wǎng)就幾本跟新的差不多了,也是一把辛酸淚呀~~~~看來官網(wǎng)的維護(hù)還是很好的)

這里說一下绒极,如果你要用到RefreshControl的一些監(jiān)聽事件的話骏令,最好吧antd-mobile版本更新一下(最少更新到1.6.1以上),低版本的不支持它的一些監(jiān)聽事件垄提,會報錯榔袋,如:Uncaught TypeError: this.refs.lv.getInnerViewNode is not a function,版本更新一下就好了铡俐。
https://github.com/ant-design/ant-design-mobile/issues/1723

還有個比較重要的是listView的dataSource屬性的參數(shù)問題需要注意一下凰兑,可以參考 https://reactnative.cn/docs/0.26/listviewdatasource.html

接下來就看一下具體的實現(xiàn)過程:
首先引入用到的組件

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 ? '正在加載更多的數(shù)據(jù)...' : '已經(jīng)全部加載完畢'}
                                    </p>)
                              }
            />

        )
    }

dataSource: 數(shù)據(jù)源审丘,給其賦值吏够;
renderRow: 簡單來說就是接受數(shù)據(jù)源中的數(shù)據(jù),然后渲染出來滩报;
initialListSize: 指定在組件剛掛載的時候渲染多少行數(shù)據(jù)稿饰;
refreshControl:下拉刷新組件,其中的onRefresh是刷新回調(diào)函數(shù)露泊,refreshing是刷新回調(diào)函數(shù)喉镰;
(PS:官網(wǎng)解釋的很詳細(xì)來,就不一一介紹了)

下拉刷新

onRefresh = () => {
        if (!this.manuallyRefresh) {
            this.setState({ refreshing: true });
        } else {
            this.manuallyRefresh = false;
        }
        //刷新列表惭笑,渲染第一頁數(shù)據(jù)
        this.refreshList();

    };

上滑加載更多侣姆,實現(xiàn)分頁

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 ? '正在加載更多的數(shù)據(jù)...' : '已經(jīng)全部加載完畢'}
                                    </p>)
                              }
            />

        )
    }

    render() {

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

        );
    }
}
OutputList = createForm()(OutputList);
export default OutputList;
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市沉噩,隨后出現(xiàn)的幾起案子捺宗,更是在濱河造成了極大的恐慌,老刑警劉巖川蒙,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蚜厉,死亡現(xiàn)場離奇詭異,居然都是意外死亡畜眨,警方通過查閱死者的電腦和手機(jī)昼牛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來康聂,“玉大人贰健,你說我怎么就攤上這事√裰” “怎么了伶椿?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我脊另,道長导狡,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任偎痛,我火速辦了婚禮烘豌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘看彼。我一直安慰自己廊佩,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布靖榕。 她就那樣靜靜地躺著标锄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪茁计。 梳的紋絲不亂的頭發(fā)上料皇,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天,我揣著相機(jī)與錄音星压,去河邊找鬼践剂。 笑死,一個胖子當(dāng)著我的面吹牛娜膘,可吹牛的內(nèi)容都是我干的逊脯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼竣贪,長吁一口氣:“原來是場噩夢啊……” “哼军洼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起演怎,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤匕争,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后爷耀,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體甘桑,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年歹叮,在試婚紗的時候發(fā)現(xiàn)自己被綠了跑杭。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡盗胀,死狀恐怖艘蹋,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情票灰,我是刑警寧澤,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站屑迂,受9級特大地震影響浸策,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜惹盼,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一庸汗、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧手报,春花似錦蚯舱、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至揍鸟,卻和暖如春兄裂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背阳藻。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工晰奖, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人腥泥。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓匾南,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蛔外。 傳聞我的和親對象是個殘疾皇子午衰,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內(nèi)容