index.js 12.1 KB
Newer Older
1
import config from '@/uni_modules/uni-im/common/config.js';
DCloud_JSON's avatar
DCloud_JSON 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import $state from '@/uni_modules/uni-im/sdk/state/index.js';
import $methods from '@/uni_modules/uni-im/sdk/methods/index.js';
import {init as initIndexDB} from '@/uni_modules/uni-im/sdk/ext/indexDB.js';
import { mutations as uniIdMutations} from '@/uni_modules/uni-id-pages/common/store.js';
import $utils from '@/uni_modules/uni-im/sdk/utils';

import checkVersion from './checkVersion'
import onAppActivateStateChange from './onAppActivateStateChange'
import onNotification from './onNotification';

import clearData from './clearData'
import msgEvent from './msgEvent'
import getCloudMsg from './getCloudMsg'
import onSocketStateChange from './onSocketStateChange'
import imData from './imData'
import onlyOneWebTab from './onlyOneWebTab'

19

DCloud_JSON's avatar
DCloud_JSON 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
// #ifdef APP
// import sqlite from './sqlite.js'
// #endif

const modules = {
  checkVersion,
  onAppActivateStateChange,
  clearData,
  msgEvent,
  getCloudMsg,
  onSocketStateChange,
  imData,
  onlyOneWebTab,
  onNotification
};


// console.log('modules', modules);

const version = '3.0.0';

