app.jsx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import { Component } from 'react'
  2. import { Provider } from 'react-redux'
  3. import configStore from './store'
  4. import './app.less'
  5. import 'taro-skeleton/dist/index.css'
  6. import Taro from "@tarojs/taro";
  7. import { getWxConfig } from './utils/servers/servers';
  8. import 'taro-ui/dist/style/components/drawer.scss';
  9. import 'taro-ui/dist/style/components/list.scss';
  10. const store = configStore()
  11. class App extends Component {
  12. componentDidMount() {
  13. //在页面加载完成的生命周期加入这段代码,Taro在componentDidMount生命周期中使用,原生在onLoad中使用
  14. const updateManager = Taro.getUpdateManager()
  15. updateManager.onCheckForUpdate(function (res) {
  16. // 请求完新版本信息的回调
  17. //console.log('请求完新版本信息的回调')
  18. // console.log(res.hasUpdate);
  19. })
  20. updateManager.onUpdateReady(function () {
  21. Taro.showModal({
  22. title: '更新提示',
  23. content: '新版本已经准备好,是否重启应用?',
  24. success(res) {
  25. if (res.confirm) {
  26. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  27. updateManager.applyUpdate()
  28. }
  29. }
  30. })
  31. })
  32. updateManager.onUpdateFailed(function () {
  33. // 新版本下载失败
  34. console.log('新版本下载失败')
  35. // errorReport(ERROREVENTS.VERSION_UPGRADE_FAILED, '新版本下载失败');
  36. })
  37. }
  38. componentDidShow() {
  39. Taro.eventCenter.on('getStorageSync', () => {
  40. let token = Taro.getStorageSync('token');
  41. if (token) {
  42. this.getStorageSync();
  43. }
  44. })
  45. let token = Taro.getStorageSync('token');
  46. if (token) {
  47. this.getStorageSync();
  48. }
  49. this.getWxConfig();
  50. }
  51. componentDidHide() {
  52. Taro.closeSocket();
  53. }
  54. getWxConfig() {
  55. getWxConfig({}).then(v => {
  56. if (v.error.length === 0) {
  57. Taro.setStorageSync("wxConfig", v.data || {});
  58. } else {
  59. Taro.showToast({
  60. title: v.error[0].message,
  61. icon: 'none'
  62. })
  63. }
  64. }).catch((error) => {
  65. console.log(error)
  66. })
  67. }
  68. getStorageSync() {
  69. let token = Taro.getStorageSync('token');
  70. //建立连接
  71. Taro.connectSocket({
  72. header: {
  73. 'token': token,
  74. },
  75. // 生产
  76. // url: 'wss://bm.jishutao.com/webSocketServer',
  77. // 本地
  78. url: 'wss://172.16.0.255:8080/webSocketServer'
  79. // 测试
  80. // url: 'wss://uat.jishutao.com/webSocketServer'
  81. })
  82. //连接成功
  83. Taro.onSocketOpen(function () {
  84. console.log('连接成功')
  85. })
  86. //接收数据
  87. Taro.onSocketMessage(function (data) {
  88. console.log('接收数据', data)
  89. Taro.eventCenter.trigger('GoPuncsshIn', data)
  90. })
  91. //连接失败
  92. Taro.onSocketError(function () {
  93. console.log('websocket连接失败!');
  94. })
  95. //连接关闭
  96. Taro.onSocketClose(function () {
  97. console.log('websocket连接关闭!');
  98. })
  99. }
  100. componentDidCatchError() { }
  101. // 在 App 类中的 render() 函数没有实际作用
  102. // 请勿修改此函数
  103. render() {
  104. return (
  105. <Provider store={store}>
  106. {this.props.children}
  107. </Provider>
  108. )
  109. }
  110. }
  111. export default App