Skip to content
代码片段 群组 项目
未验证 提交 0e4cea35 编辑于 作者: Denys Mishunov's avatar Denys Mishunov
浏览文件

Updated gitlab-ui and refactored duo chat

Changelog: changed
EE: true
上级 48131a63
No related branches found
No related tags found
无相关合并请求
...@@ -126,53 +126,45 @@ export default { ...@@ -126,53 +126,45 @@ export default {
}, },
methods: { methods: {
...mapActions(['addDuoChatMessage', 'setMessages', 'setLoading']), ...mapActions(['addDuoChatMessage', 'setMessages', 'setLoading']),
isClearOrResetMessage(question) {
return [
GENIE_CHAT_CLEAN_MESSAGE,
GENIE_CHAT_CLEAR_MESSAGE,
GENIE_CHAT_RESET_MESSAGE,
].includes(question);
},
onSendChatPrompt(question) { onSendChatPrompt(question) {
const trimmedQuestion = question.trim(); if (!this.isClearOrResetMessage(question)) {
if (
![GENIE_CHAT_CLEAN_MESSAGE, GENIE_CHAT_CLEAR_MESSAGE, GENIE_CHAT_RESET_MESSAGE].includes(
trimmedQuestion,
)
) {
this.setLoading(); this.setLoading();
} }
this.$apollo this.$apollo
.mutate({ .mutate({
mutation: chatMutation, mutation: chatMutation,
variables: { variables: {
question: trimmedQuestion, question,
resourceId: this.resourceId || this.userId, resourceId: this.resourceId || this.userId,
clientSubscriptionId: this.clientSubscriptionId, clientSubscriptionId: this.clientSubscriptionId,
}, },
}) })
.then(({ data: { aiAction = {} } = {} }) => { .then(({ data: { aiAction = {} } = {} }) => {
if ( if (!this.isClearOrResetMessage(question)) {
![
GENIE_CHAT_CLEAN_MESSAGE,
GENIE_CHAT_CLEAR_MESSAGE,
GENIE_CHAT_RESET_MESSAGE,
].includes(trimmedQuestion)
) {
this.track('submit_gitlab_duo_question', { this.track('submit_gitlab_duo_question', {
property: aiAction.requestId, property: aiAction.requestId,
}); });
} }
if ( if ([GENIE_CHAT_CLEAN_MESSAGE, GENIE_CHAT_CLEAR_MESSAGE].includes(question)) {
trimmedQuestion === GENIE_CHAT_CLEAN_MESSAGE ||
trimmedQuestion === GENIE_CHAT_CLEAR_MESSAGE
) {
this.$apollo.queries.aiMessages.refetch(); this.$apollo.queries.aiMessages.refetch();
} else { } else {
this.addDuoChatMessage({ this.addDuoChatMessage({
...aiAction, ...aiAction,
content: trimmedQuestion, content: question,
}); });
} }
}) })
.catch((err) => { .catch((err) => {
this.error = err.toString(); this.error = err.toString();
this.addDuoChatMessage({ this.addDuoChatMessage({
content: trimmedQuestion, content: question,
}); });
this.setLoading(false); this.setLoading(false);
}); });
......
...@@ -179,19 +179,15 @@ describe('GitLab Duo Chat', () => { ...@@ -179,19 +179,15 @@ describe('GitLab Duo Chat', () => {
findGlDuoChat().vm.$emit('send-chat-prompt', MOCK_USER_MESSAGE.content); findGlDuoChat().vm.$emit('send-chat-prompt', MOCK_USER_MESSAGE.content);
expect(actionSpies.setLoading).toHaveBeenCalled(); expect(actionSpies.setLoading).toHaveBeenCalled();
}); });
it.each([ it.each([GENIE_CHAT_RESET_MESSAGE, GENIE_CHAT_CLEAN_MESSAGE, GENIE_CHAT_CLEAR_MESSAGE])(
GENIE_CHAT_RESET_MESSAGE, 'does not set loading to `true` for "%s" message',
` ${GENIE_CHAT_RESET_MESSAGE} `, async (msg) => {
GENIE_CHAT_CLEAN_MESSAGE, actionSpies.setLoading.mockReset();
` ${GENIE_CHAT_CLEAN_MESSAGE} `, findGlDuoChat().vm.$emit('send-chat-prompt', msg);
GENIE_CHAT_CLEAR_MESSAGE, await nextTick();
` ${GENIE_CHAT_CLEAR_MESSAGE} `, expect(actionSpies.setLoading).not.toHaveBeenCalled();
])('does not set loading to `true` for "%s" message', async (msg) => { },
actionSpies.setLoading.mockReset(); );
findGlDuoChat().vm.$emit('send-chat-prompt', msg);
await nextTick();
expect(actionSpies.setLoading).not.toHaveBeenCalled();
});
describe.each` describe.each`
resourceId | expectedResourceId resourceId | expectedResourceId
...@@ -243,12 +239,7 @@ describe('GitLab Duo Chat', () => { ...@@ -243,12 +239,7 @@ describe('GitLab Duo Chat', () => {
}); });
}); });
it.each([ it.each([GENIE_CHAT_CLEAN_MESSAGE, GENIE_CHAT_CLEAR_MESSAGE])(
GENIE_CHAT_CLEAN_MESSAGE,
` ${GENIE_CHAT_CLEAN_MESSAGE} `,
GENIE_CHAT_CLEAR_MESSAGE,
` ${GENIE_CHAT_CLEAR_MESSAGE} `,
])(
'refetches the `aiMessages` if the prompt is "%s" and does not call addDuoChatMessage', 'refetches the `aiMessages` if the prompt is "%s" and does not call addDuoChatMessage',
async (prompt) => { async (prompt) => {
createComponent(); createComponent();
...@@ -285,20 +276,16 @@ describe('GitLab Duo Chat', () => { ...@@ -285,20 +276,16 @@ describe('GitLab Duo Chat', () => {
await waitForPromises(); await waitForPromises();
expect(trackingSpy).toHaveBeenCalled(); expect(trackingSpy).toHaveBeenCalled();
}); });
it.each([ it.each([GENIE_CHAT_RESET_MESSAGE, GENIE_CHAT_CLEAN_MESSAGE, GENIE_CHAT_CLEAR_MESSAGE])(
GENIE_CHAT_RESET_MESSAGE, 'does not track if the sent message is "%s"',
` ${GENIE_CHAT_RESET_MESSAGE} `, async (msg) => {
GENIE_CHAT_CLEAN_MESSAGE, createComponent();
` ${GENIE_CHAT_CLEAN_MESSAGE} `, findGlDuoChat().vm.$emit('send-chat-prompt', msg);
GENIE_CHAT_CLEAR_MESSAGE,
` ${GENIE_CHAT_CLEAR_MESSAGE} `, await waitForPromises();
])('does not track if the sent message is "%s"', async (msg) => { expect(trackingSpy).not.toHaveBeenCalled();
createComponent(); },
findGlDuoChat().vm.$emit('send-chat-prompt', msg); );
await waitForPromises();
expect(trackingSpy).not.toHaveBeenCalled();
});
}); });
}); });
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册