160 lines
4.5 KiB
Dart
160 lines
4.5 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:pilipala/http/msg.dart';
|
|
import 'package:pilipala/models/msg/session.dart';
|
|
import 'package:pilipala/pages/whisper/index.dart';
|
|
import '../../utils/feed_back.dart';
|
|
import '../../utils/storage.dart';
|
|
|
|
class WhisperDetailController extends GetxController {
|
|
int? talkerId;
|
|
late String name;
|
|
late String face;
|
|
late String mid;
|
|
late String heroTag;
|
|
RxList<MessageItem> messageList = <MessageItem>[].obs;
|
|
//表情转换图片规则
|
|
RxList<dynamic> eInfos = [].obs;
|
|
final TextEditingController replyContentController = TextEditingController();
|
|
Box userInfoCache = GStrorage.userInfo;
|
|
List emoteList = [];
|
|
List<String> picList = [];
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
if (Get.parameters.containsKey('talkerId')) {
|
|
talkerId = int.parse(Get.parameters['talkerId']!);
|
|
} else {
|
|
talkerId = int.parse(Get.parameters['mid']!);
|
|
}
|
|
name = Get.parameters['name']!;
|
|
face = Get.parameters['face']!;
|
|
mid = Get.parameters['mid']!;
|
|
heroTag = Get.parameters['heroTag']!;
|
|
}
|
|
|
|
Future querySessionMsg() async {
|
|
var res = await MsgHttp.sessionMsg(talkerId: talkerId);
|
|
if (res['status']) {
|
|
messageList.value = res['data'].messages;
|
|
// 找出图片
|
|
try {
|
|
for (var item in messageList) {
|
|
if (item.msgType == 2) {
|
|
picList.add(item.content['url']);
|
|
}
|
|
}
|
|
picList = picList.reversed.toList();
|
|
} catch (e) {
|
|
print('e: $e');
|
|
}
|
|
|
|
if (messageList.isNotEmpty) {
|
|
ackSessionMsg();
|
|
if (res['data'].eInfos != null) {
|
|
eInfos.value = res['data'].eInfos;
|
|
}
|
|
}
|
|
} else {
|
|
SmartDialog.showToast(res['msg']);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
// 消息标记已读
|
|
Future ackSessionMsg() async {
|
|
if (messageList.isEmpty) {
|
|
return;
|
|
}
|
|
await MsgHttp.ackSessionMsg(
|
|
talkerId: talkerId,
|
|
ackSeqno: messageList.last.msgSeqno,
|
|
);
|
|
}
|
|
|
|
Future sendMsg() async {
|
|
feedBack();
|
|
String message = replyContentController.text;
|
|
final userInfo = userInfoCache.get('userInfoCache');
|
|
if (userInfo == null) {
|
|
SmartDialog.showToast('请先登录');
|
|
return;
|
|
}
|
|
if (message == '') {
|
|
SmartDialog.showToast('请输入内容');
|
|
return;
|
|
}
|
|
var result = await MsgHttp.sendMsg(
|
|
senderUid: userInfo.mid,
|
|
receiverId: int.parse(mid),
|
|
content: {'content': message},
|
|
msgType: 1,
|
|
);
|
|
if (result['status']) {
|
|
String content = jsonDecode(result['data']['msg_content'])['content'];
|
|
messageList.insert(
|
|
0,
|
|
MessageItem(
|
|
msgSeqno: result['data']['msg_key'],
|
|
senderUid: userInfo.mid,
|
|
receiverId: int.parse(mid),
|
|
content: {'content': content},
|
|
msgType: 1,
|
|
timestamp: DateTime.now().millisecondsSinceEpoch,
|
|
),
|
|
);
|
|
eInfos.addAll(emoteList);
|
|
replyContentController.clear();
|
|
try {
|
|
late final WhisperController whisperController =
|
|
Get.find<WhisperController>();
|
|
whisperController.refreshLastMsg(talkerId!, message);
|
|
} catch (_) {}
|
|
} else {
|
|
SmartDialog.showToast(result['msg']);
|
|
}
|
|
}
|
|
|
|
void removeSession(context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return AlertDialog(
|
|
clipBehavior: Clip.hardEdge,
|
|
title: const Text('提示'),
|
|
content: const Text('确认清空会话内容并移除会话?'),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: Get.back,
|
|
child: Text(
|
|
'取消',
|
|
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
|
),
|
|
),
|
|
TextButton(
|
|
onPressed: () async {
|
|
var res = await MsgHttp.removeSession(talkerId: talkerId);
|
|
if (res['status']) {
|
|
SmartDialog.showToast('操作成功');
|
|
try {
|
|
late final WhisperController whisperController =
|
|
Get.find<WhisperController>();
|
|
whisperController.removeSessionMsg(talkerId!);
|
|
Get.back();
|
|
} catch (_) {}
|
|
}
|
|
},
|
|
child: const Text('确认'),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|