Authored by 张丽霞

明星原创详情容器及头部简介

/*
* 潮流优选、明星原创
*/
'use strict';
import React, {Component} from 'react';
import ReactNative, {
View,
ScrollView,
Text,
NativeAppEventEmitter,
StyleSheet,
} from 'react-native';
export default class BrandIntro extends Component {
constructor(props) {
super(props);
}
componentDidMount() {
}
render() {
return (
<View style={styles.container}>
<Text>
明星原创详情页-头部简介
</Text>
</View>
);
}
}
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f0f0f0',
},
});
... ...
'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);
... ...
... ... @@ -4,6 +4,7 @@ import ReactNative from 'react-native';
import PlustarService from '../../services/DetailService';
const {
JUMP_WITH_URL
} = require('../../constants/actionTypes').default;
export function jumpWithUrl(url) {
... ...