Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chat_webview
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCommunication
chat_webview
Commits
72dd73de
Commit
72dd73de
authored
Jun 11, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed post message key
parent
6d617479
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
56 deletions
+24
-56
public_new/js/chat-ui-collaboration.js
+4
-8
public_new/js/chat-ui.js
+10
-20
public_new/js/chat.js
+6
-6
public_new/js/constant.js
+0
-14
public_new/js/share.js
+4
-8
No files found.
public_new/js/chat-ui-collaboration.js
View file @
72dd73de
CHAT_UI
.
joinCollaboration
=
function
(
collaborationType
,
meetingId
=
0
)
{
if
(
CHAT_UTIL
.
isIOS
())
{
const
COLLABORATION_TYPE_KEY
=
POST_MESSAGE_KEY
.
COLLABORATION_TYPE
;
const
MEETING_ID_KEY
=
POST_MESSAGE_KEY
.
MEETING_ID
;
webkit
.
messageHandlers
.
joinCollaboration
.
postMessage
({
COLLABORATION_TYPE_KEY
:
collaborationType
,
MEETING_ID_KEY
:
meetingId
,
collaborationType
:
collaborationType
,
meetingId
:
meetingId
,
});
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
if
(
...
...
@@ -395,11 +393,9 @@ CHAT_UI.confirmInviteUserListInCollaboration = function () {
CHAT_UTIL
.
getCollaborationType
(
globalUserInfo
.
coWorkType
)
);
}
else
{
const
USER_ID_LIST_KEY
=
POST_MESSAGE_KEY
.
USER_ID_LIST
;
const
COLLABORATION_TYPE_KEY
=
POST_MESSAGE_KEY
.
COLLABORATION_TYPE
;
webkit
.
messageHandlers
.
inviteCollaboration
.
postMessage
({
USER_ID_LIST_KEY
:
userIdList
.
join
(
","
),
COLLABORATION_TYPE_KEY
:
CHAT_UTIL
.
getCollaborationType
(
userIdList
:
userIdList
.
join
(
","
),
collaborationType
:
CHAT_UTIL
.
getCollaborationType
(
globalUserInfo
.
coWorkType
),
});
...
...
public_new/js/chat-ui.js
View file @
72dd73de
...
...
@@ -142,9 +142,8 @@ $('a[data-toggle="pill"]').on("show.bs.tab", function (e) {
if
(
typeof
android
!=
"undefined"
)
{
android
.
updateRoomList
();
}
else
{
const
GROUP_ID_KEY
=
POST_MESSAGE_KEY
.
GROUP_ID
;
webkit
.
messageHandlers
.
updateRoomList
.
postMessage
({
GROUP_ID_KEY
:
"0"
,
groupId
:
"0"
,
});
}
});
...
...
@@ -1025,11 +1024,9 @@ CHAT_UI.joinRoom = function (roomId, roomName) {
alert(getLocalizedString("err_not_exist_room"));
}
} else {
const ROOM_ID_KEY = POST_MESSAGE_KEY.ROOM_ID;
const ROOM_NAME = POST_MESSAGE_KEY.ROOM_NAME;
webkit.messageHandlers.joinRoom.postMessage({
ROOM_ID_KEY
: roomId,
ROOM_NAME
: roomName,
roomId
: roomId,
roomName
: roomName,
});
}
};
...
...
@@ -2170,9 +2167,8 @@ CHAT_UI.showAddUserConfirmView = function () {
if (typeof android != "undefined") {
android.inviteUsers(userIdList.join(","), false);
} else {
const USER_ID_LIST_KEY = POST_MESSAGE_KEY.USER_ID_LIST;
webkit.messageHandlers.inviteUsers.postMessage({
USER_ID_LIST_KEY
: userIdList.join(","),
userIdList
: userIdList.join(","),
});
}
});
...
...
@@ -2400,8 +2396,7 @@ CHAT_UI.offlineHandler = function (e) {
CHAT_UI.displayExistRoom = function (roomId) {
if (confirm("error_already_exist_same_user")) {
if (CHAT_UTIL.isIOS()) {
const ROOM_ID_KEY = POST_MESSAGE_KEY.ROOM_ID;
webkit.messageHandlers.joinRoom.postMessage({ ROOM_ID_KEY: roomId });
webkit.messageHandlers.joinRoom.postMessage({ roomId: roomId });
} else if (CHAT_UTIL.isAndroid()) {
android.joinRoom(roomId, "");
}
...
...
@@ -2426,17 +2421,12 @@ var createChatRoom = function (
isVoice
);
} else {
const ROOM_TYPE_KEY = POST_MESSAGE_KEY.ROOM_TYPE;
const USER_ID_LIST_KEY = POST_MESSAGE_KEY.USER_ID_LIST;
const ROOM_NAME_KEY = POST_MESSAGE_KEY.ROOM_NAME;
const SCREEN_FLAG_KEY = POST_MESSAGE_KEY.SCREEN_FLAG;
const IS_VOICE_KEY = POST_MESSAGE_KEY.IS_VOICE;
webkit.messageHandlers.createChatRoom.postMessage({
ROOM_TYPE_KEY
: chatRoomType,
USER_ID_LIST_KEY
: userIDList.join(","),
ROOM_NAME_KEY
: newRoomName,
SCREEN_FLAG_KEY
: screenFlag,
IS_VOICE_KEY
: isVoice,
roomType
: chatRoomType,
userIdList
: userIDList.join(","),
roomName
: newRoomName,
screenFlag
: screenFlag,
isVoice
: isVoice,
});
}
};
...
...
public_new/js/chat.js
View file @
72dd73de
...
...
@@ -19,11 +19,9 @@ CHAT.saveRoomInfo = function (roomId, roomName) {
CHAT
.
globalLoginParameter
.
roomId
=
roomId
;
CHAT
.
globalLoginParameter
.
roomName
=
roomName
;
if
(
CHAT_UTIL
.
isIOS
())
{
const
ROOM_ID_KEY
=
POST_MESSAGE_KEY
.
ROOM_ID
;
const
ROOM_NAME_KEY
=
POST_MESSAGE_KEY
.
ROOM_NAME
;
webkit
.
messageHandlers
.
roomInfosaveMessageHandlerId
.
postMessage
({
ROOM_ID_KEY
:
roomId
,
ROOM_NAME_KEY
:
roomName
,
roomId
:
roomId
,
roomName
:
roomName
,
});
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
if
(
roomId
==
undefined
&&
roomName
==
undefined
)
{
...
...
@@ -404,7 +402,7 @@ document.addEventListener("DOMContentLoaded", function () {
$
(
"#searchMessage"
).
addClass
(
"onfocus"
);
$
(
".chat_list"
).
removeClass
(
"none"
);
});
$
(
".chat_room_src_form .cancel"
).
click
(
function
()
{
$
(
".nav_item_wrap"
).
removeClass
(
"none"
);
$
(
".footer-wrap"
).
removeClass
(
"none"
);
...
...
@@ -580,7 +578,9 @@ document.addEventListener("DOMContentLoaded", function () {
var
keyword
=
$
(
'.chat_room_src_form input[type="search"]'
).
val
();
$
(
".overlay_src_msg"
).
empty
();
let
checkedUserList
=
getCheckedUserList
();
if
(
keyword
.
length
==
1
)
{
return
;
}
if
(
keyword
.
length
==
1
)
{
return
;
}
const
messages
=
CHAT_DB
.
searchMessages
(
keyword
,
checkedUserList
.
join
(
","
));
var
userMessageTemplate
=
getTemplate
(
TemplateURL
.
USER_MESSAGE
);
var
myMessageTemplate
=
getTemplate
(
TemplateURL
.
MY_MESSAGE
);
...
...
public_new/js/constant.js
View file @
72dd73de
...
...
@@ -149,17 +149,3 @@ const NATIVE_KEY_IOS = {
getUserInfo
:
"getUserInfo"
,
getUserListByLoginId
:
"getUserListByLoginId"
,
};
const
POST_MESSAGE_KEY
=
{
COLLABORATION_TYPE
:
"collaborationType"
,
MEETING_ID
:
"meetingId"
,
ROOM_ID
:
"roomId"
,
ROOM_NAME
:
"roomName"
,
USER_ID_LIST
:
"userIdList"
,
GROUP_ID
:
"groupId"
,
ROOM_TYPE
:
"roomType"
,
SCREEN_FLAG
:
"screenFlag"
,
IS_VOICE
:
"isVoice"
,
JOIN_COLLABORATION_TYPE
:
"joinCollaborationType"
,
CHANGE_COLLABORATION_TYPE
:
"changeCollaborationType"
};
public_new/js/share.js
View file @
72dd73de
...
...
@@ -153,11 +153,9 @@ document.addEventListener("DOMContentLoaded", function () {
initCollaborationUI
(
joinCollaborationType
);
if
(
CHAT_UTIL
.
isIOS
())
{
const
JOIN_COLLABORATION_TYPE_KEY
=
POST_MESSAGE_KEY
.
JOIN_COLLABORATION_TYPE
;
const
MEETING_ID_KEY
=
POST_MESSAGE_KEY
.
MEETING_ID
;
webkit
.
messageHandlers
.
joinChangedCollaboration
.
postMessage
({
JOIN_COLLABORATION_TYPE_KEY
:
joinCollaborationType
,
MEETING_ID_KEY
:
data
.
payload
.
newMeetingId
,
joinCollaborationType
:
joinCollaborationType
,
meetingId
:
data
.
payload
.
newMeetingId
,
});
if
(
joinCollaborationType
==
COLLABORATION_TYPE
.
DOCUMENT
)
{
webkit
.
messageHandlers
.
joinMeetingRoom
.
postMessage
(
...
...
@@ -548,11 +546,9 @@ function changeCollaboration(changeCollaborationType) {
}
penOff
();
if
(
CHAT_UTIL
.
isIOS
())
{
const
CHANGE_COLLABORATION_TYPE_KEY
=
POST_MESSAGE_KEY
.
CHANGE_COLLABORATION_TYPE
;
const
MEETING_ID_KEY
=
POST_MESSAGE_KEY
.
MEETING_ID
;
webkit
.
messageHandlers
.
changeCollaboration
.
postMessage
({
CHANGE_COLLABORATION_TYPE_KEY
:
changeCollaborationType
,
MEETING_ID_KEY
:
newMeetingId
,
changeCollaborationType
:
changeCollaborationType
,
meetingId
:
newMeetingId
,
});
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
android
.
changeCollaboration
(
changeCollaborationType
,
newMeetingId
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment