- 上游: github.com/OpenIMSDK/openim-flutter-demo tag 3.8.3-patch.3 commit b3dfdb1e8aaeaaf6f0793e10cadd20d5c184a31f - 并行目录 mobile-next/ 原样导入(含 LICENSE),不覆盖现网 mobile/ - 锁定 Flutter 3.24.5 / Dart 3.5.4 / JDK 17 / Gradle 7.6.3 / AGP 7.3.1 - 实测 Android debug 与 release 构建均成功(见 docs/mobile-next-baseline-import.md) - 本提交可单独回退:git revert 1db1229(重写前) Co-authored-by: multica-agent <github@multica.ai>
74 lines
1.9 KiB
Dart
74 lines
1.9 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:openim/core/im_callback.dart';
|
|
import 'package:openim/pages/home/home_logic.dart';
|
|
import 'package:openim_common/openim_common.dart';
|
|
|
|
import '../../core/controller/im_controller.dart';
|
|
import '../../routes/app_navigator.dart';
|
|
|
|
class MineLogic extends GetxController {
|
|
final imLogic = Get.find<IMController>();
|
|
|
|
late StreamSubscription kickedOfflineSub;
|
|
|
|
void viewMyQrcode() => AppNavigator.startMyQrcode();
|
|
|
|
void viewMyInfo() => AppNavigator.startMyInfo();
|
|
|
|
void copyID() {
|
|
IMUtils.copy(text: imLogic.userInfo.value.userID!);
|
|
}
|
|
|
|
void accountSetup() => AppNavigator.startAccountSetup();
|
|
|
|
void aboutUs() => AppNavigator.startAboutUs();
|
|
|
|
void logout() async {
|
|
var confirm = await Get.dialog(CustomDialog(title: StrRes.logoutHint));
|
|
if (confirm == true) {
|
|
try {
|
|
await LoadingView.singleton.wrap(asyncFunction: () async {
|
|
await imLogic.logout();
|
|
await DataSp.removeLoginCertificate();
|
|
PushController.logout();
|
|
Get.find<HomeLogic>().conversationsAtFirstPage.clear();
|
|
});
|
|
AppNavigator.startLogin();
|
|
} catch (e) {
|
|
IMViews.showToast('e:$e');
|
|
}
|
|
}
|
|
}
|
|
|
|
void kickedOffline({String? tips}) async {
|
|
if (EasyLoading.isShow) {
|
|
EasyLoading.dismiss();
|
|
}
|
|
Get.snackbar(StrRes.accountWarn, tips ?? StrRes.accountException);
|
|
await DataSp.removeLoginCertificate();
|
|
PushController.logout();
|
|
AppNavigator.startLogin();
|
|
}
|
|
|
|
@override
|
|
void onInit() {
|
|
kickedOfflineSub = imLogic.onKickedOfflineSubject.listen((value) {
|
|
if (value == KickoffType.userTokenInvalid) {
|
|
kickedOffline(tips: StrRes.tokenInvalid);
|
|
} else {
|
|
kickedOffline();
|
|
}
|
|
});
|
|
super.onInit();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
kickedOfflineSub.cancel();
|
|
super.onClose();
|
|
}
|
|
}
|