资讯专栏INFORMATION COLUMN

React实战篇(React仿今日头条)

NicolasHe / 885人阅读

摘要:前言上次初学用写了个后台管理,这次便寻思写个移动端的项目。便有了这次的这个项目。然后通过来判断如何动画具体处理异步用来书写跟配置还有一些零零散散的知识点,就不介绍了,具体可以到上查看。个人博客在线观看地址

前言

上次初学用 react 写了个后台管理,这次便寻思写个移动端的项目。便有了这次的这个项目。

这个项目以前写了个 vue 的版本。有兴趣的可以 点击进入

模拟数据用的是 Easy Mock
用的是我以前写 vue-toutiao 用到的数据

账号: vue-toutiao
密码: 123456

技术栈

react + react-redux + react-router + webpack

结构:

build: webpack配置

config: 项目配置参数

src
actions: 存放 action 方法
assets: 静态资源文件,存放图片啥的
components: 常用组件
reducers: 存放 reducer
router: 路由管理
store: 状态管理 redux
styles: 样式文件
utils: 常用封装
views: 视图页面

static: 静态文件: 存放 favicon.ico 等等

效果演示

知识点 按需加载

通过 import() 方法加载组件, 在通过高阶组件处理 import 返回的 Promise 结果。

// asyncComponent.js
import React from "react"

export default loadComponent => (
    class AsyncComponent extends React.Component {
        state = {
            Component: null,
        }
        async componentDidMount() {
            if (this.state.Component !== null) return
            try {
                const {default: Component} = await loadComponent()
                this.setState({ Component })
            }catch (err) {
                console.error(`Cannot load component in `);
                throw err
            }
        }

        render() {
            const { Component } = this.state
            return (Component) ?  : null
        }
    }
)

如下使用

import asyncComponent from "./asyncComponent"
const Demo = asyncComponent(() => import(`views/demo.js`))
路由设置

统一配置路由,及路由状态

import asyncComponent from "./asyncComponent"
const _import_views = file => asyncComponent(() => import(`views/${file}`))
export const loyoutRouterMap = [
    { 
        path: "/", 
        name: "首页", 
        exact: true,
        component: _import_views("Home")
    },
    { 
        path: "/video", 
        name: "视频",
        component: _import_views("Video")
    },
    { 
        path: "/headline", 
        name: "微头条",
        component: _import_views("Headline")
    },
    { 
        path: "/system", 
        name: "系统设置",
        auth: true, 
        component: _import_views("System")
    }
] 
登录拦截

通过路由配置中 auth 属性来判断是否需要登录
如以下配置

{ 
    path: "/system", 
    name: "系统设置",
    auth: true, 
    component: _import_views("System")
}

登陆配置及判断

// authRoute.js
import React from "react"
import store from "../store"
import { Route, Redirect } from "react-router-dom"

export default class extends React.Component {
    render () {
        let {component: Component, ...rest} = this.props
        // 是否登录
        if (!store.getState().user.user.name) {
            return 
        }
        return 
    }
}


// 生成route
const renderRouteComponent = routes => routes.map( (route, index) => {
    if (route.auth) { // 需要权限登录
        return 
    }
    return 
})
路由动画

通过 react-router-transition 做的切换动画。

然后通过 history.slideStatus 来判断如何动画

react-router-transition 具体API

redux-thunk处理action异步

redux-actions 来书写 action 跟 reducer

// action.js
import { createAction } from "redux-actions"
import axios from "utils/axios"
export const getHeadlineList = (params) => dispatch => {
    return new Promise( (resolve, reject) => {
        axios.get("headline/list", params)
            .then( res => {
                const list = res.data.list
                dispatch(createAction("GET_HEADLINE_LIST")(list))
                resolve(list)
            }).catch( err => {
                reject(err)
            })
    })
}

// reducer.js
import { handleActions } from "redux-actions"
import { combineReducers } from "redux"
const state = {
    headlineList: []
}
const headline = handleActions({
    GET_HEADLINE_LIST: (state, action) => {
        let list = action.payload
        state.headlineList = state.headlineList.concat(list)
        return {...state}
    }
}, state)
export default combineReducers({
    headline
})

// store.js  
// redux-thunk配置
import { createStore, compose, applyMiddleware  } from "redux"
import reducer from "../reducers"
import thunk from "redux-thunk"
const configureStore => createStore(
    reducer,
    compose(
        applyMiddleware(thunk)
    ) 
)
export default configureStore()
还有一些零零散散的知识点,就不介绍了,具体可以到 github 上查看。
github
个人博客
在线观看地址

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/94070.html

相关文章

  • 2017-08-01 前端日报

    摘要:前端日报精选掌握开发工具新一代前端开发技术和到底是咋回事第期深入浅出高阶组件基于的移动页面缓存解决方案译保护我们的,立刻停止狐步舞中文译中和之间的区别个人文章译什么是个人文章譯个人文章热身实战过渡与动画实现炫酷下拉, 2017-08-01 前端日报 精选 掌握Chrome开发工具:新一代前端开发技术exports、module.exports和export、export default...

    gclove 评论0 收藏0
  • 重写GridView实现仿今日头条的频道编辑页(1)

    摘要:但由于这里仅仅是实现一个,因此存储功能仅通过一个单例类来模拟实现。 本文旨在通过重写GridView,配合系统弹窗实现仿今日头条的频道编辑页面 注:由于代码稍长,本文仅列出关键部分,完整工程请参见【https://github.com/G9YH/YHChannelEdit】 在开始讲解盗版的实现方案前,让我们先来看看正版与盗版的实际使用效果对比,首先是正版 showImg(https:...

    张宪坤 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<