• [Recompose] Flatten a Prop using Recompose


    Learn how to use the ‘flattenProp’ higher order component to take a single object prop and spread each of its fields out as a prop.

    For example,we have a 'redux-react' like app:

    import React from 'react';
    import { withProps } from 'recompose';
    
    // Mock Configuration
    function ReactRedux() {
        const state = {
            name: 'Joe',
            status: 'active'
        };
        return {
            connect: (map) => withProps(map(state))
        };
    }
    
    const {connect} = ReactRedux();
    
    const UserStyle = {
        position: 'relative',
        background: 'lightblue',
        display: 'inline-block',
        padding: '10px',
        cursor: 'pointer',
        marginTop: '50px'
    };
    
    const mapStateToProps = (state) => ({
        name: state.name,
        status: state.status
    });
    
    let User4 = ({ status, name }) => (
        <div style={UserStyle}>
            {name} - {status}
        </div>
    );
    
    User4 = connect(mapStateToProps)(User4);
    
    export default User4;

    Here we using 'connect' & 'mapStateToProps'. 'connect' is also a HoC. 

    import React from 'react';
    import { withProps, compose, flattenProp } from 'recompose';
    
    // Mock Configuration
    function ReactRedux() {
        const state = {
           user: {
               name: 'Joo',
               status: 'inactive'
           },
           address: {
               street: 'SF',
               postcode: '10101'
           }
        };
        return {
            connect: (map) => withProps(map(state))
        };
    }
    
    const {connect} = ReactRedux();
    
    const UserStyle = {
        position: 'relative',
        background: 'lightblue',
        display: 'inline-block',
        padding: '10px',
        cursor: 'pointer',
        marginTop: '50px'
    };
    
    const mapStateToProps = (state) => ({
        user: state.user,
        address: state.address
    });
    
    const enhance = compose(
        connect(mapStateToProps),
        flattenProp('user')
    );
    
    let User4 = enhance(({ name, status, address }) => (
        <div style={UserStyle}>
            {name} - {status} - {address.street} - {address.postcode}
        </div>
    ));
    
    
    export default User4;

    'flattenPorp' helps to get single prop from object and spread its props.

  • 相关阅读:
    前端开发者也可以酷酷地开发桌面程序
    V部落,V人事
    jq 正方体旋转
    jq 实现旋转木马
    jquery 获取元素(父节点,子节点,兄弟节点)
    Vue.js面试题整理
    Java面试必备技能
    在前后端分离的SpringBoot项目中集成Shiro权限框架
    正则表达式大全
    Docker容器日志查看与清理
  • 原文地址:https://www.cnblogs.com/Answer1215/p/6856495.html
Copyright © 2020-2023  润新知