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

Merge branch 'nd/stream-order-issue' into 'master'

Do not render chunks once full message is received

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/134387



Merged-by: default avatarDenys Mishunov <dmishunov@gitlab.com>
Approved-by: default avatarDenys Mishunov <dmishunov@gitlab.com>
Reviewed-by: default avatarDenys Mishunov <dmishunov@gitlab.com>
Reviewed-by: default avatarNicolas Dular <ndular@gitlab.com>
Co-authored-by: default avatarNicolas Dular <ndular@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -39,6 +39,7 @@ export default { ...@@ -39,6 +39,7 @@ export default {
data() { data() {
return { return {
messageContent: this.getContent(), messageContent: this.getContent(),
chunksFinished: false,
}; };
}, },
computed: { computed: {
...@@ -59,10 +60,14 @@ export default { ...@@ -59,10 +60,14 @@ export default {
if (!chunkId) { if (!chunkId) {
this.$options.messageChunks = []; this.$options.messageChunks = [];
this.messageContent = this.getContent(); this.messageContent = this.getContent();
this.chunksFinished = true;
await this.$nextTick(); await this.$nextTick();
renderGFM(this.$refs.content); renderGFM(this.$refs.content);
} else { } else {
if (this.chunksFinished) {
return;
}
this.$options.messageChunks[chunkId] = content; this.$options.messageChunks[chunkId] = content;
this.messageContent = renderMarkdown( this.messageContent = renderMarkdown(
concatIndicesUntilEmpty(this.$options.messageChunks), concatIndicesUntilEmpty(this.$options.messageChunks),
......
...@@ -359,6 +359,29 @@ describe('AiGenieChatMessage', () => { ...@@ -359,6 +359,29 @@ describe('AiGenieChatMessage', () => {
expect(findContent().text()).toBe(content1 + content2); expect(findContent().text()).toBe(content1 + content2);
}); });
it('does not re-render when chunk gets received after full message', async () => {
// setProps is justified here because we are testing the component's
// reactive behavior which consistutes an exception
// See https://docs.gitlab.com/ee/development/fe_guide/style/vue.html#setting-component-state
wrapper.setProps({
message: chunk1,
});
await nextTick();
expect(findContent().text()).toBe(content1);
wrapper.setProps({
message: { ...MOCK_CHUNK_MESSAGE, content: content1 + content2, chunkId: null },
});
await nextTick();
expect(findContent().text()).toBe(content1 + content2);
wrapper.setProps({
message: chunk2,
});
await nextTick();
expect(findContent().text()).toBe(content1 + content2);
});
it('does not hydrate the chunk message with GLFM', async () => { it('does not hydrate the chunk message with GLFM', async () => {
createComponent({ createComponent({
propsData: { propsData: {
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册