提交 e59e15cf authored 作者: 张国庆's avatar 张国庆

修改通依赖注入初始化

上级 142949be
......@@ -40,7 +40,7 @@ abstract class BaseMessageConfig with NotificationManager, NoticeManager {
Future<bool> ignoreAction(MessageData? message);
//标记消息已经展示
Future<bool> setMessageShowed(MessageData? message);
void setMessageShowed(MessageData? message);
//连接websocket 获取及时消息
Future<void> connectWebSocket(BuildContext context) async {
......@@ -129,9 +129,9 @@ abstract class BaseMessageConfig with NotificationManager, NoticeManager {
// 构造方法
BaseMessageConfig() {
//通过getx 注入 NotificationLayoutController
Get.put(NotificationLayoutController());
notificationLayoutController = Get.put(NotificationLayoutController());
//通过getx 注入 NoticeDialogWidgetController
Get.put(NoticeDialogWidgetController());
noticeDialogWidgetController = Get.put(NoticeDialogWidgetController());
}
//刷新消息、获取未处理消息,重新连接websocket
......
import 'package:clx_flutter_message/core/notice/notice_dialog_widget.dart';
import 'package:clx_flutter_message/util/extension.dart';
import '../model/message_data.dart';
mixin NoticeManager {
final NoticeDialogWidgetController? _controller =
findOtherLogic<NoticeDialogWidgetController>();
NoticeDialogWidgetController? noticeDialogWidgetController;
void insertNotice(MessageData data) {
_controller?.insertNotice(data);
noticeDialogWidgetController?.insertNotice(data);
}
void clearNoticeDialog() {
_controller?.clear();
noticeDialogWidgetController?.clear();
}
void setNotice(List<dynamic> data) {
_controller?.setNotice(data);
noticeDialogWidgetController?.setNotice(data);
}
}
import 'package:flutter/cupertino.dart';
import '../../util/extension.dart';
import '../model/message_data.dart';
import 'notification_layout/notification_layout_widget.dart';
......@@ -8,14 +7,13 @@ import 'notification_layout/notification_layout_widget.dart';
mixin NotificationManager {
OverlayEntry? _overlayEntry;
final NotificationLayoutController? _controller =
findOtherLogic<NotificationLayoutController>();
NotificationLayoutController? notificationLayoutController;
/// 显示悬浮布局
void showNotification(BuildContext? context) {
if (context == null) return;
if (_overlayEntry != null) return; // 防止重复显示
if (_controller?.headNode == null) {
if (notificationLayoutController?.headNode == null) {
return; // 防止没有消息时显示
}
_overlayEntry = OverlayEntry(
......@@ -38,16 +36,16 @@ mixin NotificationManager {
/// 缓存之前的消息列表
void setNotification(List<dynamic> data) {
_controller?.setCashMessage(
notificationLayoutController?.setCashMessage(
data.map<MessageData>((e) => MessageData.fromJson(e)).toList(),
);
}
void insertNotification(MessageData data) {
_controller?.insertNotification(data);
notificationLayoutController?.insertNotification(data);
}
void clear() {
_controller?.clear();
notificationLayoutController?.clear();
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论