|
|
'use strict'
|
|
|
|
|
|
import React, {Component} from 'react';
|
|
|
import ReactNative, {
|
|
|
StyleSheet,
|
|
|
Dimensions,
|
|
|
Platform,
|
|
|
View,
|
|
|
NativeModules,
|
|
|
InteractionManager,
|
|
|
NativeAppEventEmitter,
|
|
|
} from 'react-native'
|
|
|
|
|
|
import {bindActionCreators} from 'redux';
|
|
|
import {connect} from 'react-redux';
|
|
|
import {Map} from 'immutable';
|
|
|
import * as detailActions from '../reducers/detail/detailActions';
|
|
|
import BrandIntro from '../components/detail/BrandIntro'
|
|
|
|
|
|
const actions = [
|
|
|
detailActions,
|
|
|
];
|
|
|
|
|
|
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 DetailContainer extends Component {
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
}
|
|
|
|
|
|
render() {
|
|
|
let {detail} = this.props;
|
|
|
return (
|
|
|
<View style={styles.container}>
|
|
|
<BrandIntro />
|
|
|
</View>
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
let styles = StyleSheet.create({
|
|
|
container: {
|
|
|
flex: 1,
|
|
|
},
|
|
|
|
|
|
});
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(DetailContainer); |
...
|
...
|
|