export default async function (initParam) {
  // console.log('initParam:', initParam, this)
  // 检查当前客户端版本号,如果低于最新版本,App端提示升级。其他端需要做本地数据的清洗
  modules.checkVersion(version);

  // 注册(扩展的)消息类型
  $methods.msgTypes.registerTypes()

    
  // #ifdef H5
  // 限制 im 在浏览器内只能由一个页签打开
  modules.onlyOneWebTab();
  try {
    // 初始化 indexDB (如果版本号不一致会自动清空过期数据)
    const initIndexDBRes = await initIndexDB(version);
    $state.indexDB = initIndexDBRes.target.result;
  } catch (e) {
    console.error(e)
    uni.showModal({
      content: JSON.stringify(e),
      showCancel: false
    });
  }
  // #endif
  
  
  // 如果已经登录就直接初始化数据
  if (uniCloud.getCurrentUserInfo().tokenExpired > Date.now()) {
    await modules.imData.init()
  } else {
    console.log("登录状态过期,暂不初始化数据");
  }
  // 登录成功后 初始化数据
  uni.$on('uni-id-pages-login-success', async () => {
    console.log("登录成功,开始初始化数据");
    modules.imData.init()
  });
  
  modules.imData.onInitAfter(() => {
    //初始化务必后再 监听im消息
    uni.onPushMessage(res => {
      // console.log('uni_on_PushMessage', res.data.payload);
      switch (res.data.payload.type) {
        case "uni-im":
          modules.msgEvent.emitMsg(res)
          break;
        case "uni-im-notification":
          modules.onNotification(res) //添加好友相关模块,暂不维护
          break;
        default:
          break;
      }
    })
  })

  // 监听并记录socket连接状态
  modules.onSocketStateChange((state, count) => {
    this.socketConnectState = state;
    if (count > 1) {
      // 大于1,说明是断开后重连;获取socket断开时丢失的数据
      modules.getCloudMsg()
    }
  });
  // console.log('this.socketConnectState', this.socketConnectState);
  
  // 监听应用处于“活动状态”,并记录状态和变成活动状态的次数。
  modules.onAppActivateStateChange((state, count) => {
    this.appActivateState = state;
    if (!state) return;
    // #ifdef APP
    //清理系统通知栏消息和app角标
    plus.push.clear()
    plus.runtime.setBadgeNumber(0)
    // 查询一次缺失的云端消息
    modules.getCloudMsg()
    // #endif
117 118 119 120
    
    // 拿到当前页面的路由
    const pages = getCurrentPages()
    const currentPage = pages[pages.length - 1]
121
    const isLoginPage = currentPage?.route.includes('uni_modules/uni-id-pages/pages/login')
122
    
DCloud_JSON's avatar
DCloud_JSON 已提交
123 124
    // 第二次 activate 之后开始 检查token是否已经过期,如果已经过期则重定向至登录页面
    const { tokenExpired } = uniCloud.getCurrentUserInfo()
125
    if (!isLoginPage && count > 1 && tokenExpired < Date.now()) {
DCloud_JSON's avatar
DCloud_JSON 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
      console.info('uni-im检测到,当前用户登录过且当前登录状态已过期,将自动跳转至登录页面。')
      uni.reLaunch({
        url: '/uni_modules/uni-id-pages/pages/login/login-withpwd',
        complete(e) {
          console.log('uni.reLaunch to login page', e)
        }
      })
    }
  });

  // 退出登录时,清空(归零)相关数据
  uni.$on('uni-id-pages-logout', () => modules.clearData());
  
  $state.onMsg = modules.msgEvent.onMsg
  $state.offMsg = modules.msgEvent.offMsg
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
  
  // #ifndef H5
  // 提前拿到键盘高度,防止第一次在会话点击输入框时,输入框的高度弹起速度慢
  $state.keyboardMaxHeight = uni.getStorageSync('uni-im-data-keyboard-max-height') || 0;
  console.log('键盘高度', $state.keyboardMaxHeight);
  // if ($state.keyboardMaxHeight === 0) {
  //   uni.onKeyboardHeightChange((e) => {
  //     if (e.height > $state.keyboardMaxHeight) {
  //       $state.keyboardMaxHeight = e.height;
  //       uni.setStorageSync('uni-im-data-keyboard-max-height', e.height);
  //       console.log('获取到键盘高度,并存储', e.height);
  //     }
  //   });
  // }
  // #endif
DCloud_JSON's avatar
DCloud_JSON 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169

  // #ifdef APP
  // 初始化 本地数据库
  // sqlite.init();
  // 将sqlite对象存储到全局变量下
  // getApp().globalData.sqlite = sqlite;
  
  // android 平台设置推送通道渠道id
  if (uni.getSystemInfoSync().platform == "android") {
    try{
      const plugin = uni.requireNativePlugin("DCloud-PushSound");
      plugin.setCustomPushChannel(
        {
          // soundName: "pushsound",
170 171
          channelId: config.uniPush.channel.id,
          channelDesc: config.uniPush.channel.desc,
DCloud_JSON's avatar
DCloud_JSON 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
          enableLights: true,
          enableVibration: true,
          importance: 4,
          lockscreenVisibility: 1
        }
      );
    }catch(e){
      // console.error('android 平台设置推送通道渠道id',e);
    }
  }
  // #endif

  //时间戳心跳(定时器)用于刷新:消息或会话与当前的时间差。ps:全局共享一个定时器变量。比启多个定时器性能更好
  setInterval(() => {
    $state.heartbeat = Date.now();
  }, 1000)

  // 监听窗口变化
  // #ifdef H5
  function setIsWidescreen() {
    let oldState = $state.isWidescreen
    $state.isWidescreen = window.innerWidth > 960
  }
  // window.addEventListener('resize',setIsWidescreen);
  // setIsWidescreen();
  // #endif

  const audioContext = uni.createInnerAudioContext()
  let _audioContext = {}
  Object.defineProperty(_audioContext, 'src', {
    set(url) {
      audioContext.src = url;
    },
    get() {
      return audioContext.src;
    }
  })
  $state.audioContext = new Proxy(_audioContext, {
    get(target, propKey, receiver) {
      return audioContext[propKey]
    }
  })
  
  // 获取系统信息
  $state.systemInfo = uni.getSystemInfoSync()
  // todo: 临时方案,为了解决部分老设备同步方法获取到的信息不准确的问题
  uni.getSystemInfo({
    success: (res) => {
      $state.systemInfo = res;
      // console.log('this.systemInfo',$state.systemInfo);
    },
    fail: (e) => {
      console.error('获取系统信息失败', e);
    }
  });

  // 检测屏幕特性
  if ($state.systemInfo.deviceType === 'pc') {
    // pc 只支持宽屏模式(会限制 page 的 min-width)
    $state.isWidescreen = true
    $state.isTouchable = false
  } else {
    // 其它设备类型由屏幕宽度来判定
    $state.isWidescreen = $state.systemInfo.screenWidth >= 960
    $state.isTouchable = true
  }

  // #ifdef H5
  // 同步 键盘弹出/收起后,动态变化的窗口高度
  window.addEventListener('resize', () => {
    $state.systemInfo.windowHeight = window.innerHeight
  })
  // #endif

  // 通过拦截器监听路由变化,解决在非tabbar页面,无法设置TabBarBadge的问题
  let list = ['navigateTo', 'redirectTo', 'reLaunch', 'switchTab', 'navigateBack'];
  list.forEach((item) => {
    uni.addInterceptor(item, {
      success: event => {
        // 更新底部选项卡角标值
        updateTabBarBadge()
      }
    })
  })

  // #ifdef MP-WEIXIN
  // 微信的隐式API 监听路由变化
  wx.onAppRoute((res) => {
    // console.log('跳转', res)
    // 更新底部选项卡角标值
    updateTabBarBadge()
  })
  // #endif

  // 更新底部选项卡角标值
  function updateTabBarBadge() {
    setTimeout(() => {
      // console.log('updateTabBarBadge');
      /**
       * 默认每次路由发生变化都会更新updateTabBarBadge的值
       * 你可以根据自己的项目情况优化,比如首页就是tabbar的可以判断getCurrentPages().length 的长度决定是否继续
       */

      let unread_count = $state.notification.unreadCount()
      // console.log({unread_count});
      set(2, unread_count)

      // 获取未读会话消息总数
      unread_count = $state.conversation.unreadCount()
      // console.log({unread_count});
      set(0, unread_count)

      // 设置底部选项卡角标值
      function set(index, number) {
        try {
          if (number == 0) {
            uni.removeTabBarBadge({
              index,
              complete: (e) => {
                // console.log(e)
              }
            })
          } else {
            uni.setTabBarBadge({
              index,
              text: number + '',
              complete: (e) => {
                // console.log(e)
              }
            })
          }
        } catch (e) {
          // console.log('set tabBarBadge',e);
        }
      }
    }, 300);
  }

  // #ifdef H5
  uni.addInterceptor('switchTab', {
    invoke: (e) => {
      if (e.url.includes('/uni_modules/uni-im/pages/index/index')) {
        if ($state.matches) {
          let param = getUrlParam(e.url)
          // console.log('param----',param);
          if (param) {
            uni.$emit('uni-im-toChat', param)
          }
        }
      }
    }
  })

  function getUrlParam(url) {
    let u = url.split("?");
    if (typeof (u[1]) == "string") {
      u = u[1].split("&");
      let get = {};
      for (let i in u) {
        let j = u[i].split("=");
        get[j[0]] = j[1];
      }
      return get;
    } else {
      return {};
    }
  };
  // #endif

  // #ifdef H5
  if ($methods.extensions.hasExt('ui-esc')) {
    // 如果有扩展程序需要处理 ESC 键,则监听 ESC 键并传递给扩展程序
    $utils.appEvent.onKeyDown((evt) => {
      $methods.extensions.invokeExts('ui-esc')
      return true
    }, {
      order: 1000,
      match: {
        key: 'Escape',
        altKey: false,
        ctrlKey: false,
        shiftKey: false,
      }
    })
  }
  
  // uni.previewImage打开事件
  uni.addInterceptor('previewImage', {
    success: (res) => {
      
      setTimeout(() => {
        const previewImageDom = document.getElementById('u-a-p')
        const onDownEscapeKey = () => {
          // console.log('Escape')
          previewImageDom.getElementsByTagName('uni-swiper-item')[0].click()
          return true
        }
        $utils.appEvent.onKeyDown(onDownEscapeKey, {
          order: 0,
          match: {
            key: 'Escape',
            altKey: false,
            ctrlKey: false,
            shiftKey: false,
          }
        })
      
      // uni.previewImage关闭事件
        const closePreviewImage = () => {
          // console.log('关闭previewImage')
          $utils.appEvent.offKeyDown(onDownEscapeKey)
          previewImageDom.removeEventListener('click',closePreviewImage)
        }
        previewImageDom.addEventListener('click',closePreviewImage)
        
        // 临时方案,只有一张图片时,不显示导航条
        const swiperCount = previewImageDom.getElementsByTagName('uni-swiper-item').length
        if (swiperCount < 2) {
          let navigationDomList = previewImageDom.getElementsByClassName('uni-swiper-navigation')
          navigationDomList[0].remove()
          navigationDomList[0].remove()
        }
      },0)
    }
  })
  
  if (navigator.platform.indexOf('Win') > -1) {
    // win 系统时给 dom 最外层加一个class .windows方便样式调整
    document.body.classList.add('windows');
  }
  // #endif
  
  $utils.appEvent.onAppActivate(() => {
    $state.ext.appIsActive = true
  })
  $utils.appEvent.onAppDeactivate(() => {
    $state.ext.appIsActive = false
  })
}