TransferShipmentContainer.js 1.71 KB

'use strict';

import React, { Component } from 'react';
import Immutable, {List, Record} from 'immutable';
import TransferShipment from '../components/TransferShipment/TransferShipment'

import {
    StyleSheet,
    View,
    Text,
    ListView,
    Dimensions,
    Platform,
} from 'react-native';

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';

import {Map} from 'immutable';

import * as transferShipmentActions from '../reducers/transferShipment/transferShipmentActions';

const actions = [
    transferShipmentActions,
];


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 TransferShipmentContainer extends Component {

	constructor(props) {
		super(props);
        this._goToStatsPage = this._goToStatsPage.bind(this);
	}

	componentDidMount() {

	}

    componentWillUnmount() {

    }

    _goToStatsPage(type,params) {
        this.props.actions.goToStatsPage(type);
    }

	render() {
		return (
			<View style={styles.container}>
				<TransferShipment goToStatsPage={this._goToStatsPage}/>
			</View>
		);
	}
}

let {width, height} = Dimensions.get('window');
let navbarHeight = (Platform.OS === 'android') ? 50 : 64;

let styles = StyleSheet.create({
    container: {
        top: navbarHeight,
        height: height - navbarHeight,
        paddingBottom: (Platform.OS === 'android') ? 24 : 0,
    },

});

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