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
2622f6b8
Commit
2622f6b8
authored
Sep 10, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed class to function for not to use es6
parent
c64b670e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
107 additions
and
148 deletions
+107
-148
public_new/js/Models/coview-userinfo.js
+59
-70
public_new/js/Models/deviceinfo.js
+14
-20
public_new/js/Models/roominfo.js
+5
-10
public_new/js/Models/serverinfo.js
+5
-11
public_new/js/Models/socket-joininfo.js
+8
-16
public_new/js/Models/userinfo.js
+16
-21
No files found.
public_new/js/Models/coview-userinfo.js
View file @
2622f6b8
...
...
@@ -6,84 +6,73 @@ NativeBridgeDataSource.getCollaborationJoinFlg = function () {
}
};
var
CoviewUserInfo
=
class
{
sid
;
loginId
;
roomId
;
shopName
;
collaborationType
;
joinType
;
isLeaved
;
meetingID
;
function
CoviewUserInfo
(
sid
,
loginId
,
roomId
,
shopName
)
{
this
.
sid
=
sid
;
this
.
loginId
=
loginId
;
this
.
roomId
=
roomId
;
this
.
shopName
=
shopName
;
const
unwrappedType
=
NativeBridgeDataSource
.
getJoinCollaborationType
();
this
.
collaborationType
=
this
.
parseNumberToCoworkType
(
unwrappedType
);
this
.
joinType
=
NativeBridgeDataSource
.
getCollaborationJoinFlg
();
constructor
(
sid
,
loginId
,
roomId
,
shopName
)
{
this
.
sid
=
sid
;
this
.
loginId
=
loginId
;
this
.
roomId
=
roomId
;
this
.
shopName
=
shopName
;
const
unwrappedType
=
NativeBridgeDataSource
.
getJoinCollaborationType
();
this
.
collaborationType
=
this
.
parseNumberToCoworkType
(
unwrappedType
);
this
.
joinType
=
NativeBridgeDataSource
.
getCollaborationJoinFlg
();
this
.
isLeaved
=
false
;
this
.
meetingID
=
0
;
}
this
.
isLeaved
=
false
;
this
.
meetingID
=
0
;
}
get
coWorkType
()
{
switch
(
this
.
collaborationType
)
{
case
COLLABORATION_TYPE
.
AUDIO
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE
.
CAMERA
:
return
COLLABORATION_TYPE
.
CAMERA
;
case
COLLABORATION_TYPE
.
VIDEO
:
return
COLLABORATION_TYPE
.
VIDEO
;
case
COLLABORATION_TYPE
.
DOCUMENT
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE
.
BOARD
:
return
COLLABORATION_TYPE
.
AUDIO
;
}
CoviewUserInfo
.
prototype
.
coWorkType
=
function
()
{
switch
(
this
.
collaborationType
)
{
case
COLLABORATION_TYPE
.
AUDIO
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE
.
CAMERA
:
return
COLLABORATION_TYPE
.
CAMERA
;
case
COLLABORATION_TYPE
.
VIDEO
:
return
COLLABORATION_TYPE
.
VIDEO
;
case
COLLABORATION_TYPE
.
DOCUMENT
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE
.
BOARD
:
return
COLLABORATION_TYPE
.
AUDIO
;
}
};
isInvited
()
{
return
this
.
joinType
==
COLLABORATION_JOIN_TYPE
.
INVITED
;
}
CoviewUserInfo
.
prototype
.
isInvited
=
function
()
{
return
this
.
joinType
==
COLLABORATION_JOIN_TYPE
.
INVITED
;
};
parseNumberToCoworkType
(
type
)
{
switch
(
type
)
{
case
COLLABORATION_TYPE_NUMBER
.
AUDIO
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE_NUMBER
.
CAMERA
:
return
COLLABORATION_TYPE
.
CAMERA
;
case
COLLABORATION_TYPE_NUMBER
.
VIDEO
:
return
COLLABORATION_TYPE
.
VIDEO
;
case
COLLABORATION_TYPE_NUMBER
.
DOCUMENT
:
return
COLLABORATION_TYPE
.
DOCUMENT
;
case
COLLABORATION_TYPE_NUMBER
.
BOARD
:
return
COLLABORATION_TYPE
.
BOARD
;
default
:
return
0
;
}
CoviewUserInfo
.
prototype
.
parseNumberToCoworkType
=
function
(
type
)
{
switch
(
type
)
{
case
COLLABORATION_TYPE_NUMBER
.
AUDIO
:
return
COLLABORATION_TYPE
.
AUDIO
;
case
COLLABORATION_TYPE_NUMBER
.
CAMERA
:
return
COLLABORATION_TYPE
.
CAMERA
;
case
COLLABORATION_TYPE_NUMBER
.
VIDEO
:
return
COLLABORATION_TYPE
.
VIDEO
;
case
COLLABORATION_TYPE_NUMBER
.
DOCUMENT
:
return
COLLABORATION_TYPE
.
DOCUMENT
;
case
COLLABORATION_TYPE_NUMBER
.
BOARD
:
return
COLLABORATION_TYPE
.
BOARD
;
default
:
return
0
;
}
};
getCollaborarionTypeAsNumber
()
{
return
this
.
parseCoworkTypeToNumber
(
this
.
collaborationType
);
}
CoviewUserInfo
.
prototype
.
getCollaborarionTypeAsNumber
=
function
()
{
return
this
.
parseCoworkTypeToNumber
(
this
.
collaborationType
);
};
parseCoworkTypeToNumber
(
type
)
{
switch
(
type
)
{
case
COLLABORATION_TYPE
.
AUDIO
:
return
COLLABORATION_TYPE_NUMBER
.
AUDIO
;
case
COLLABORATION_TYPE
.
CAMERA
:
return
COLLABORATION_TYPE_NUMBER
.
CAMERA
;
case
COLLABORATION_TYPE
.
VIDEO
:
return
COLLABORATION_TYPE_NUMBER
.
VIDEO
;
case
COLLABORATION_TYPE
.
DOCUMENT
:
return
COLLABORATION_TYPE_NUMBER
.
DOCUMENT
;
case
COLLABORATION_TYPE
.
BOARD
:
return
COLLABORATION_TYPE_NUMBER
.
BOARD
;
default
:
return
0
;
}
CoviewUserInfo
.
prototype
.
parseCoworkTypeToNumber
=
function
(
type
)
{
switch
(
type
)
{
case
COLLABORATION_TYPE
.
AUDIO
:
return
COLLABORATION_TYPE_NUMBER
.
AUDIO
;
case
COLLABORATION_TYPE
.
CAMERA
:
return
COLLABORATION_TYPE_NUMBER
.
CAMERA
;
case
COLLABORATION_TYPE
.
VIDEO
:
return
COLLABORATION_TYPE_NUMBER
.
VIDEO
;
case
COLLABORATION_TYPE
.
DOCUMENT
:
return
COLLABORATION_TYPE_NUMBER
.
DOCUMENT
;
case
COLLABORATION_TYPE
.
BOARD
:
return
COLLABORATION_TYPE_NUMBER
.
BOARD
;
default
:
return
0
;
}
};
...
...
public_new/js/Models/deviceinfo.js
View file @
2622f6b8
...
...
@@ -6,30 +6,24 @@ NativeBridgeDataSource.getDeviceInfo = function () {
}
};
var
DeviceInfo
=
class
{
isMoble
;
// iphone or iPad
platform
;
// ios or android
androidVersion
;
constructor
(
deviceInfo
)
{
this
.
isMoble
=
deviceInfo
.
isMoble
;
this
.
platform
=
deviceInfo
.
platform
;
if
(
typeof
android
!=
"undefined"
)
{
this
.
androidVersion
=
android
.
getAndroidVersion
();
}
function
DeviceInfo
(
deviceInfo
)
{
this
.
isMoble
=
deviceInfo
.
isMoble
;
this
.
platform
=
deviceInfo
.
platform
;
if
(
typeof
android
!=
"undefined"
)
{
this
.
androidVersion
=
android
.
getAndroidVersion
();
}
}
isiOS
()
{
return
this
.
platform
==
"ios"
;
}
DeviceInfo
.
prototype
.
isiOS
=
function
()
{
return
this
.
platform
==
"ios"
;
};
isAndroid
()
{
return
this
.
platform
==
"android"
;
}
DeviceInfo
.
prototype
.
isAndroid
=
function
()
{
return
this
.
platform
==
"android"
;
};
isMobile
()
{
return
this
.
isMoble
==
true
;
}
DeviceInfo
.
prototype
.
isMobile
=
function
()
{
return
this
.
isMoble
==
true
;
};
var
deviceInfo
=
new
DeviceInfo
(
NativeBridgeDataSource
.
getDeviceInfo
());
...
...
public_new/js/Models/roominfo.js
View file @
2622f6b8
...
...
@@ -6,15 +6,10 @@ NativeBridgeDataSource.getRoomInfo = function () {
}
};
var
RoomInfo
=
class
{
roomID
;
roomName
;
roomType
;
constructor
(
roomInfo
)
{
this
.
roomID
=
roomInfo
.
roomID
;
this
.
roomName
=
roomInfo
.
roomName
;
this
.
roomType
=
roomInfo
.
roomType
;
}
};
function
RoomInfo
(
roomInfo
)
{
this
.
roomID
=
roomInfo
.
roomID
;
this
.
roomName
=
roomInfo
.
roomName
;
this
.
roomType
=
roomInfo
.
roomType
;
}
var
roomInfo
=
new
RoomInfo
(
NativeBridgeDataSource
.
getRoomInfo
());
public_new/js/Models/serverinfo.js
View file @
2622f6b8
...
...
@@ -6,16 +6,10 @@ NativeBridgeDataSource.getServerInfo = function () {
}
};
var
ServerInfo
=
class
{
chatURL
;
cmsURL
;
isOnline
;
constructor
(
serverInfo
)
{
this
.
chatURL
=
serverInfo
.
chatURL
;
this
.
cmsURL
=
serverInfo
.
cmsURL
;
this
.
isOnline
=
serverInfo
.
isOnline
;
}
};
function
ServerInfo
(
serverInfo
)
{
this
.
chatURL
=
serverInfo
.
chatURL
;
this
.
cmsURL
=
serverInfo
.
cmsURL
;
this
.
isOnline
=
serverInfo
.
isOnline
;
}
var
serverInfo
=
new
ServerInfo
(
NativeBridgeDataSource
.
getServerInfo
());
public_new/js/Models/socket-joininfo.js
View file @
2622f6b8
var
JoinInfo
=
class
{
sid
;
loginId
;
shopName
;
roomId
;
roomName
;
shopMemberId
;
constructor
(
sid
,
loginId
,
shopName
,
roomId
,
roomName
,
shopMemberId
)
{
this
.
sid
=
sid
;
this
.
loginId
=
loginId
;
this
.
shopName
=
shopName
;
this
.
roomId
=
roomId
;
this
.
roomName
=
roomName
;
this
.
shopMemberId
=
shopMemberId
;
}
};
function
JoinInfo
(
sid
,
loginId
,
shopName
,
roomId
,
roomName
,
shopMemberId
)
{
this
.
sid
=
sid
;
this
.
loginId
=
loginId
;
this
.
shopName
=
shopName
;
this
.
roomId
=
roomId
;
this
.
roomName
=
roomName
;
this
.
shopMemberId
=
shopMemberId
;
}
public_new/js/Models/userinfo.js
View file @
2622f6b8
...
...
@@ -6,30 +6,25 @@ NativeBridgeDataSource.getMyUserInfo = function () {
}
};
var
CurrentUserInfo
=
class
{
sid
;
loginID
;
shopName
;
shopMemberID
;
languageCode
;
constructor
(
userInfo
)
{
this
.
sid
=
userInfo
.
sid
;
this
.
loginID
=
userInfo
.
loginId
;
this
.
shopName
=
userInfo
.
shopName
;
this
.
shopMemberID
=
userInfo
.
shopMemberId
;
if
(
userInfo
.
languageCode
==
undefined
)
{
userInfo
.
languageCode
=
"jp"
;
}
this
.
languageCode
=
userInfo
.
languageCode
;
function
CurrentUserInfo
(
userInfo
)
{
this
.
sid
=
userInfo
.
sid
;
this
.
loginID
=
userInfo
.
loginId
;
this
.
shopName
=
userInfo
.
shopName
;
this
.
shopMemberID
=
userInfo
.
shopMemberId
;
if
(
userInfo
.
languageCode
==
undefined
)
{
userInfo
.
languageCode
=
"jp"
;
}
this
.
languageCode
=
userInfo
.
languageCode
;
}
configureLanguage
(
languageCode
=
undefined
)
{
if
(
languageCode
==
undefined
)
{
languageCode
=
this
.
languageCode
;
}
moment
.
locale
(
languageCode
);
setLanguage
(
languageCode
);
CurrentUserInfo
.
prototype
.
configureLanguage
=
function
(
languageCode
=
undefined
)
{
if
(
languageCode
==
undefined
)
{
languageCode
=
this
.
languageCode
;
}
moment
.
locale
(
languageCode
);
setLanguage
(
languageCode
);
};
var
currentUserInfo
=
new
CurrentUserInfo
(
...
...
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