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>
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'edit_name_logic.dart';
|
||||
|
||||
class EditGroupNameBinding extends Bindings {
|
||||
@override
|
||||
void dependencies() {
|
||||
Get.lazyPut(() => EditGroupNameLogic());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:openim/pages/chat/group_setup/group_setup_logic.dart';
|
||||
import 'package:openim_common/openim_common.dart';
|
||||
|
||||
enum EditNameType {
|
||||
myGroupMemberNickname,
|
||||
groupNickname,
|
||||
}
|
||||
|
||||
class EditGroupNameLogic extends GetxController {
|
||||
final groupSetupLogic = Get.find<GroupSetupLogic>();
|
||||
late TextEditingController inputCtrl;
|
||||
late EditNameType type;
|
||||
String? faceUrl;
|
||||
|
||||
@override
|
||||
void onInit() {
|
||||
type = Get.arguments['type'];
|
||||
faceUrl = Get.arguments['faceUrl'];
|
||||
inputCtrl = TextEditingController(
|
||||
text: type == EditNameType.groupNickname ? groupSetupLogic.groupInfo.value.groupName : groupSetupLogic.myGroupMembersInfo.value.nickname,
|
||||
);
|
||||
super.onInit();
|
||||
}
|
||||
|
||||
@override
|
||||
void onClose() {
|
||||
inputCtrl.dispose();
|
||||
super.onClose();
|
||||
}
|
||||
|
||||
String? get title => type == EditNameType.myGroupMemberNickname ? StrRes.myGroupMemberNickname : StrRes.groupName;
|
||||
|
||||
void save() async {
|
||||
if (inputCtrl.text.trim().length > 16) {
|
||||
return IMViews.showToast(StrRes.createGroupTips);
|
||||
}
|
||||
await LoadingView.singleton.wrap(asyncFunction: () async {
|
||||
if (type == EditNameType.groupNickname) {
|
||||
await OpenIM.iMManager.groupManager
|
||||
.setGroupInfo(GroupInfo(groupID: groupSetupLogic.groupInfo.value.groupID, groupName: inputCtrl.text.trim()));
|
||||
} else if (type == EditNameType.myGroupMemberNickname) {
|
||||
await OpenIM.iMManager.groupManager.setGroupMemberNickname(
|
||||
groupID: groupSetupLogic.groupInfo.value.groupID,
|
||||
userID: OpenIM.iMManager.userID,
|
||||
groupNickname: inputCtrl.text.trim(),
|
||||
);
|
||||
}
|
||||
});
|
||||
IMViews.showToast(StrRes.setSuccessfully);
|
||||
Get.back();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:openim_common/openim_common.dart';
|
||||
|
||||
import 'edit_name_logic.dart';
|
||||
|
||||
class EditGroupNamePage extends StatelessWidget {
|
||||
final logic = Get.find<EditGroupNameLogic>();
|
||||
|
||||
EditGroupNamePage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (logic.type == EditNameType.groupNickname) {
|
||||
return Scaffold(
|
||||
backgroundColor: Colors.white,
|
||||
appBar: TitleBar.back(),
|
||||
body: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
67.verticalSpace,
|
||||
StrRes.editGroupName.toText..style = Styles.ts_0C1C33_20sp,
|
||||
10.verticalSpace,
|
||||
StrRes.editGroupTips.toText..style = Styles.ts_8E9AB0_15sp,
|
||||
37.verticalSpace,
|
||||
Row(
|
||||
children: [
|
||||
50.horizontalSpace,
|
||||
AvatarView(
|
||||
url: logic.faceUrl,
|
||||
isGroup: true,
|
||||
),
|
||||
Expanded(
|
||||
child: TextField(
|
||||
controller: logic.inputCtrl,
|
||||
style: Styles.ts_0C1C33_17sp,
|
||||
autofocus: true,
|
||||
inputFormatters: [LengthLimitingTextInputFormatter(16)],
|
||||
decoration: InputDecoration(
|
||||
border: InputBorder.none,
|
||||
isDense: true,
|
||||
contentPadding: EdgeInsets.symmetric(
|
||||
vertical: 10.h,
|
||||
horizontal: 12.w,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
40.horizontalSpace,
|
||||
],
|
||||
),
|
||||
const Expanded(child: SizedBox.shrink()),
|
||||
Button(
|
||||
margin: EdgeInsets.symmetric(horizontal: 100.w),
|
||||
text: StrRes.save,
|
||||
onTap: logic.save,
|
||||
),
|
||||
const Expanded(child: SizedBox.shrink()),
|
||||
],
|
||||
));
|
||||
}
|
||||
return Scaffold(
|
||||
appBar: TitleBar.back(
|
||||
title: logic.title,
|
||||
right: StrRes.save.toText
|
||||
..style = Styles.ts_0C1C33_17sp
|
||||
..onTap = logic.save,
|
||||
),
|
||||
backgroundColor: Styles.c_FFFFFF,
|
||||
body: Column(
|
||||
children: [
|
||||
22.verticalSpace,
|
||||
Container(
|
||||
margin: EdgeInsets.symmetric(horizontal: 10.w),
|
||||
decoration: BoxDecoration(
|
||||
color: Styles.c_E8EAEF,
|
||||
borderRadius: BorderRadius.circular(4.r),
|
||||
),
|
||||
child: TextField(
|
||||
controller: logic.inputCtrl,
|
||||
style: Styles.ts_0C1C33_17sp,
|
||||
autofocus: true,
|
||||
inputFormatters: [LengthLimitingTextInputFormatter(16)],
|
||||
decoration: InputDecoration(
|
||||
border: InputBorder.none,
|
||||
isDense: true,
|
||||
contentPadding: EdgeInsets.symmetric(
|
||||
vertical: 10.h,
|
||||
horizontal: 12.w,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user