[项目]Go语言与React实现图片浏览器 Day 7

增加React翻页功能,增加几个状态比如,当前显示的位置,总量还有预览几张照片(pageNum)等等,每次改变照片调用changePhoto方法同时更新这几个状态,页面效果也就跟着改变了。代码已经提交到GitHub:React Photo

PhotoItem.js

import React from 'react';
import '../config';
class PhotoItem extends React.Component {
    constructor(props) {
        super(props);
        console.log("constructor()");
        this.state = {
            serverUrl: global.constants.serverUrl,
            photoItem: props,
            showUrl: "",
            current: 0,
            nextIndex: 0,
            preIndex: 0,
            startIndex: 0,
            endIndex: 9,
            pageNum: 9,
            total: 0,
        }
        this.handlePrePhoto = this.handlePrePhoto.bind(this);
        this.handleNextPhoto = this.handleNextPhoto.bind(this);
        this.changePhoto = this.changePhoto.bind(this);
    }

    componentWillMount() {
        let current = localStorage.getItem('current');
        const {photoItem} = this.state.photoItem;
        if (current !== isNaN){
            console.log("getCurrent:"+current);
            this.setState({current: parseInt(current)});            
        }
        if ( photoItem.length >0){
            let index = 0;
            if (current!==0 && photoItem.length>current ){
                index = current;
            }            
            var item = photoItem[index];
            this.setState({
                showUrl : this.state.serverUrl+'show/'+item.FilePath +'/'+item.FileName,
                total : photoItem.length,
            });
        }
    }

    componentDidMount (){        
        let current =  this.state.current;
        if ( current >=0){            
            this.changePhoto(current);
        }
    }

    handlePrePhoto(){
        var current = 0;
        if (this.state.current>0){
            current = this.state.current-1;           

        }
        this.changePhoto(current);
    }

    handleNextPhoto(){
        var current = 0;
        if ( this.state.total >this.state.current){
            current = this.state.current+1;
        }
        this.changePhoto(current);
    }

    changePhoto(current){
        const {photoItem} = this.state.photoItem;
        let item = photoItem[current];
        let startIndex = this.state.startIndex;
        let endIndex = this.state.endIndex;
        if (current>4 && (this.state.total> this.state.pageNum)){
            if (current>(this.state.total-this.state.pageNum+1)){
                startIndex = this.state.total-this.state.pageNum;
                endIndex = this.state.total;
            }else{
                startIndex = current-4;
                endIndex = current+5;
            }
        }
        else{
            startIndex = 0;
            endIndex=this.state.pageNum;
        }

        if (this.state.total > current && current>=0){
            this.setState({
                current:current,
                showUrl : this.state.serverUrl+'show/'+item.FilePath +'/'+item.FileName,
                startIndex : startIndex,
                endIndex : endIndex,

            });
            localStorage.setItem('current',current);

        }else{
            console.log(" No photo.");
        }
    }

    render(){
        const {photoItem} = this.state.photoItem;

        return (
            <div className="photoMain">
                <div>total:{this.state.total},current:{this.state.current}
                ,startIndex:{this.state.startIndex},endIndex:{this.state.endIndex}</div>
                <div className="photo-detail">
                <ul>
                    <li onClick={this.handlePrePhoto.bind(this)}>
                        <p>⟸</p>                    
                    </li>
                    <li>
                    <img src={this.state.showUrl} alt={this.state.showUrl}></img>
                    </li>
                    <li onClick={this.handleNextPhoto.bind(this)} >
                        <p>⟹</p>
                    </li>
                </ul>
                </div>
                <div className="photo-list">
                <ul>
                    <li onClick={this.handlePrePhoto.bind(this)} ><p>⟸</p></li>
                    {photoItem.map((item,index) => (
                        (index >this.state.startIndex) && (index <this.state.endIndex)     ?                                      
                        <li key={item.FileName} onClick={this.changePhoto.bind(this,index)}>
                            <img src={this.state.serverUrl+'show/'+item.FilePath +'/'+item.FileName} alt={item.FileName}/>
                        </li>:null
                    ))}
                    <li onClick={this.handleNextPhoto.bind(this)} ><p>⟹</p></li>
                </ul>                
            </div> 
          </div>
        );
    }
}

export default PhotoItem;

PhotoList.css

body {
    margin: 0;
    padding: 0;
}

.photo-detail img {
    width: 900px;
}

.photo-detail p {
    display: inline-block;
    font-size: 50px;
    cursor:pointer;
    color: darkgoldenrod;
}

li {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.photo-list {
    display: inline;
}

ul {
    list-style: none;
}

.photo-list img {
    width: 150px;
}

.photo-list p {
    display: inline-block;
    font-size: 20px;
    cursor:pointer;
    color: darkgoldenrod;
}

截图

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值