[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;

 

转载于:https://www.cnblogs.com/Answer1215/p/6861852.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值