Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx_flutter_message
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
clx_flutter_message
Commits
1883a424
提交
1883a424
authored
10月 12, 2024
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:适配其他链接
上级
19ae549e
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
38 行增加
和
25 行删除
+38
-25
clx_flutter_message.dart
lib/clx_flutter_message.dart
+32
-23
message_data.dart
lib/core/model/message_data.dart
+5
-1
pubspec.yaml
pubspec.yaml
+1
-1
没有找到文件。
lib/clx_flutter_message.dart
浏览文件 @
1883a424
...
@@ -73,8 +73,13 @@ abstract class BaseMessageConfig
...
@@ -73,8 +73,13 @@ abstract class BaseMessageConfig
debugPrint
(
'未知消息类型'
);
debugPrint
(
'未知消息类型'
);
debugPrint
(
data
.
toString
());
debugPrint
(
data
.
toString
());
}
}
handleMessage
(
data
);
}
}
// 处理长连接消息
void
handleMessage
(
dynamic
data
);
close
()
async
{
close
()
async
{
clear
();
clear
();
clearNoticeDialog
();
clearNoticeDialog
();
...
@@ -119,34 +124,15 @@ abstract class BaseMessageConfig
...
@@ -119,34 +124,15 @@ abstract class BaseMessageConfig
noticeDialogWidgetController
=
NoticeDialogWidgetController
();
noticeDialogWidgetController
=
NoticeDialogWidgetController
();
}
}
//刷新消息、获取未处理消息,重新连接websocket
//
刷新消息、获取未处理消息,重新连接websocket
Future
<
void
>
refreshMessage
(
BuildContext
context
)
async
{
Future
<
void
>
refreshMessage
(
BuildContext
context
)
async
{
// 校验消息相关配置字段
// 校验消息相关配置字段
if
(
StringUtil
.
isEmpty
(
messageConfig
.
userKey
))
{
final
validationResult
=
validateMessageConfig
();
ToastUtils
.
showCenter
(
"userNo不能为空"
);
if
(
validationResult
!=
null
)
{
return
;
ToastUtils
.
showCenter
(
validationResult
);
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
companyNo
))
{
ToastUtils
.
showCenter
(
"companyNo不能为空"
);
return
;
return
;
}
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
accessToken
))
{
ToastUtils
.
showCenter
(
"登录token不能为空"
);
return
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
inAppAccessKey
))
{
ToastUtils
.
showCenter
(
"inAppAccessKey不能为空"
);
return
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
productCode
))
{
ToastUtils
.
showCenter
(
"productCode不能为空"
);
return
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
webSocketUrl
))
{
ToastUtils
.
showCenter
(
"webSocketUrl不能为空"
);
return
;
}
connectWebSocket
(
context
);
connectWebSocket
(
context
);
List
<
MessageData
>
nList
=
await
getUnReadMessage
();
List
<
MessageData
>
nList
=
await
getUnReadMessage
();
...
@@ -157,4 +143,27 @@ abstract class BaseMessageConfig
...
@@ -157,4 +143,27 @@ abstract class BaseMessageConfig
// 处理公告
// 处理公告
setNotice
(
aList
);
setNotice
(
aList
);
}
}
// 校验消息配置字段
String
?
validateMessageConfig
()
{
if
(
StringUtil
.
isEmpty
(
messageConfig
.
userKey
))
{
return
"userNo不能为空"
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
companyNo
))
{
return
"companyNo不能为空"
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
accessToken
))
{
return
"登录token不能为空"
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
inAppAccessKey
))
{
return
"inAppAccessKey不能为空"
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
productCode
))
{
return
"productCode不能为空"
;
}
if
(
StringUtil
.
isEmpty
(
messageConfig
.
webSocketUrl
))
{
return
"webSocketUrl不能为空"
;
}
return
null
;
// 所有校验通过
}
}
}
lib/core/model/message_data.dart
浏览文件 @
1883a424
...
@@ -45,7 +45,11 @@ class MessageData {
...
@@ -45,7 +45,11 @@ class MessageData {
messageNo
=
json
[
'messageNo'
];
messageNo
=
json
[
'messageNo'
];
accessKey
=
json
[
'accessKey'
];
accessKey
=
json
[
'accessKey'
];
companyNo
=
json
[
'companyNo'
];
companyNo
=
json
[
'companyNo'
];
userNo
=
json
[
'userNo'
];
if
(
json
[
'userNo'
]
is
String
)
{
userNo
=
json
[
'userNo'
];
}
else
{
userNo
=
json
[
'userNo'
].
toString
();
}
messageGroup
=
json
[
'messageGroup'
];
messageGroup
=
json
[
'messageGroup'
];
messageSign
=
json
[
'messageSign'
];
messageSign
=
json
[
'messageSign'
];
showType
=
json
[
'showType'
];
showType
=
json
[
'showType'
];
...
...
pubspec.yaml
浏览文件 @
1883a424
name
:
clx_flutter_message
name
:
clx_flutter_message
description
:
An in-app messaging plugin
description
:
An in-app messaging plugin
version
:
0.0.
1
version
:
0.0.
2
homepage
:
homepage
:
environment
:
environment
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论