1 Star 0 Fork 161

Eallard / react-native-gitosc

forked from rplees / react-native-gitosc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.ios.js 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
rplees 提交于 2016-04-01 11:34 . fix code-push update issue.
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
const React = require("react-native");
const LoginComponent = require("./components/LoginComponent");
const RootTab = require("./components/RootTab");
const CommonComponents = require("./common/CommonComponents");
const OSCService = require("./service/OSCService");
const ShakeComponent = require('./components/ShakeComponent');
const codePush = require('react-native-code-push');
const constant = require('./config').constant;
const Toast = require('@remobile/react-native-toast');
const {
AppRegistry,
} = React;
const OSCGit = React.createClass({
getInitialState() {
return {loading: true}
},
getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
},
_query() {
OSCService.getUserFromCache()
.then(() => {
this.setState({loading: false});
});
},
componentWillMount() {
this._query();
OSCService.addListener('didLogout', () => {
Toast.showLongBottom("用户登出.");
this.setState(this.getInitialState());
this._query();
});
const random = this.getRandomInt(1, 10);
const cpKey = random % 2 == 0 ? constant.code_push.STAGING_KEY : constant.code_push.PRODUCTION_KEY;
// Prompt the user when an update is available
// and then display a "downloading" modal
//, (status) => {
// switch (status) {
// case codePush.SyncStatus.DOWNLOADING_PACKAGE:
// // Show "downloading" modal
// break;
// case codePush.SyncStatus.INSTALLING_UPDATE:
// // Hide "downloading" modal
// break;
// }
//}
codePush.sync({
updateDialog: true,
installMode: codePush.InstallMode.IMMEDIATE,
deploymentKey:cpKey
});
},
componentDidMount() {
},
componentWillUnmount: function() {
OSCService.removeListener('didLogout');
},
render() {
if(this.state.loading) {
return CommonComponents.renderLoadingView();
}
return <RootTab />;
}
});
AppRegistry.registerComponent('OSCGit', () => OSCGit);
JavaScript
1
https://gitee.com/eallard/react-native-gitosc.git
git@gitee.com:eallard/react-native-gitosc.git
eallard
react-native-gitosc
react-native-gitosc
master

搜索帮助