140 Star 510 Fork 161

rplees / react-native-gitosc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.android.js 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
rplees 提交于 2016-04-20 17:56 . android适配2
/**
* 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_android.STAGING_KEY : constant.code_push_android.PRODUCTION_KEY;
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/rplees/react-native-gitosc.git
git@gitee.com:rplees/react-native-gitosc.git
rplees
react-native-gitosc
react-native-gitosc
master

搜索帮助