Files
tongxunruanjian/mobile-next/lib/pages/mine/account_setup/account_setup_logic.dart
T
编码工程师andmultica-agent 8046ec7483 feat(mobile-next): 导入官方 openim-flutter-demo 固定基线 3.8.3-patch.3 并完成双构建
- 上游: 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>
2026-08-19 15:24:33 +08:00

136 lines
3.5 KiB
Dart

import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
import 'package:get/get.dart';
import 'package:openim/routes/app_navigator.dart';
import 'package:openim_common/openim_common.dart';
import '../../../core/controller/im_controller.dart';
class AccountSetupLogic extends GetxController {
final imLogic = Get.find<IMController>();
final curLanguage = "".obs;
@override
void onReady() {
_updateLanguage();
super.onReady();
}
@override
void onClose() {
super.onClose();
}
@override
void onInit() {
_queryMyFullInfo();
super.onInit();
}
bool get isGlobalNotDisturb => imLogic.userInfo.value.globalRecvMsgOpt == 2;
bool get isAllowAddFriend => imLogic.userInfo.value.allowAddFriend == 1;
bool get isAllowBeep => imLogic.userInfo.value.allowBeep == 1;
bool get isAllowVibration => imLogic.userInfo.value.allowVibration == 1;
void _queryMyFullInfo() async {
final data = await LoadingView.singleton.wrap(
asyncFunction: () => Apis.queryMyFullInfo(),
);
if (data is UserFullInfo) {
final userInfo = UserFullInfo.fromJson(data.toJson());
imLogic.userInfo.update((val) {
val?.allowAddFriend = userInfo.allowAddFriend;
val?.allowBeep = userInfo.allowBeep;
val?.allowVibration = userInfo.allowVibration;
});
}
}
void toggleNotDisturbMode() async {
var status = isGlobalNotDisturb ? 0 : 2;
await LoadingView.singleton
.wrap(asyncFunction: () => OpenIM.iMManager.userManager.setGlobalRecvMessageOpt(status: status));
imLogic.userInfo.update((val) {
val?.globalRecvMsgOpt = status;
});
}
void toggleBeep() async {
final allowBeep = !isAllowBeep ? 1 : 2;
await LoadingView.singleton.wrap(
asyncFunction: () => Apis.updateUserInfo(
allowBeep: allowBeep,
userID: OpenIM.iMManager.userID,
),
);
imLogic.userInfo.update((val) {
val?.allowBeep = allowBeep;
});
}
void toggleVibration() async {
final allowVibration = !isAllowVibration ? 1 : 2;
await LoadingView.singleton.wrap(
asyncFunction: () => Apis.updateUserInfo(
allowVibration: allowVibration,
userID: OpenIM.iMManager.userID,
),
);
imLogic.userInfo.update((val) {
val?.allowVibration = allowVibration;
});
}
void toggleForbidAddMeToFriend() async {
final allowAddFriend = !isAllowAddFriend ? 1 : 2;
final data = await LoadingView.singleton.wrap(
asyncFunction: () => Apis.updateUserInfo(
allowAddFriend: allowAddFriend,
userID: OpenIM.iMManager.userID,
),
);
imLogic.userInfo.update((val) {
val?.allowAddFriend = allowAddFriend;
});
}
void blacklist() => AppNavigator.startBlacklist();
void clearChatHistory() async {
var confirm = await Get.dialog(CustomDialog(
title: StrRes.confirmClearChatHistory,
));
if (confirm == true) {
LoadingView.singleton.wrap(asyncFunction: () async {
await OpenIM.iMManager.messageManager.deleteAllMsgFromLocalAndSvr();
});
}
}
void languageSetting() => AppNavigator.startLanguageSetup();
void _updateLanguage() {
var index = DataSp.getLanguage() ?? 0;
switch (index) {
case 1:
curLanguage.value = StrRes.chinese;
break;
case 2:
curLanguage.value = StrRes.english;
break;
default:
curLanguage.value = StrRes.followSystem;
break;
}
}
void unlockSetup() => AppNavigator.startUnlockSetup();
void changePwd() => AppNavigator.startChangePassword();
}