123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <script lang="ts">
- import { TUIChatKit } from "./TUIKit";
- import { TUITranslateService } from "@tencentcloud/chat-uikit-engine";
- // #ifndef MP-WEIXIN
- import { locales } from "./locales";
- // #endif
- import TIMPushConfigs from "./timpush-configs.json";
- // #ifdef APP-PLUS
- // register TencentCloud-TIMPush
- import { IEnterChatConfig, loginFromStorage, openChat } from "./loginChat";
- import TUIChatEngine from "@tencentcloud/chat-uikit-engine";
- import { getNotificationAuth } from "./utils/getNotificationAuth";
- const TIMPush: any = uni.requireNativePlugin("TencentCloud-TIMPush");
- console.warn(
- `TencentCloud-TIMPush: uni.requireNativePlugin ${TIMPush ? "success" : "fail"}`
- );
- uni.$TIMPush = TIMPush;
- uni.$TIMPushConfigs = TIMPushConfigs;
- const enterChatConfig: IEnterChatConfig = {
- isLoginChat: false,
- conversationID: "",
- };
- // register TencentCloud-TUICallKit
- const TUICallKit: any = uni.requireNativePlugin("TencentCloud-TUICallKit");
- console.warn(
- `TencentCloud-TUICallKit: uni.requireNativePlugin ${TUICallKit ? "success" : "fail"}`
- );
- uni.$TUICallKit = TUICallKit;
- // #endif
- // #ifdef APP-ANDROID
- const notificationChannelInfo = {
- notificationChannelList: [
- {
- channelID: "tuikit", // 控制台配置 oppo 的 channelID
- channelName: "tuikit", // 自定义名称
- channelDesc: "自定义铃音", // 自定义描述
- channelSound: "private_ring", // 自定义铃音的名称且不需要后缀名
- },
- ],
- };
- uni.$TIMPush.createNotificationChannels(notificationChannelInfo);
- // #endif
- // #ifndef MP-WEIXIN
- TUITranslateService.provideLanguages(locales);
- TUITranslateService.useI18n();
- // #endif
- TUIChatKit.init();
- const SDKAppID = 1600005199; // 测试版
- // const SDKAppID = 1600042286; // 正式
- const secretKey = "82f8b45664eb3252cf02f939aaac43cd81ba25b7c7f94f45be4f05e173e1ab2d"; // 测试key
- // const secretKey = "acecc3c3e0a1a83c7b8fa383467bd658c8bb1297c1f2f1f15088add915e68504"; // Your 正式key
- uni.$chat_SDKAppID = SDKAppID;
- uni.$chat_secretKey = secretKey;
- export default {
- onLaunch: function () {
- // #ifdef APP-PLUS
- // 在 App.vue, 生命钩子 onLaunch 中监听
- if (typeof uni.$TIMPush === "undefined") {
- console.warn(
- "如果您使用推送功能,需集成 TIMPush 插件,使用真机运行并且自定义基座调试,请参考官网文档:https://cloud.tencent.com/document/product/269/103522"
- );
- } else {
- getNotificationAuth();
- uni.$on("uikitLogin", () => {
- enterChatConfig.isLoginChat = true;
- openChat(enterChatConfig);
- });
- uni.$TIMPush.setOfflinePushListener((data) => {
- const { notification = "" } = data?.data || {};
- if (!notification) {
- return;
- }
- const { entity } = JSON.parse(notification);
- const type =
- entity.chatType === 1
- ? TUIChatEngine.TYPES.CONV_C2C
- : TUIChatEngine.TYPES.CONV_GROUP;
- enterChatConfig.conversationID = `${type}${entity.sender}`;
- if (enterChatConfig.isLoginChat && entity.sender) {
- openChat(enterChatConfig);
- }
- });
- loginFromStorage();
- }
- // #endif
- },
- onShow: function () {},
- onHide: function () {},
- };
- </script>
- <style>
- /* 每个页面公共css */
- uni-page-body,
- html,
- body,
- page {
- width: 100% !important;
- height: 100% !important;
- overflow: hidden;
- }
- </style>
|