Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
foreign
/
customer-service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6c77b02d
authored
Nov 08, 2021
by
Sixong.Zhu
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
update
parent
5a7a2574
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
40 additions
and
28 deletions
components/controller/index.ts
model/index.ts
store/index.ts
store/model.ts
xim/models/chat.ts
components/controller/index.ts
View file @
6c77b02d
import
{
MessageType
}
from
"@/customer-service/model"
;
import
{
MessageType
}
from
"@/customer-service/model"
;
export
function
parserMessage
(
type
:
string
,
rawMsg
:
string
)
{
const
mapping
=
new
Map
<
MessageType
,
string
>
([
[
MessageType
.
Image
,
'图片'
],
[
MessageType
.
Video
,
'视频'
],
[
MessageType
.
Voice
,
'语音'
],
[
MessageType
.
File
,
'文件'
],
[
MessageType
.
Withdraw
,
'撤回了一条消息'
],
[
MessageType
.
MyPurchasePlan
,
'我的采购计划'
],
[
MessageType
.
MyWelfare
,
'我的福利'
],
[
MessageType
.
QuestionAnswer
,
'问答'
],
])
export
function
parserMessage
(
type
:
MessageType
,
rawMsg
:
string
)
{
if
(
!
type
)
return
""
;
if
(
!
type
)
return
""
;
if
(
!
rawMsg
)
return
""
;
if
(
!
rawMsg
)
return
""
;
if
(
type
===
MessageType
.
Text
)
{
if
(
type
===
MessageType
.
Text
)
{
...
@@ -11,29 +22,9 @@ export function parserMessage(type: string, rawMsg: string) {
...
@@ -11,29 +22,9 @@ export function parserMessage(type: string, rawMsg: string) {
const
msg
=
JSON
.
parse
(
rawMsg
);
const
msg
=
JSON
.
parse
(
rawMsg
);
return
msg
.
text
;
return
msg
.
text
;
}
}
if
(
type
===
MessageType
.
Image
)
{
const
t
=
mapping
.
get
(
type
)
return
`[图片]`
;
if
(
t
)
{
}
return
t
;
if
(
type
===
MessageType
.
Video
)
{
return
`[视频]`
;
}
if
(
type
===
MessageType
.
Voice
)
{
return
`[语音]`
;
}
if
(
type
===
MessageType
.
File
)
{
return
`[文件]`
;
}
if
(
type
===
MessageType
.
Withdraw
)
{
return
`[撤回了一条消息]`
;
}
if
(
type
===
MessageType
.
MyPurchasePlan
)
{
return
`[我的采购计划]`
;
}
if
(
type
===
MessageType
.
MyWelfare
)
{
return
`[我的福利]`
;
}
if
(
type
===
MessageType
.
QuestionAnswer
)
{
return
`[问答]`
;
}
}
return
`[系统自动回复]`
;
return
`[系统自动回复]`
;
}
}
model/index.ts
View file @
6c77b02d
...
@@ -102,6 +102,7 @@ export const enum MessageType {
...
@@ -102,6 +102,7 @@ export const enum MessageType {
MyWelfare
=
"my_welfare"
,
MyWelfare
=
"my_welfare"
,
QuestionAnswer
=
"question_answer"
,
QuestionAnswer
=
"question_answer"
,
Action
=
"action"
,
Action
=
"action"
,
Notify
=
'notify'
}
}
export
const
enum
MessageHandled
{
export
const
enum
MessageHandled
{
...
...
store/index.ts
View file @
6c77b02d
...
@@ -31,7 +31,7 @@ function uniqueMessages(
...
@@ -31,7 +31,7 @@ function uniqueMessages(
messages
:
NonNullable
<
ChatStore
.
STATE_CHAT_MSG_HISTORY
>
messages
:
NonNullable
<
ChatStore
.
STATE_CHAT_MSG_HISTORY
>
)
{
)
{
const
arr
=
[...
messages
];
const
arr
=
[...
messages
];
return
unique
(
arr
,
function
(
item
,
all
)
{
return
unique
(
arr
,
function
(
item
,
all
)
{
return
all
.
findIndex
((
k
)
=>
k
.
id
===
item
.
id
);
return
all
.
findIndex
((
k
)
=>
k
.
id
===
item
.
id
);
});
});
}
}
...
@@ -334,7 +334,7 @@ export default {
...
@@ -334,7 +334,7 @@ export default {
state
[
ChatStore
.
STATE_CHAT_SENDING_MESSAGES
]
=
[...
current
];
state
[
ChatStore
.
STATE_CHAT_SENDING_MESSAGES
]
=
[...
current
];
}
}
},
},
[
ChatStore
.
MUTATION_SAVE_CURRENT_CHAT_INPUTING
]:
(
function
()
{
[
ChatStore
.
MUTATION_SAVE_CURRENT_CHAT_INPUTING
]:
(
function
()
{
const
setTimeoutId
:
{
[
key
:
string
]:
number
}
=
{};
const
setTimeoutId
:
{
[
key
:
string
]:
number
}
=
{};
return
(
return
(
state
:
ChatStoreState
,
state
:
ChatStoreState
,
...
@@ -836,7 +836,7 @@ export default {
...
@@ -836,7 +836,7 @@ export default {
}
}
commit
(
commit
(
ChatStore
.
MUTATION_SAVE_CURRENT_CHAT_MEMBERS
,
ChatStore
.
MUTATION_SAVE_CURRENT_CHAT_MEMBERS
,
unique
(
newChatMembers
,
function
(
item
,
all
)
{
unique
(
newChatMembers
,
function
(
item
,
all
)
{
return
all
.
findIndex
((
k
)
=>
k
.
eid
===
item
.
eid
);
return
all
.
findIndex
((
k
)
=>
k
.
eid
===
item
.
eid
);
})
})
);
);
...
@@ -1049,6 +1049,22 @@ export default {
...
@@ -1049,6 +1049,22 @@ export default {
[
ChatStore
.
ACTION_SET_CHAT_ERROR
]:
({
state
},
chat
:
number
)
=>
{
[
ChatStore
.
ACTION_SET_CHAT_ERROR
]:
({
state
},
chat
:
number
)
=>
{
(
<
any
>
state
)[
ChatStore
.
STATE_CHAT_CURRENT_IS_CHAT_ERROR
]
=
chat
;
(
<
any
>
state
)[
ChatStore
.
STATE_CHAT_CURRENT_IS_CHAT_ERROR
]
=
chat
;
},
},
[
ChatStore
.
ACTION_GET_USERINFO
]:
({
state
},
id
:
string
)
=>
{
const
cache
=
state
[
ChatStore
.
STATE_CHAT_USERNAME
]
||
{};
if
(
cache
[
id
])
{
return
Promise
.
resolve
({
id
,
name
:
cache
[
id
]
});
}
return
new
Promise
<
{
id
:
string
;
name
:
string
}
>
((
resolve
,
reject
)
=>
{
Chat
.
getSdk
().
model
(
"user"
)
.
detail
(
id
)
.
query
()
.
then
((
userInfo
:
any
)
=>
{
const
name
=
userInfo
.
row
.
first_name
.
display
as
string
;
Vue
.
set
(
state
[
ChatStore
.
STATE_CHAT_USERNAME
],
id
,
name
);
resolve
({
id
,
name
});
}).
catch
(
reject
);
});
},
},
},
getters
:
{
getters
:
{
[
ChatStore
.
STATE_CHAT_MSG_HISTORY
](
state
)
{
[
ChatStore
.
STATE_CHAT_MSG_HISTORY
](
state
)
{
...
...
store/model.ts
View file @
6c77b02d
...
@@ -3,6 +3,7 @@ import { namespace } from "vuex-class";
...
@@ -3,6 +3,7 @@ import { namespace } from "vuex-class";
import
*
as
dto
from
"../model"
;
import
*
as
dto
from
"../model"
;
import
{
Chat
as
ChatType
}
from
"../xim/models/chat"
;
import
{
Chat
as
ChatType
}
from
"../xim/models/chat"
;
import
*
as
chatDto
from
"../xim/models/chat"
;
import
*
as
chatDto
from
"../xim/models/chat"
;
export
enum
ChatStatus
{
export
enum
ChatStatus
{
opening
=
0
,
opening
=
0
,
terminated
=
1
,
terminated
=
1
,
...
@@ -350,6 +351,9 @@ export namespace ChatStore {
...
@@ -350,6 +351,9 @@ export namespace ChatStore {
export
const
ACTION_SET_CHAT_ERROR
=
"标记会话关键性错误"
;
export
const
ACTION_SET_CHAT_ERROR
=
"标记会话关键性错误"
;
export
type
ACTION_SET_CHAT_ERROR
=
(
chat
:
number
)
=>
void
;
export
type
ACTION_SET_CHAT_ERROR
=
(
chat
:
number
)
=>
void
;
export
const
ACTION_GET_USERINFO
=
'获取用户个人信息'
;
export
type
ACTION_GET_USERINFO
=
(
id
:
string
)
=>
Promise
<
{
id
:
string
;
name
:
string
}
>
export
interface
ChatUpdateParameter
{
export
interface
ChatUpdateParameter
{
chat
:
number
;
chat
:
number
;
type
?:
dto
.
MessageType
;
type
?:
dto
.
MessageType
;
...
...
xim/models/chat.ts
View file @
6c77b02d
...
@@ -22,7 +22,7 @@ export interface Chat {
...
@@ -22,7 +22,7 @@ export interface Chat {
biz_id
:
string
;
biz_id
:
string
;
last_msg_sender
:
string
;
last_msg_sender
:
string
;
last_msg_content
:
string
;
last_msg_content
:
string
;
last_msg_type
:
string
;
last_msg_type
:
MessageType
;
model_name
:
string
;
model_name
:
string
;
obj_id
:
string
;
obj_id
:
string
;
is_finish
:
boolean
;
is_finish
:
boolean
;
...
...
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