嘗試自己動手用react來寫一個分頁元件

重慶崽兒brand發表於2018-02-07

分頁效果

線上預覽

github地址

效果截圖(樣式可自行修改):

這裡寫圖片描述

構建專案

create-react-app react-paging-component
複製程式碼

分頁元件

1.子元件

建立 Pagecomponent.js 檔案

核心程式碼:

初始化值

 constructor(props) {
        super(props)
        this.state = {
            currentPage: 1, //當前頁碼
            groupCount: 5, //頁碼分組,顯示7個頁碼,其餘用省略號顯示
            startPage: 1,  //分組開始頁碼
            totalPage:1 //總頁數
        }
    }
複製程式碼
動態生成頁碼函式

createPage() {
        const {currentPage, groupCount, startPage,totalPage} = this.state;
        let pages = []
        //上一頁
        pages.push(<li className={currentPage === 1 ? "nomore" : null} onClick={this.prePageHandeler.bind(this)}
                       key={0}>
            上一頁</li>)

        if (totalPage <= 10) {
            /*總頁碼小於等於10時,全部顯示出來*/
            for (let i = 1; i <= totalPage; i++) {
                pages.push(<li key={i} onClick={this.pageClick.bind(this, i)}
                               className={currentPage === i ? "activePage" : null}>{i}</li>)
            }
        } else {
            /*總頁碼大於10時,部分顯示*/

            //第一頁
            pages.push(<li className={currentPage === 1 ? "activePage" : null} key={1}
                           onClick={this.pageClick.bind(this, 1)}>1</li>)

            let pageLength = 0;
            if (groupCount + startPage > totalPage) {
                pageLength = totalPage
            } else {
                pageLength = groupCount + startPage;
            }
            //前面省略號(噹噹前頁碼比分組的頁碼大時顯示省略號)
            if (currentPage >= groupCount) {
                pages.push(<li className="" key={-1}>···</li>)
            }
            //非第一頁和最後一頁顯示
            for (let i = startPage; i < pageLength; i++) {
                if (i <= totalPage - 1 && i > 1) {
                    pages.push(<li className={currentPage === i ? "activePage" : null} key={i}
                                   onClick={this.pageClick.bind(this, i)}>{i}</li>)
                }
            }
            //後面省略號
            if (totalPage - startPage >= groupCount + 1) {
                pages.push(<li className="" key={-2}>···</li>)
            }
            //最後一頁
            pages.push(<li className={currentPage === totalPage ? "activePage" : null} key={totalPage}
                           onClick={this.pageClick.bind(this, totalPage)}>{totalPage}</li>)
        }
        //下一頁
        pages.push(<li className={currentPage === totalPage ? "nomore" : null}
                       onClick={this.nextPageHandeler.bind(this)}
                       key={totalPage + 1}>下一頁</li>)
        return pages;

    }
複製程式碼

頁碼點選函式:

//頁碼點選
    pageClick(currentPage) {
        const {groupCount} = this.state
        const getCurrentPage = this.props.pageCallbackFn;
        //當 當前頁碼 大於 分組的頁碼 時,使 當前頁 前面 顯示 兩個頁碼
        if (currentPage >= groupCount) {
            this.setState({
                startPage: currentPage - 2,
            })
        }
        if (currentPage < groupCount) {
            this.setState({
                startPage: 1,
            })
        }
        //第一頁時重新設定分組的起始頁
        if (currentPage === 1) {
            this.setState({
                startPage: 1,
            })
        }
        this.setState({
            currentPage
        })
        //將當前頁碼返回父元件
        getCurrentPage(currentPage)
    }
複製程式碼

上一頁和夏夜點選事件

//上一頁事件
    prePageHandeler() {
        let {currentPage} = this.state
        if (--currentPage === 0) {
            return false
        }
        this.pageClick(currentPage)
    }

    //下一頁事件
    nextPageHandeler() {
        let {currentPage,totalPage} = this.state
       // const {totalPage} = this.props.pageConfig;
        if (++currentPage > totalPage) {
            return false
        }
        this.pageClick(currentPage)
    }
複製程式碼

元件渲染到DOM上

render() {
        const pageList = this.createPage();
        return (
            <ul className="page-container">
                {pageList}
            </ul>
        )
    }
複製程式碼

2.父元件

建立 Pagecontainer.js 檔案

父元件完整程式碼

import React, {Component} from 'react'
import Pagecomponent from '../components/Pagecomponent'
import data from '../mock/tsconfig.json'

class Pagecontainer extends Component {
    constructor() {
        super()
        this.state = {
            dataList:[],
            pageConfig: {
                totalPage: data.length //總頁碼
            }
        }
        this.getCurrentPage = this.getCurrentPage.bind(this)
    }
    getCurrentPage(currentPage) {
        this.setState({
            dataList:data[currentPage-1].name
        })
    }
    render() {
        return (
            <div>
                <div>
                    {this.state.dataList}
                </div>
                <Pagecomponent pageConfig={this.state.pageConfig}
                               pageCallbackFn={this.getCurrentPage}/>
            </div>

        )
    }
}
export default Pagecontainer
複製程式碼

至此一個分頁元件就開發完了,如有疑問歡迎到我個人部落格的該文章下留言, 原文地址:戳這裡

打個小廣告~~~~歡迎訪問我的個人部落格www.brandhuang.com

相關文章