zoukankan      html  css  js  c++  java
  • [Recompose] Replace a Component with Non-Optimal States using Recompose

    Learn how to use the ‘branch’ and ‘renderComponent’ higher-order components to show errors or messaging when your component is in a non-optimal state. Avoid putting extraneous logic to show errors or messaging into your core component by organizing your non-optimal states into custom higher-order components.

    import React from 'react';
    import { lifecycle, branch, compose, renderComponent } from 'recompose';
    
    const User = ({ name, status }) =>
        <div className="User">{ name }—{ status }</div>;
    
    const withUserData = lifecycle({
                                       componentDidMount() {
                                           fetchData().then(
                                               (users) => this.setState({ users }),
                                               (error) => this.setState({ error })
                                           );
                                       }
                                   });
    
    const UNAUTHENTICATED = 401;
    const UNAUTHORIZED = 403;
    const errorMsgs = {
        [UNAUTHENTICATED]: 'Not Authenticated!',
        [UNAUTHORIZED]: 'Not Authorized!',
    };
    
    const AuthError = ({ error }) => error.statusCode && <div className="Error">{ errorMsgs[error.statusCode] }</div>;
    
    const NoUsersMessage = () =>
        <div>There are no users to display</div>;
    
    
    // Mock Service
    const noUsers = [];
    const users = [
        { name: "Tim", status: "active" },
        { name: "Bob", status: "active" },
        { name: "Joe", status: "inactive" },
        { name: "Jim", status: "pending" },
    ];
    function fetchData() {
        return new Promise((resolve, reject) => {
            setTimeout(() => {
                // reject({ statusCode: UNAUTHENTICATED });
                // reject({ statusCode: UNAUTHORIZED })
                // resolve(noUsers);
                 resolve(users);
            }, 100);
        });
    }
    
    const hasError = ({error}) => error && error.statusCode;
    const hasNoUser = ({users}) => users && users.length === 0;
    
    const enhance = compose(
        withUserData,
        branch(hasError, renderComponent(AuthError)),
        branch(hasNoUser, renderComponent(NoUsersMessage)),
    );
    
    const User6 = enhance(({users}) => (
        <div className="UserList">
            { users && users.map((user) => <User {...user} />) }
        </div>
    ));
    
    export default User6;
  • 相关阅读:
    JavaScript constructor prototyoe
    bootstrap固定响应式导航
    跨浏览器事件处理程序
    原生JS实现字符串分割
    关于css里的class和id
    js动态创建表格方法
    关于css的默认宽度
    js字符串大小写转换
    C++类的一个重要成员:静态成员(二)——静态成员的定义
    C++ 类的一个重要成员:静态成员(一)
  • 原文地址:https://www.cnblogs.com/Answer1215/p/6861852.html
Copyright © 2011-2022 走看看