Outlet.js 1.13 KB
'use strict';

import React from 'react';
import ReactNative, {
	AppRegistry,
	Platform,
} 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 outletInitialState from './reducers/outlet/outletInitialState';

import OutletContainer from './containers/OutletContainer';

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


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

export default function native(platform) {

	let YH_Outlet = React.createClass({

		render() {
		  	const store = configureStore(getInitialState());
			store.dispatch(setPlatform(platform));
			store.dispatch(setHost(this.props.host));
			store.dispatch(setServiceHost(this.props.serviceHost));
			
			return (
				<Provider store={store}>
					<OutletContainer />
				</Provider>
			);
		}
	});

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