mirror of
https://github.com/WuKongIM/WuKongIMFlutterSDK
synced 2025-05-24 11:22:20 +00:00
472 lines
15 KiB
Dart
472 lines
15 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:example/const.dart';
|
|
import 'package:example/http.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:wukongimfluttersdk/db/const.dart';
|
|
import 'package:wukongimfluttersdk/entity/conversation.dart';
|
|
import 'package:wukongimfluttersdk/entity/reminder.dart';
|
|
import 'package:wukongimfluttersdk/type/const.dart';
|
|
import 'package:wukongimfluttersdk/wkim.dart';
|
|
|
|
import 'popmenu_util.dart';
|
|
import 'popup_item.dart';
|
|
import 'ui_chat.dart';
|
|
import 'conversation_msg.dart';
|
|
import 'ui_input_dialog.dart';
|
|
|
|
class HomePage extends StatelessWidget {
|
|
const HomePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
theme: ThemeData(
|
|
primaryColor: Colors.redAccent,
|
|
),
|
|
home: const ListViewShowData(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ListViewShowData extends StatefulWidget {
|
|
const ListViewShowData({super.key});
|
|
|
|
@override
|
|
State<StatefulWidget> createState() {
|
|
return ListViewShowDataState();
|
|
}
|
|
}
|
|
|
|
class ListViewShowDataState extends State<ListViewShowData> {
|
|
List<UIConversation> msgList = [];
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_getDataList();
|
|
_initListener();
|
|
}
|
|
|
|
var _connectionStatusStr = '';
|
|
var allUnreadCount = 0;
|
|
var nodeId = 0;
|
|
_initListener() {
|
|
// 监听连接状态事件
|
|
WKIM.shared.connectionManager.addOnConnectionStatus('home',
|
|
(status, reason, connInfo) {
|
|
if (status == WKConnectStatus.connecting) {
|
|
_connectionStatusStr = '连接中...';
|
|
} else if (status == WKConnectStatus.success) {
|
|
if (connInfo != null) {
|
|
nodeId = connInfo.nodeId;
|
|
}
|
|
_connectionStatusStr = '连接成功(节点:${connInfo?.nodeId})';
|
|
} else if (status == WKConnectStatus.noNetwork) {
|
|
_connectionStatusStr = '网络异常';
|
|
} else if (status == WKConnectStatus.syncMsg) {
|
|
_connectionStatusStr = '同步消息中...';
|
|
} else if (status == WKConnectStatus.kicked) {
|
|
_connectionStatusStr = '未连接,在其他设备登录';
|
|
} else if (status == WKConnectStatus.fail) {
|
|
_connectionStatusStr = '未连接';
|
|
} else if (status == WKConnectStatus.syncCompleted) {
|
|
_connectionStatusStr = '连接成功(节点:$nodeId)';
|
|
}
|
|
if (mounted) {
|
|
setState(() {});
|
|
}
|
|
});
|
|
WKIM.shared.conversationManager.getAllUnreadCount().then((value) {
|
|
allUnreadCount = value;
|
|
});
|
|
WKIM.shared.conversationManager
|
|
.addOnClearAllRedDotListener("chat_conversation", () {
|
|
for (var i = 0; i < msgList.length; i++) {
|
|
msgList[i].msg.unreadCount = 0;
|
|
}
|
|
|
|
// 清除红点后也重新排序,保持列表排序的一致性
|
|
_sortMessagesByTimestamp();
|
|
|
|
setState(() {});
|
|
});
|
|
WKIM.shared.conversationManager
|
|
.addOnRefreshMsgListListener('chat_conversation', (msgs) async {
|
|
if (msgs.isEmpty) {
|
|
return;
|
|
}
|
|
List<UIConversation> list = [];
|
|
for (WKUIConversationMsg msg in msgs) {
|
|
bool isAdd = true;
|
|
for (var i = 0; i < msgList.length; i++) {
|
|
if (msgList[i].msg.channelID == msg.channelID) {
|
|
msgList[i].msg = msg;
|
|
msgList[i].lastContent = '';
|
|
msgList[i].reminders = null;
|
|
isAdd = false;
|
|
break;
|
|
}
|
|
}
|
|
if (isAdd) {
|
|
list.add(UIConversation(msg));
|
|
}
|
|
}
|
|
if (list.isNotEmpty) {
|
|
msgList.addAll(list);
|
|
}
|
|
|
|
_sortMessagesByTimestamp();
|
|
|
|
if (mounted) {
|
|
setState(() {});
|
|
}
|
|
});
|
|
|
|
// 监听刷新channel资料事件
|
|
WKIM.shared.channelManager.addOnRefreshListener("cover_chat", (channel) {
|
|
for (var i = 0; i < msgList.length; i++) {
|
|
if (msgList[i].msg.channelID == channel.channelID &&
|
|
msgList[i].msg.channelType == channel.channelType) {
|
|
msgList[i].msg.setWkChannel(channel);
|
|
msgList[i].channelAvatar = "${HttpUtils.apiURL}/${channel.avatar}";
|
|
msgList[i].channelName = channel.channelName;
|
|
|
|
// 刷新频道信息后重新排序(虽然时间戳没变,但保持一致性)
|
|
_sortMessagesByTimestamp();
|
|
|
|
setState(() {});
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/// 对会话列表按时间戳排序,最新的会话排在前面
|
|
void _sortMessagesByTimestamp() {
|
|
msgList.sort(
|
|
(a, b) => b.msg.lastMsgTimestamp.compareTo(a.msg.lastMsgTimestamp));
|
|
}
|
|
|
|
void _getDataList() {
|
|
Future<List<WKUIConversationMsg>> list =
|
|
WKIM.shared.conversationManager.getAll();
|
|
list.then((result) {
|
|
for (var i = 0; i < result.length; i++) {
|
|
msgList.add(UIConversation(result[i]));
|
|
}
|
|
|
|
_sortMessagesByTimestamp();
|
|
setState(() {});
|
|
});
|
|
}
|
|
|
|
String getShowContent(UIConversation uiConversation) {
|
|
if (uiConversation.lastContent == '') {
|
|
uiConversation.msg.getWkMsg().then((value) {
|
|
if (value != null && value.messageContent != null) {
|
|
uiConversation.lastContent = value.messageContent!.displayText();
|
|
setState(() {});
|
|
}
|
|
});
|
|
return '';
|
|
}
|
|
return uiConversation.lastContent;
|
|
}
|
|
|
|
String getReminderText(UIConversation uiConversation) {
|
|
String content = "";
|
|
if (uiConversation.reminders == null) {
|
|
uiConversation.msg.getReminderList().then((value) {
|
|
uiConversation.reminders = value;
|
|
setState(() {});
|
|
});
|
|
return content;
|
|
}
|
|
if (uiConversation.reminders!.isNotEmpty) {
|
|
for (var i = 0; i < uiConversation.reminders!.length; i++) {
|
|
if (uiConversation.reminders![i].type ==
|
|
WKMentionType.wkReminderTypeMentionMe &&
|
|
uiConversation.reminders![i].done == 0) {
|
|
var d = uiConversation.reminders![i].data;
|
|
if (d is Map) {
|
|
content = d['type'];
|
|
} else if (d is String && WKDBConst.isJsonString(d)) {
|
|
var obj = jsonDecode(d);
|
|
content = obj['type'];
|
|
} else {
|
|
content = d;
|
|
}
|
|
// content = uiConversation.reminders![i].data;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return content;
|
|
}
|
|
|
|
String getChannelAvatarURL(UIConversation uiConversation) {
|
|
if (uiConversation.channelAvatar == '') {
|
|
uiConversation.msg.getWkChannel().then((channel) {
|
|
if (channel != null) {
|
|
uiConversation.channelAvatar =
|
|
"${HttpUtils.apiURL}/${channel.avatar}";
|
|
}
|
|
});
|
|
}
|
|
return uiConversation.channelAvatar;
|
|
}
|
|
|
|
String getChannelName(UIConversation uiConversation) {
|
|
if (uiConversation.channelName == '') {
|
|
uiConversation.msg.getWkChannel().then((channel) {
|
|
if (channel != null) {
|
|
if (channel.channelRemark == '') {
|
|
uiConversation.channelName = channel.channelName;
|
|
} else {
|
|
uiConversation.channelName = channel.channelRemark;
|
|
}
|
|
if (uiConversation.channelName == '') {
|
|
WKIM.shared.channelManager.fetchChannelInfo(
|
|
uiConversation.msg.channelID, uiConversation.msg.channelType);
|
|
}
|
|
} else {
|
|
WKIM.shared.channelManager.fetchChannelInfo(
|
|
uiConversation.msg.channelID, uiConversation.msg.channelType);
|
|
}
|
|
});
|
|
}
|
|
return uiConversation.channelName;
|
|
}
|
|
|
|
Widget _buildRow(UIConversation uiMsg) {
|
|
return Container(
|
|
color: Colors.white,
|
|
padding: const EdgeInsets.all(10),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
decoration: const BoxDecoration(
|
|
shape: BoxShape.rectangle,
|
|
borderRadius: BorderRadius.all(Radius.circular(20)),
|
|
color: Colors.blue),
|
|
width: 50,
|
|
alignment: Alignment.center,
|
|
height: 50,
|
|
margin: const EdgeInsets.fromLTRB(0, 0, 10, 0),
|
|
child: Image.network(
|
|
getChannelAvatarURL(uiMsg),
|
|
height: 200,
|
|
width: 200,
|
|
fit: BoxFit.cover,
|
|
errorBuilder: (BuildContext context, Object exception,
|
|
StackTrace? stackTrace) {
|
|
return Image.asset('assets/ic_default_avatar.png');
|
|
},
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
Row(
|
|
children: <Widget>[
|
|
Text(
|
|
getChannelName(uiMsg),
|
|
style:
|
|
const TextStyle(color: Colors.black, fontSize: 18),
|
|
maxLines: 1,
|
|
),
|
|
Expanded(
|
|
child: Text(
|
|
style:
|
|
const TextStyle(color: Colors.grey, fontSize: 16),
|
|
CommonUtils.formatDateTime(
|
|
uiMsg.msg.lastMsgTimestamp),
|
|
textAlign: TextAlign.right,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
getReminderText(uiMsg),
|
|
style: const TextStyle(
|
|
color: Color.fromARGB(255, 247, 2, 2),
|
|
fontSize: 14),
|
|
maxLines: 1,
|
|
),
|
|
Text(
|
|
getShowContent(uiMsg),
|
|
style:
|
|
const TextStyle(color: Colors.grey, fontSize: 14),
|
|
maxLines: 1,
|
|
),
|
|
Expanded(
|
|
child: Text(
|
|
style: const TextStyle(
|
|
color: Colors.red,
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.bold),
|
|
uiMsg.getUnreadCount(),
|
|
textAlign: TextAlign.right,
|
|
),
|
|
),
|
|
],
|
|
)
|
|
]))
|
|
],
|
|
));
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: const Color.fromARGB(255, 221, 221, 221),
|
|
appBar: AppBar(
|
|
backgroundColor: const Color.fromARGB(255, 251, 246, 246),
|
|
title: Column(
|
|
children: [
|
|
Text(_connectionStatusStr),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
'用户:${UserInfo.name}',
|
|
style: const TextStyle(color: Colors.red, fontSize: 16),
|
|
),
|
|
Container(
|
|
margin: const EdgeInsets.all(10.0),
|
|
),
|
|
Text(
|
|
'未读消息数量($allUnreadCount)',
|
|
style: const TextStyle(color: Colors.black, fontSize: 16),
|
|
)
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
body: ListView.builder(
|
|
shrinkWrap: true,
|
|
itemCount: msgList.length,
|
|
itemBuilder: (context, pos) {
|
|
return GestureDetector(
|
|
onLongPressStart: (details) {
|
|
longClick(msgList[pos], context, details);
|
|
},
|
|
onTap: () {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => const ChatPage(),
|
|
settings: RouteSettings(
|
|
arguments: ChatChannel(
|
|
msgList[pos].msg.channelID,
|
|
msgList[pos].msg.channelType,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
},
|
|
child: _buildRow(msgList[pos]),
|
|
);
|
|
}),
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: () {
|
|
_showDialog(context);
|
|
},
|
|
tooltip: 'Increment',
|
|
child: const Icon(Icons.add),
|
|
),
|
|
persistentFooterButtons: [
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: Colors.red,
|
|
),
|
|
onPressed: () {
|
|
WKIM.shared.connectionManager.disconnect(false);
|
|
},
|
|
child: const Text(
|
|
'断开',
|
|
style: TextStyle(color: Colors.white),
|
|
),
|
|
),
|
|
ElevatedButton(
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color.fromARGB(255, 31, 27, 239),
|
|
),
|
|
onPressed: () {
|
|
WKIM.shared.connectionManager.connect();
|
|
},
|
|
child: const Text(
|
|
'重连',
|
|
style: TextStyle(color: Colors.white),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
_showDialog(BuildContext context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (BuildContext ctx) => InputDialog(
|
|
title: const Text("创建新的聊天"),
|
|
back: (channelID, channelType) async {
|
|
bool isSuccess = await HttpUtils.createGroup(channelID);
|
|
if (isSuccess) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => const ChatPage(),
|
|
settings: RouteSettings(
|
|
arguments: ChatChannel(
|
|
channelID,
|
|
channelType,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
longClick(UIConversation uiMsg, BuildContext context,
|
|
LongPressStartDetails details) {
|
|
List<PopupItem> items = [];
|
|
if (uiMsg.msg.unreadCount > 0) {
|
|
items.add(PopupItem(
|
|
text: '设置已读',
|
|
onTap: () {
|
|
HttpUtils.clearUnread(uiMsg.msg.channelID, uiMsg.msg.channelType);
|
|
},
|
|
));
|
|
}
|
|
items.add(PopupItem(
|
|
text: '测试提醒项',
|
|
onTap: () {
|
|
List<WKReminder> list = [];
|
|
WKReminder reminder = WKReminder();
|
|
reminder.needUpload = 0;
|
|
reminder.type = WKMentionType.wkReminderTypeMentionMe;
|
|
// reminder.data = '[有人@你]';
|
|
reminder.done = 0;
|
|
reminder.reminderID = 11;
|
|
reminder.version = 1;
|
|
reminder.publisher = "uid_1";
|
|
reminder.channelID = uiMsg.msg.channelID;
|
|
reminder.channelType = uiMsg.msg.channelType;
|
|
// 这两种都可以
|
|
reminder.data = "[有人@你]";
|
|
// reminder.data = jsonEncode({"type": "[有人@你]"});
|
|
list.add(reminder);
|
|
WKIM.shared.reminderManager.saveOrUpdateReminders(list);
|
|
}));
|
|
PopmenuUtil.showPopupMenu(context, details, items);
|
|
}
|
|
}
|