前言
技术文章,尤其是前端技术文章具有时效性。
如文中提到的部分内容出现break change或出现内容错误(文字错误/错误的理论描述),为尽可能避免对后面的读者造成困扰,如果可以的话,希望在文章的评论区或代码仓库issues中予以指正,十分感谢。
文章代码所在仓库:github.com/JUST-Limbo/…
注意:因为是前端演示项目,所以这个仓库的对话数据是mock的,如果想要接入OpenAI这种大模型,你需要自行调整接口
摘要
本文主要介绍了GPT打字机效果的前端实现思路。
在参考完抄别人作业目前的资料我总结了一下,打字机光标效果的实现思路主要有两种:
- 递归查找当前
DOM树中的最后一个节点内容不为空的文本叶子节点,然后追加一个闪烁的光标DOM - 依赖
CSS选择器,通过:last-child:after子代选择器和伪类选择器锁定位置,其实也是递归查最后一个非空叶子节点。
总之就是要找到最后一个非空叶子节点,然后在那个节点位置想办法把光标的效果摇出来。
我采用的是第1种实现方式,不过本文会对这两种实现方式都略作分析。
效果预览
队列思路概述
有一道很经典的小学数学题,说一个水池有一进水管一排水管,单开进水管5小时蓄满,单开排水管7小时排空,问从空池开始,同时打开进水管和出水管多久蓄满。
打字机的字符串渲染处理就类似于这种排水问题,它具备在入队的同时也在出队的特征,本质上是先入先出的队列思想。
为了使代码更紧凑,我们采用ES6 class的方式通过以下思路组织代码:
-
声明一个
Pipe类作为功能体的集合 -
声明一个静态属性
str来保存需要渲染的字符串内容- 声明一个
write静态方法来填充str,即队列入队 - 声明一个
pop静态方法来删除str靠前的内容,即队列出队
- 声明一个
-
声明一个
start静态方法启动渲染行为通过定时器尾递归执行渲染和出队行为,即修改
ref对象来渲染视图层(consume)和弹出str队头元素(pop) -
声明一个
consumeAll,一次性消耗掉队列中剩下的元素当
GPT回答结束,意味着当前队列不会再有入队的元素,但是队列可能没渲染完,这种情况继续用定时器陆续渲染是没有必要的,应该一次性把剩余所有元素都渲染到视图层上然后清空队列。
代码实现如下:
typescript代码解读复制代码// views/home/cmp/chatInputPanel.vue class Pipe { static str = '''' static timer = 0 static target: Nullable<Ref<gptMockNamespace.chatRecord>> = null static reset () { Pipe.str = '''' clearInterval(Pipe.timer) unLockScroll() Pipe.target = null } static start (data: Ref<gptMockNamespace.chatRecord>) { Pipe.target = data function recursiveTimeoutFunction () { Pipe.timer = setTimeout(() => { Pipe.consume(Pipe.getFirstStr()) Pipe.pop() recursiveTimeoutFunction() }, 50); } recursiveTimeoutFunction() } static write (chunk: string) { Pipe.str += chunk } static getFirstStr () { return Pipe.str[0] } static pop () { Pipe.str = Pipe.str.substring(1) } static consume (message: string = '''') { const ans = Pipe.target! ans.value.message += message !chatWindowScollLock.value && scrollToBottom() } static consumeAll () { Pipe.consume(Pipe.str) Pipe.str = '''' delete Pipe.target!.value.chatting clearInterval(Pipe.timer) } }
打字机光标实现
DOM方式实现光标
这种方式主要是通过找到当前DOM树的最后一个文本叶子节点lastText,本质上是二叉树倒序遍历
然后用appendChild将textNode放到lastText后面,这个时候我们就能获取到textNode的横轴纵轴坐标了。
拿到坐标把坐标数据覆盖到光标.blink元素的坐标上就可以了。
vue代码解读复制代码// views/home/cmp/chatItemBot.vue <script setup lang="ts"> import type { gptMockNamespace } from ''@/api/interface/gptmock'' import markdown from ''@/utils/markdownIt'' import { findLastNonEmptyTextNode } from ''@/utils/DomUtils'' const chatMarkdownBody = ref() const chatMessageContainer = ref() const pos = reactive({ x: 0, y: 0 }) let textNode: Nullable<Text> = document.createTextNode(''_'') function refreshPosXY () { const lastText = findLastNonEmptyTextNode(chatMarkdownBody.value) if (lastText) { lastText.parentNode!.appendChild(textNode!) } const range = document.createRange() range.setStart(textNode!, 0) range.setEnd(textNode!, 0) const textNodeRect = range.getBoundingClientRect() const containerRect = chatMessageContainer.value.getBoundingClientRect() pos.x = textNodeRect.left - containerRect.left pos.y = textNodeRect.top - containerRect.top textNode!.remove() } onMounted(() => { refreshPosXY() }) onUpdated(() => { refreshPosXY() }) onBeforeUnmount(() => { textNode = null }) </script> <style lang="scss" scoped> .blink { position: absolute; width: 10px; height: 2px; transform: translateY(13px); background: black; left: calc(v-bind(''pos.x'') * 1px); top: calc(v-bind(''pos.y'') * 1px); animation: blink 1s steps(5, start) infinite; } </style>
这种实现有一个问题(能解决但是我觉得没必要)在这里也简单说一下:
html代码解读复制代码<div class="chat-markdown-body"> <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Reprehenderit officiis tempora iusto voluptates exercitationem vel praesentium dolores sapiente aliquam fugiat, esse eveniet quae quisquam omnis facilis deserunt ullam obcaecati? Harum.</p> <pre class="hljs highlight-pre"> <code class="highlight-code"></code> </pre> </div>
当DOM树结构是上述代码时,findLastNonEmptyTextNode匹配到的是Harum.的结尾,也就是说光标会落在p元素的结尾,然而这其实是有点不符合预期的,虽然pre>code的内容是空的,但是这其实意味着p元素的渲染其实已经结束了,即将渲染的是code的文本内容,所以光标应该落在code元素里。
这是一个小瑕疵,问题不是特别大。没有完善的原因是,我不想为了兼容这个场景在findLastNonEmptyTextNode函数内做硬编码判断破坏它的紧凑性。
CSS方式实现光标
CSS伪类实现光标的性能要好很多。
这种方式也能应对大多数的场景,有个小问题是子代选择器没有什么特别全面的办法锁定最后一个非空叶子结点(如果某个场景出问题就要接着写样式去覆盖那个场景,纯纯的手动挡懂我意思吧?),而且会被换行符之类的东西影响。
scss代码解读复制代码// styles/highlight.scss @mixin FlashingCursor { animation: blink 1s steps(5, start) infinite; content: ''▋''; margin-left: 0.25rem; vertical-align: baseline; } @keyframes blink { 0%, 100% { opacity: 0; } 25%, 50% { opacity: 1; } } .chat-markdown-body-rendering { &:empty:after { content: ''思考中...''; animation: blink 1s steps(5, start) infinite; margin-left: 0.25rem; vertical-align: baseline; } // 打字机光标 锁定位置主要看这里 > :not(ol):not(ul):not(pre):last-child:after, > pre:last-child code:after, > ol:last-child li:last-child:after, > ul:last-child li:last-child:after { @include FlashingCursor; } }
总结
总体来说,效果其实不难,主要是markdown-it和highlight.js要仔细看看文档,这2个包好像vitepress也在用,就算有坑前面应该都有人帮填上了,所以放心使用。
打字机光标应该还有别的实现方案,可以去bilibili上搜CSS 打字机,我记得很多年前就刷到过。