UserLogout.js 2.59 KB
/**
 * sub app userLogout
 * @author: lixia.zhang
 * @date: 2018/04/13
 */

'use strict';

import React from 'react';
import ReactNative, {
	AppRegistry,
	Platform,
	View
} from 'react-native';
import createReactClass from 'create-react-class';

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

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

import appInitialState from './reducers/app/appInitialState';
import userLogoutInitialState from './reducers/userLogout/userLogoutInitialState';
import UserLogoutContainer from './containers/UserLogoutContainer';
import UserLogoutClause from './containers/LogoutClauseContainer';
import UserLogoutFailedContainer from './containers/UserLogoutFailedContainer';
import UserLogoutStatusContainer from './containers/UserLogoutStatusContainer';

import {setPlatform, setHost, setChannel, setServiceHost} from './reducers/app/appActions';
import {processCancelFaildDesc} from './reducers/userLogout/userLogoutActions';

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

export default function native(platform) {

	let YH_UserLogout = createReactClass({

		render() {
            let type = this.props.type;
		  	const store = configureStore(getInitialState());
			store.dispatch(setPlatform(platform));
			store.dispatch(setHost(this.props.host));
			store.dispatch(setChannel(this.props.channelId));
			store.dispatch(setServiceHost(this.props.serviceHost));
            if (type == 'userLogoutClause') {
                return (
					<Provider store={store}>
						<UserLogoutClause />
					</Provider>
                );
            } else  if (type == 'userLogout'){
                return (
					<Provider store={store}>
						<UserLogoutContainer />
					</Provider>
                );
			} else  if (type == 'userLogoutFailed'){
                return (
					<Provider store={store}>
						<UserLogoutFailedContainer/>
					</Provider>
                );
            } else  if (type == 'userLogoutStatus'){
                return (
					<Provider store={store}>
						<UserLogoutStatusContainer/>
					</Provider>
                );
            } else  if (type == 'userLogoutReapply'){
                return (
					<Provider store={store}>
						<UserLogoutContainer
						reapply={true}/>
					</Provider>
                );
            } else  {
            	return (
					<Provider store={store}>
						<UserLogoutContainer />
					</Provider>
				)
			}

		}
	});

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