ListContainer.js 3.99 KB
'use strict'

import React, {Component} from 'react';
import ReactNative, {
    StyleSheet,
    Dimensions,
    Platform,
    View,
    Text,
    Image,
    NativeModules,
    InteractionManager,
    NativeAppEventEmitter,
} from 'react-native'

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as listActions from '../reducers/list/listActions';

import List from '../components/list/List';
import {urlAddParamOfType} from '../../common/utils/urlHandler';

const actions = [
    listActions,
];

function mapStateToProps(state) {
    return {
        ...state
    };
}

function mapDispatchToProps(dispatch) {

    const creators = Map()
        .merge(...actions)
        .filter(value => typeof value === 'function')
        .toObject();

    return {
        actions: bindActionCreators(creators, dispatch),
        dispatch
    };
}

class ListContainer extends Component {
    constructor(props) {
        super(props);

        this._onRefresh = this._onRefresh.bind(this);
        this._onEndReached = this._onEndReached.bind(this);
        this._onPressCell = this._onPressCell.bind(this);
        this._onPressShare = this._onPressShare.bind(this);
        this._onPressLike = this._onPressLike.bind(this);
        this._onPressHeader = this._onPressHeader.bind(this);

    }

    componentDidMount() {
        this.props.actions.getAuthor();
        this.props.actions.getArticleList();
    }

    componentWillUnmount() {

    }

    _onPressCell(url, index, article_id) {
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);

        let {list} = this.props;
        let type = list.type;
        let name = 'YB_STROLL_AUTHOR_FLR_C'
        if (type == 'editor') {
            name = 'YB_STROLL_AUTHOR_FLR_C'
        } else {
            name = 'YB_STROLL_TAG_FLR_C'
        }

        let params = {
            CONTENT_INDEX: parseInt(index) + 1 + '',
            CONTENT_ID: article_id,
        };
        NativeModules.YH_CommonHelper.logEvent(name, params);
    }

    _onPressHeader(url, author_id, id) {
        let taggedUrl = urlAddParamOfType(url, '11')
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(taggedUrl);

        let params = {
            ID: id + '' ,
            UID: author_id,
        };
        NativeModules.YH_CommonHelper.logEvent('YB_STROLL_LIST_HEAD_C', params);
    }

    _onRefresh() {
        InteractionManager.runAfterInteractions(() => {
            this.props.actions.getArticleList(true);
        });
    }

    _onPressShare(param) {
        ReactNative.NativeModules.YH_CommonHelper.shareWithParam(param);
    }

    _onPressLike(article_id, isLike) {
        this.props.actions.onPressLike(article_id, isLike);

        let {list} = this.props;
        let type = list.type;
        let name = 'YB_STROLL_AUTHOR_LIKE_C'
        if (type == 'editor') {
            name = 'YB_STROLL_AUTHOR_LIKE_C'
        } else {
            name = 'YB_STROLL_TAG_LIKE_C'
        }

        let params = {
            C_TYPE: isLike ? '1' : '2' ,
            CONTENT_ID: article_id,
        };
        NativeModules.YH_CommonHelper.logEvent(name, params);
    }

    _onEndReached() {
        InteractionManager.runAfterInteractions(() => {
            this.props.actions.getArticleList();
        });
    }

    render() {
        let {list} = this.props;
        return (
            <View style={styles.container}>
                <List
                    ref={(c) => {
                        this.sale = c;
                    }}
                    data={list}
                    onPressCell={this._onPressCell}
                    onEndReached={this._onEndReached}
                    onPressShare={this._onPressShare}
                    onPressLike={this._onPressLike}
                    onPressHeader={this._onPressHeader}
                />
            </View>
        );
    }
}
let styles = StyleSheet.create({
    container: {
        flex: 1,
    },

});

export default connect(mapStateToProps, mapDispatchToProps)(ListContainer);