Plustar.js 1.87 KB
'use strict';

import React from 'react';
import ReactNative, {
	AppRegistry,
	Platform,
	StyleSheet,
	Dimensions,
	TouchableOpacity,
} from 'react-native';

import {
	Provider,
	connect
} from 'react-redux';

import configureStore from './store/configureStore';
import {Record, List, Map} from 'immutable';

import appInitialState from './reducers/app/appInitialState';
import plustarInitialState from './reducers/plustar/plustarInitialState';

import PlustarContainer from './containers/PlustarContainer';

import {
	setPlatform,
	setChannel,
} from './reducers/app/appActions';

import {
	setSegment,
	setGender,
} from './reducers/plustar/plustarActions';

function getInitialState() {
	const _initState = {
		app: (new appInitialState()),
    	plustar: (new plustarInitialState()),
	};
	return _initState;
}

function getInitSegment(type) {
	let segment = null;

	if (type == 0) {
		//潮流优选
		segment = new (Record({
			0: new (Record({
				title: '设计新潮',
				type: 4,
			})),
			1: new (Record({
				title: '潮流经典',
				type: 1,
			})),
		}));
	} else if (type == 1) {
		//明星原创
		segment = new (Record({
			0: new (Record({
				title: '明星潮品',
				type: 2,
			})),
			1: new (Record({
				title: '原创潮牌',
				type: 3,
			})),
		}));
	}
	return segment;
}

export default function native(platform) {

	let YH_Plustar = React.createClass({

		render() {
		  	const store = configureStore(getInitialState());
			store.dispatch(setPlatform(platform));
			let segment = getInitSegment(this.props.initType);
			store.dispatch(setSegment(segment));
			if (this.props.initType == 0) {
				let gender = this.props.genderType;
				store.dispatch(setGender(gender));
			}


			return (
				<Provider store={store}>
					<PlustarContainer />
				</Provider>
			);
		}
	});

	AppRegistry.registerComponent('YH_Plustar', () => YH_Plustar);
}

let styles = StyleSheet.create({

});