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
5cb24459
Commit
5cb24459
authored
Mar 30, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chat UI
parent
13a9186f
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
99 additions
and
56 deletions
+99
-56
public_new/chat_room.html
+10
-11
public_new/contact.html
+6
-2
public_new/css/chat.css
+4
-0
public_new/js/chat-ui.js
+31
-27
public_new/js/chat-websocket.js
+26
-5
public_new/js/chat.js
+11
-6
public_new/js/common.js
+6
-1
public_new/template/template_my_message.html
+2
-1
public_new/template/template_user_message.html
+1
-1
public_new/template/template_user_name_card.html
+2
-2
No files found.
public_new/chat_room.html
View file @
5cb24459
...
@@ -104,26 +104,25 @@
...
@@ -104,26 +104,25 @@
<footer
class=
"chat_room_footer"
>
<footer
class=
"chat_room_footer"
>
<!-- フッター上 -->
<!-- フッター上 -->
<div
class=
"footer-wrap d-flex flex-column"
>
<div
class=
"footer-wrap d-flex flex-column"
>
<div>
<div
class=
"msg_notification"
id=
"messageNotification"
style=
"text-align:center;display: none;"
>
</div>
</div>
<div
class=
"footer_content_t"
>
<div
class=
"footer_content_t"
>
<div
class=
"d-flex flex-row h-100"
>
<div
class=
"d-flex flex-row h-100"
>
<div
class=
"footer_item attach_file"
>
<div
class=
"footer_item attach_file"
>
<a
href=
"#"
>
<img
src=
"icon/icon_camera.png"
alt=
"写真アイコン"
id=
"fileUploadButton"
>
<img
src=
"icon/icon_camera.png"
alt=
"写真アイコン"
>
<form
id=
"image-form"
>
</a>
<input
class=
"d-none"
type=
"file"
name=
"image"
id=
"imageInputTag"
accept=
"image/x-png,image/jpeg"
>
</form>
</div>
</div>
<div
class=
"footer_item attach_file"
>
<div
class=
"footer_item attach_file"
>
<a
href=
"#"
>
<a
href=
"#"
>
<img
src=
"icon/icon_videocam.png"
alt=
"動画アイコン"
>
<img
src=
"icon/icon_videocam.png"
alt=
"動画アイコン"
>
</a>
</a>
</div>
</div>
<input
type=
"text"
name=
"message"
class=
"message_input_form"
placeholder=
"メッセージを入力してください"
>
<input
type=
"text"
name=
"message"
class=
"message_input_form"
id=
"messageInput"
placeholder=
"メッセージを入力してください"
>
<button
type=
"button"
name=
"button"
class=
"message_input_send none"
style=
"text-align: center;
<button
type=
"button"
name=
"button"
class=
"message_input_send none"
id=
"messageSend"
onclick=
"CHAT_UI.sendMessage(this);"
>
送信
</button>
height: 45px;
width: 100px;
background: #0070CA;
color: #fff;
border: none;
font-size: 18px;"
>
送信
</button>
</div>
</div>
</div>
</div>
<!-- フッター下 -->
<!-- フッター下 -->
...
...
public_new/contact.html
View file @
5cb24459
...
@@ -195,7 +195,11 @@
...
@@ -195,7 +195,11 @@
<div
id=
"loadingArea"
></div>
<div
id=
"loadingArea"
></div>
<div
id=
"myProfileModal"
></div>
<div
id=
"myProfileModal"
></div>
<div
id=
"userProfileModal"
></div>
<div
id=
"userProfileModal"
></div>
<div
id=
"loader-bg"
>
<div
id=
"loader"
>
<i
class=
"fa fa-circle-o-notch fa-spin fa-3x fa-fw"
></i>
</div>
</div>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/jquery-3.3.1.min.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/libs/moment.js"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/libs/locale/ko.js"
charset=
"UTF-8"
></script>
...
@@ -205,6 +209,7 @@
...
@@ -205,6 +209,7 @@
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/libs/jquery.mark.min.js"
></script>
<script
src=
"./js/contact.js"
></script>
<script
src=
"./js/contact.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/common.js"
></script>
<script
src=
"./js/loading.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language.js"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ko.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
<script
src=
"./js/language_ja.js"
charset=
"UTF-8"
></script>
...
@@ -225,7 +230,6 @@
...
@@ -225,7 +230,6 @@
let
PLATFORM
=
''
;
let
PLATFORM
=
''
;
let
IS_MOBILE
=
true
;
let
IS_MOBILE
=
true
;
let
IS_ONLINE
=
false
;
let
IS_ONLINE
=
false
;
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
android
.
getLoginParameter
();
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
getGlobalParameter
();
...
...
public_new/css/chat.css
View file @
5cb24459
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
font-weight
:
bold
;
font-weight
:
bold
;
transition
:
all
0.2s
ease
;
transition
:
all
0.2s
ease
;
}
}
.msg_notification
{
display
:
none
;
}
.tab_item
:hover
{
.tab_item
:hover
{
opacity
:
0.75
;
opacity
:
0.75
;
}
}
...
@@ -676,6 +679,7 @@ input[name="tab_item"] {
...
@@ -676,6 +679,7 @@ input[name="tab_item"] {
}
}
.message_input_send
{
.message_input_send
{
border-radius
:
8px
;
margin
:
auto
10px
;
margin
:
auto
10px
;
text-align
:
center
;
text-align
:
center
;
height
:
45px
;
height
:
45px
;
...
...
public_new/js/chat-ui.js
View file @
5cb24459
...
@@ -191,32 +191,33 @@ CHAT_UI.setOrientation = function(isLandscapeMode) {
...
@@ -191,32 +191,33 @@ CHAT_UI.setOrientation = function(isLandscapeMode) {
}
}
}
}
//メッセージ送信
CHAT_UI
.
sendMessage
=
function
(
e
)
{
$
(
'#message-form'
).
on
(
'keypress'
,
function
(
event
)
{
console
.
log
(
'messageSend'
);
if
(
event
.
which
==
13
)
{
const
messageTextBox
=
$
(
'#messageInput'
);
// Enterキーの処理
$
(
'#message-send-btn'
).
click
();
}
});
// 送信ボタンの処理
$
(
'#message-send-btn'
).
on
(
'click'
,
function
(
e
)
{
e
.
preventDefault
();
const
messageTextBox
=
$
(
'#message-form'
);
const
message
=
messageTextBox
.
val
().
length
>
0
?
encodeURIComponent
(
messageTextBox
.
val
()
+
" "
)
:
""
;
const
message
=
messageTextBox
.
val
().
length
>
0
?
encodeURIComponent
(
messageTextBox
.
val
()
+
" "
)
:
""
;
messageTextBox
.
val
(
''
);
messageTextBox
.
val
(
''
);
if
(
message
.
length
>
0
)
{
if
(
message
.
length
>
0
)
{
console
.
log
(
message
);
socket
.
emit
(
socket
.
emit
(
//'createMessage', { text: '['+encodedText+'<&split>'+messageType.TEXT+']'; }
'createMessage'
,
{
text
:
message
}
'createMessage'
,
{
text
:
message
}
,
0
,
0
);
);
}
}
$
(
'#message-form'
).
focus
();
$
(
'.message_input_group'
).
focus
();
}
//メッセージ送信
$
(
'#messageInput'
).
on
(
'keypress'
,
function
(
event
)
{
if
(
event
.
which
==
13
)
{
// Enterキーの処理
$
(
'#messageSend'
).
click
();
}
});
});
// 写真アップロード
// 写真アップロード
$
(
'#fileUploadButton'
).
on
(
'click'
,
function
()
{
$
(
'#fileUploadButton'
).
on
(
'click'
,
function
()
{
console
.
log
(
'onclickPhoto'
);
$
(
'#imageInputTag'
).
click
();
$
(
'#imageInputTag'
).
click
();
});
});
...
@@ -226,6 +227,7 @@ $('#fileUploadButton2').on('click', function() {
...
@@ -226,6 +227,7 @@ $('#fileUploadButton2').on('click', function() {
});
});
$
(
'#imageInputTag'
).
on
(
'change'
,
function
()
{
$
(
'#imageInputTag'
).
on
(
'change'
,
function
()
{
console
.
log
(
'onchangePhoto'
);
$
(
'#image-form'
).
submit
();
$
(
'#image-form'
).
submit
();
});
});
...
@@ -234,6 +236,7 @@ $('#imageInputTag2').on('change', function() {
...
@@ -234,6 +236,7 @@ $('#imageInputTag2').on('change', function() {
});
});
$
(
'#image-form'
).
on
(
'submit'
,
function
(
e
)
{
$
(
'#image-form'
).
on
(
'submit'
,
function
(
e
)
{
console
.
log
(
'onSubmitPhoto'
);
e
.
preventDefault
();
e
.
preventDefault
();
const
imageInputTag
=
$
(
'#imageInputTag'
);
const
imageInputTag
=
$
(
'#imageInputTag'
);
const
file
=
imageInputTag
.
prop
(
'files'
)[
0
];
const
file
=
imageInputTag
.
prop
(
'files'
)[
0
];
...
@@ -545,9 +548,12 @@ $('#pills-confirm-tab').on('shown.bs.tab', function(e) {
...
@@ -545,9 +548,12 @@ $('#pills-confirm-tab').on('shown.bs.tab', function(e) {
});
});
CHAT_UI
.
scrollToBottom
=
function
()
{
CHAT_UI
.
scrollToBottom
=
function
()
{
const
messages
=
$
(
'
#message
s'
);
const
messages
=
$
(
'
.room_content
s'
);
const
scrollHeight
=
messages
.
prop
(
'scrollHeight'
);
const
scrollHeight
=
messages
.
prop
(
'scrollHeight'
);
messages
.
scrollTop
(
scrollHeight
);
//messages.scrollTop(scrollHeight);
$
(
'html, body'
).
animate
({
scrollTop
:
scrollHeight
},
500
);
};
};
CHAT_UI
.
scrollToLastMarkedUnseen
=
function
(
value
)
{
CHAT_UI
.
scrollToLastMarkedUnseen
=
function
(
value
)
{
...
@@ -817,8 +823,8 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
...
@@ -817,8 +823,8 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
$
(
"#exitRoom"
).
text
(
getLocalizedString
(
"exitRoom"
)).
append
(
"<i class='fas fa-door-open'></i>"
)
$
(
"#exitRoom"
).
text
(
getLocalizedString
(
"exitRoom"
)).
append
(
"<i class='fas fa-door-open'></i>"
)
$
(
"#participants"
).
text
(
getLocalizedString
(
"participants"
))
$
(
"#participants"
).
text
(
getLocalizedString
(
"participants"
))
$
(
"#fileUploadButton"
).
text
(
getLocalizedString
(
"photo"
))
//
$("#fileUploadButton").text(getLocalizedString("photo"))
$
(
"#fileUploadButton2"
).
text
(
getLocalizedString
(
"video"
))
//
$("#fileUploadButton2").text(getLocalizedString("video"))
$
(
"#okayLabel"
).
text
(
getLocalizedString
(
"okayLabel"
))
$
(
"#okayLabel"
).
text
(
getLocalizedString
(
"okayLabel"
))
$
(
"#completeLabel"
).
text
(
getLocalizedString
(
"completeLabel"
))
$
(
"#completeLabel"
).
text
(
getLocalizedString
(
"completeLabel"
))
...
@@ -1111,6 +1117,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
...
@@ -1111,6 +1117,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
CHAT_SOCKET
.
connectSocket
();
CHAT_SOCKET
.
connectSocket
();
console
.
log
(
'loadMessages] isOnline--'
);
console
.
log
(
'loadMessages] isOnline--'
);
android
.
updateMessages
(
roomId
);
android
.
updateMessages
(
roomId
);
socket
.
emit
(
'exitRoom'
,
roomId
);
socket
.
emit
(
'joinRoom'
,
roomId
,
roomName
,
function
()
{
socket
.
emit
(
'joinRoom'
,
roomId
,
roomName
,
function
()
{
console
.
log
(
'loadMessages] Seccess Emit Soket (joinRoom)'
);
console
.
log
(
'loadMessages] Seccess Emit Soket (joinRoom)'
);
});
});
...
@@ -1159,10 +1166,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
...
@@ -1159,10 +1166,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
});
});
let
obj
=
jQuery
.
parseHTML
(
html
);
let
obj
=
jQuery
.
parseHTML
(
html
);
$
(
'#user_list'
).
append
(
obj
);
$
(
'#user_list'
).
append
(
obj
);
messages
.
forEach
(
function
(
message
)
{
messages
.
forEach
(
function
(
message
)
{
console
.
log
(
message
);
let
template
=
userMessageTemplate
;
let
template
=
userMessageTemplate
;
if
(
message
.
shopMemberId
==
CHAT
.
globalLoginParameter
.
shopMemberId
)
{
if
(
message
.
shopMemberId
==
CHAT
.
globalLoginParameter
.
shopMemberId
)
{
template
=
myMessageTemplate
;
template
=
myMessageTemplate
;
...
@@ -1174,21 +1178,23 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
...
@@ -1174,21 +1178,23 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
// ユーザの様式を読み込む
// ユーザの様式を読み込む
if
(
message
.
profileUrl
)
{
if
(
message
.
profileUrl
)
{
message
.
profile
ImagePath
=
CHAT
.
getProfileImgUrl
(
message
.
profileUrl
)
message
.
profile
Url
=
CHAT
.
getProfileImgUrl
(
message
.
profileUrl
)
}
else
{
}
else
{
message
.
profile
ImagePath
=
CHAT
.
getProfileImgUrl
(
""
)
message
.
profile
Url
=
CHAT
.
getProfileImgUrl
(
""
)
}
}
// #36147
// #36147
message
.
message
=
message
.
message
.
toString
();
message
.
message
=
message
.
message
.
toString
();
var
replacePath
=
message
.
message
;
var
replacePath
=
message
.
message
;
replacePath
=
replacePath
.
replaceAll
(
'
/acms'
,
CHAT_SERVER_URL
+
'/acms
'
);
replacePath
=
replacePath
.
replaceAll
(
'
?fileName='
,
'?sid='
+
CHAT
.
globalLoginParameter
.
sid
+
'&fileName=
'
);
message
.
message
=
replacePath
;
message
.
message
=
replacePath
;
/* if (message.message contain) {
}*/
let
html
=
Mustache
.
render
(
template
,
{
let
html
=
Mustache
.
render
(
template
,
{
text
:
message
.
message
,
text
:
message
.
message
,
from
:
message
.
loginId
,
from
:
message
.
loginId
,
shopMemberId
:
message
.
shopMemberId
,
shopMemberId
:
message
.
shopMemberId
,
profileImage
:
message
.
profile
ImagePath
,
profileImage
:
message
.
profile
Url
,
createdAtDay
:
messageTime
.
createdAtDay
,
createdAtDay
:
messageTime
.
createdAtDay
,
createdAtTime
:
messageTime
.
createdAtTime
createdAtTime
:
messageTime
.
createdAtTime
});
});
...
@@ -1214,9 +1220,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
...
@@ -1214,9 +1220,7 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
// ユーザ削除ボタン表示しない
// ユーザ削除ボタン表示しない
$
(
"#userSelectionDeleteBtn"
).
hide
();
$
(
"#userSelectionDeleteBtn"
).
hide
();
CHAT_UI
.
scrollToBottom
();
// チャットに遷移する
$
(
'#pills-chat-tab'
).
tab
(
'show'
);
};
};
...
...
public_new/js/chat-websocket.js
View file @
5cb24459
...
@@ -163,12 +163,30 @@ function setSocketAction () {
...
@@ -163,12 +163,30 @@ function setSocketAction () {
// New Message
// New Message
// #36170
// #36170
socket
.
on
(
'newMessage'
,
function
(
message
,
roomId
,
roomName
)
{
socket
.
on
(
'newMessage'
,
function
(
message
,
roomId
,
roomName
)
{
let
template
=
$
(
'#message-template'
).
html
();
console
.
log
(
'newMessage'
);
let
messageTime
=
CHAT_UTIL
.
formatDate
(
message
.
createdAt
);
var
userMessageTemplate
;
$
.
get
({
url
:
"./template/template_user_message.html"
,
async
:
false
}
,
function
(
text
)
{
userMessageTemplate
=
text
;
});
var
myMessageTemplate
;
$
.
get
({
url
:
"./template/template_my_message.html"
,
async
:
false
}
,
function
(
text
)
{
myMessageTemplate
=
text
;
});
var
systemMessageTemplate
;
$
.
get
({
url
:
"./template/template_system_message.html"
,
async
:
false
}
,
function
(
text
)
{
systemMessageTemplate
=
text
;
});
let
template
=
userMessageTemplate
;
if
(
message
.
id
===
socket
.
id
)
{
if
(
message
.
id
===
socket
.
id
)
{
// ユーザーが送信したメッセージの場合、自分のメッセージ様式を適用して表示する
// ユーザーが送信したメッセージの場合、自分のメッセージ様式を適用して表示する
template
=
$
(
'#message-template-me'
).
html
()
;
template
=
myMessageTemplate
;
}
}
let
messageTime
=
CHAT_UTIL
.
formatDate
(
message
.
createdAt
);
message
.
profileImagePath
=
CHAT
.
getProfileImgUrl
(
message
.
profileImagePath
)
message
.
profileImagePath
=
CHAT
.
getProfileImgUrl
(
message
.
profileImagePath
)
try
{
try
{
...
@@ -176,7 +194,9 @@ function setSocketAction () {
...
@@ -176,7 +194,9 @@ function setSocketAction () {
}
catch
(
e
)
{
}
catch
(
e
)
{
message
.
text
=
message
.
text
message
.
text
=
message
.
text
}
}
var
replacePath
=
message
.
text
;
replacePath
=
replacePath
.
replaceAll
(
'?fileName='
,
'?sid='
+
CHAT
.
globalLoginParameter
.
sid
+
'&fileName='
);
message
.
text
=
replacePath
;
let
html
=
Mustache
.
render
(
template
,
{
let
html
=
Mustache
.
render
(
template
,
{
text
:
message
.
text
,
text
:
message
.
text
,
from
:
message
.
from
,
from
:
message
.
from
,
...
@@ -186,12 +206,13 @@ function setSocketAction () {
...
@@ -186,12 +206,13 @@ function setSocketAction () {
});
});
// イメージの場合、img tagを追加する
// イメージの場合、img tagを追加する
html
=
message
.
text
.
includes
(
'attachedImages'
)
||
message
.
text
.
includes
(
'attachedVideos'
)
?
CHAT_UTIL
.
htmlDecode
(
html
)
:
html
;
html
=
message
.
text
.
includes
(
'attachedImages'
)
||
message
.
text
.
includes
(
'attachedVideos'
)
?
CHAT_UTIL
.
htmlDecode
(
html
)
:
html
;
console
.
log
(
html
);
$
(
'#messages'
).
append
(
html
);
$
(
'#messages'
).
append
(
html
);
// 画像、動画の描画を待ってからスクロール
// 画像、動画の描画を待ってからスクロール
setTimeout
(
function
()
{
setTimeout
(
function
()
{
CHAT_UI
.
scrollToBottom
();
CHAT_UI
.
scrollToBottom
();
},
15
00
);
},
3
00
);
});
});
// Notification
// Notification
...
...
public_new/js/chat.js
View file @
5cb24459
...
@@ -87,17 +87,22 @@ CHAT.createVideoThumbnailAndUpload = function(sourceImage, callback) {
...
@@ -87,17 +87,22 @@ CHAT.createVideoThumbnailAndUpload = function(sourceImage, callback) {
// Ajaxでイメージをアップロードする
// Ajaxでイメージをアップロードする
CHAT
.
uploadImage
=
function
(
formData
)
{
CHAT
.
uploadImage
=
function
(
formData
)
{
console
.
log
(
'uploadImage'
);
formData
.
append
(
'roomId'
,
CHAT
.
globalLoginParameter
.
roomId
);
formData
.
append
(
'roomId'
,
CHAT
.
globalLoginParameter
.
roomId
);
formData
.
append
(
'sid'
,
CHAT
.
globalLoginParameter
.
sid
);
console
.
log
(
formData
);
jQuery
.
ajax
({
jQuery
.
ajax
({
async
:
true
,
async
:
true
,
url
:
CMS_SERVER_URL
+
"/file/upload"
,
url
:
CMS_SERVER_URL
+
"/
chatapi/
file/upload"
,
type
:
"post"
,
type
:
"post"
,
data
:
formData
,
data
:
formData
,
contentType
:
false
,
contentType
:
false
,
processData
:
false
processData
:
false
}).
done
(
function
(
res
)
{
}).
done
(
function
(
res
)
{
// 8
// 8
var
imgPath
=
CMS_SERVER_URL
+
'/file/getImage?fileName='
+
res
.
fileName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
console
.
log
(
'DONE'
);
console
.
log
(
res
);
var
imgPath
=
CMS_SERVER_URL
+
'/chatapi/file/getImage?fileName='
+
res
.
fileName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
var
imageName
=
res
.
fileName
var
imageName
=
res
.
fileName
// uploadFileの判断
// uploadFileの判断
...
@@ -106,11 +111,10 @@ CHAT.uploadImage = function(formData) {
...
@@ -106,11 +111,10 @@ CHAT.uploadImage = function(formData) {
// 画像の処理
// 画像の処理
if
(
res
.
fileType
==
"jpeg"
||
res
.
fileType
==
"jpg"
||
res
.
fileType
==
"png"
)
{
if
(
res
.
fileType
==
"jpeg"
||
res
.
fileType
==
"jpg"
||
res
.
fileType
==
"png"
)
{
if
(
res
.
thumbnailPath
&&
res
.
thumbnailPath
.
length
>
0
)
{
if
(
res
.
thumbnailPath
&&
res
.
thumbnailPath
.
length
>
0
)
{
imgPath
=
CMS_SERVER_URL
+
'/file/getImage?fileName='
+
res
.
thumbImageFileName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
imgPath
=
CMS_SERVER_URL
+
'/
chatapi/
file/getImage?fileName='
+
res
.
thumbImageFileName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
imageName
=
res
.
thumbImageFileName
;
imageName
=
res
.
thumbImageFileName
;
}
}
let
downloadPath
=
CMS_SERVER_URL
+
'/chatapi/file/download?fileName='
+
imageName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
let
downloadPath
=
CMS_SERVER_URL
+
'/file/download?fileName='
+
imageName
+
'&roomId='
+
CHAT
.
globalLoginParameter
.
roomId
;
// アップロードが終了した後ローディング画面から離れてメッセージをメッセージを転送する
// アップロードが終了した後ローディング画面から離れてメッセージをメッセージを転送する
const
lightbox
=
$
(
'<a/>'
,{
href
:
imgPath
,
'data-lightbox'
:
'attachedImages'
,
'data-title'
:
imageName
});
const
lightbox
=
$
(
'<a/>'
,{
href
:
imgPath
,
'data-lightbox'
:
'attachedImages'
,
'data-title'
:
imageName
});
const
image
=
$
(
'<img/>'
,{
src
:
imgPath
,
width
:
'auto'
,
style
:
'max-width:100%'
});
const
image
=
$
(
'<img/>'
,{
src
:
imgPath
,
width
:
'auto'
,
style
:
'max-width:100%'
});
...
@@ -127,6 +131,7 @@ CHAT.uploadImage = function(formData) {
...
@@ -127,6 +131,7 @@ CHAT.uploadImage = function(formData) {
}
}
socket
.
emit
(
'createMessage'
,
{
socket
.
emit
(
'createMessage'
,
{
//text: '['+encodedText+'<&split>'+messageType.IMAGE+']'
text
:
encodedText
text
:
encodedText
},
1
);
},
1
);
...
@@ -152,7 +157,7 @@ CHAT.uploadImage = function(formData) {
...
@@ -152,7 +157,7 @@ CHAT.uploadImage = function(formData) {
}
}
socket
.
emit
(
'createMessage'
,
{
socket
.
emit
(
'createMessage'
,
{
text
:
encodedText
text
:
'['
+
encodedText
+
'<&split>'
+
messageType
.
VIDEO
+
']'
},
1
);
},
1
);
}
}
...
...
public_new/js/common.js
View file @
5cb24459
...
@@ -56,8 +56,13 @@ $(function() {
...
@@ -56,8 +56,13 @@ $(function() {
$
(
'.attach_file'
).
addClass
(
'none'
);
$
(
'.attach_file'
).
addClass
(
'none'
);
});
});
$
(
'.message_input_form'
).
focusout
(
function
(
){
$
(
'.message_input_form'
).
on
(
'focusout'
,
function
(
e
){
console
.
log
(
'OUTFOCUS---'
);
console
.
log
(
'OUTFOCUS---'
);
console
.
log
(
e
);
if
(
$
(
e
.
relatedTarget
).
hasClass
(
'message_input_send'
)){
CHAT_UI
.
sendMessage
();
}
console
.
log
(
e
.
relatedTarget
)
$
(
'.message_input_send'
).
addClass
(
'none'
);
$
(
'.message_input_send'
).
addClass
(
'none'
);
$
(
'.attach_file'
).
removeClass
(
'none'
);
$
(
'.attach_file'
).
removeClass
(
'none'
);
});
});
...
...
public_new/template/template_my_message.html
View file @
5cb24459
<div
class=
"room_right"
>
<div
class=
"room_right"
>
<div
class=
"text"
>
{{
from
}}
</div>
<div
class=
"text"
>
{{
text
}}
</div>
<div
class=
"date d-flex flex-column"
><span>
{{createdAtDay}}
</span><span>
{{createdAtTime}}
</span></div>
<div
class=
"date d-flex flex-column"
><span>
{{createdAtDay}}
</span><span>
{{createdAtTime}}
</span></div>
<div
class=
"read d-flex align-items-end"
><span></span></div>
<div
class=
"read d-flex align-items-end"
><span></span></div>
</div>
</div>
\ No newline at end of file
public_new/template/template_user_message.html
View file @
5cb24459
<div
class=
"room_left"
>
<div
class=
"room_left"
>
<figure>
<figure>
<a
href=
"#"
data-toggle=
"modal"
data-target=
"#profileModal1"
><img
src=
"
img/noImage.png"
alt=
"プロフィール画像
"
></a>
<a
href=
"#"
data-toggle=
"modal"
data-target=
"#profileModal1"
><img
src=
"
{{profileImage}}"
onError=
"this.src='./img/noImage.png'
"
></a>
</figure>
</figure>
<div
class=
"room_left-text"
>
<div
class=
"room_left-text"
>
<div
class=
"name"
>
{{from}}
</div>
<div
class=
"name"
>
{{from}}
</div>
...
...
public_new/template/template_user_name_card.html
View file @
5cb24459
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"modal-content"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header border-0"
>
<div
class=
"modal-header border-0"
>
<div
class=
"prifile_desc d-flex flex-row"
>
<div
class=
"prifile_desc d-flex flex-row"
>
<img
src=
"{{profile
Image
}}"
onError=
"this.src='./img/noImage.png'"
/>
<img
src=
"{{profile
Url
}}"
onError=
"this.src='./img/noImage.png'"
/>
<div
class=
"prifile_name"
><span>
{{name}}
</span></div>
<div
class=
"prifile_name"
><span>
{{name}}
</span></div>
</div>
</div>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-label=
"Close"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-label=
"Close"
>
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
<span>
通話
</span>
<span>
通話
</span>
</div>
</div>
</button>
</button>
<button
type=
"button"
class=
"border-0 bg_blue"
>
<button
type=
"button"
class=
"border-0 bg_blue"
onclick=
"CHAT_UI.startChat('{{shopMemberId}}','{{name}}');"
>
<div
class=
"d-flex flex-column"
>
<div
class=
"d-flex flex-column"
>
<div
class=
"img_wrap"
>
<div
class=
"img_wrap"
>
<img
src=
"icon/icon_profile_chat.png"
alt=
"チャット"
>
<img
src=
"icon/icon_profile_chat.png"
alt=
"チャット"
>
...
...
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