!477 [代码优化]AI: 写作添加注释,增加可读性,调整代码,方便后续调整,添加预览header,调整生成内容区域布局,将右边铺满

Merge pull request !477 from hhhero/dev
pull/478/head
芋道源码 2024-07-10 01:34:43 +00:00 committed by Gitee
commit e53786e8bd
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
7 changed files with 156 additions and 136 deletions

View File

@ -3,37 +3,14 @@ import { fetchEventSource } from '@microsoft/fetch-event-source'
import { getAccessToken } from '@/utils/auth'
import { config } from '@/config/axios/config'
// TODO @hhhero可以改成 WriteVO 哈,主要是保持一致
export interface WriteParams {
// TODO @hhhero注释。每个属性的后面哈。会更简洁一点
/**
* 1: 2:
*/
type: 1 | 2
/**
* 1 2
*/
prompt: string
/**
*
*/
originalContent: string
/**
*
*/
length: number
/**
*
*/
format: number
/**
*
*/
tone: number
/**
*
*/
language: number
export interface WriteVO {
type: 1 | 2 // 1:撰写 2:回复
prompt: string // 写作内容提示 1。撰写 2回复
originalContent: string // 原文
length: number // 长度
format: number // 格式
tone: number // 语气
language: number // 语言
}
export const writeStream = ({
@ -43,7 +20,7 @@ export const writeStream = ({
onError,
ctrl
}: {
data: WriteParams
data: WriteVO
onMessage?: (res: any) => void
onError?: (...args: any[]) => void
onClose?: (...args: any[]) => void

View File

@ -41,6 +41,14 @@ export const AiMusicStatusEnum = {
FAIL: 30 // 已失败
}
/**
* AI
*/
export enum AiWriteTypeEnum {
WRITING = 1, // 撰写
REPLY // 回复
}
// ========== 【图片 UI】相关的枚举 ==========
export const ImageHotWords = [
'中国旗袍',

View File

@ -11,3 +11,16 @@
export const hasChinese = (str: string) => {
return /[\u4e00-\u9fa5]/.test(str)
}
/** 写作点击示例时的数据 **/
export const WriteExampleDataJson = {
write: {
prompt: 'vue',
data: 'Vue.js 是一种用于构建用户界面的渐进式 JavaScript 框架。它的核心库只关注视图层,易于上手,同时也便于与其他库或已有项目整合。\n\nVue.js 的特点包括:\n- 响应式的数据绑定Vue.js 会自动将数据与 DOM 同步,使得状态管理变得更加简单。\n- 组件化Vue.js 允许开发者通过小型、独立和通常可复用的组件构建大型应用。\n- 虚拟 DOMVue.js 使用虚拟 DOM 实现快速渲染,提高了性能。\n\n在 Vue.js 中,一个典型的应用结构可能包括:\n1. 根实例:每个 Vue 应用都需要一个根实例作为入口点。\n2. 组件系统:可以创建自定义的可复用组件。\n3. 指令:特殊的带有前缀 v- 的属性,为 DOM 元素提供特殊的行为。\n4. 插值:用于文本内容,将数据动态地插入到 HTML。\n5. 计算属性和侦听器:用于处理数据的复杂逻辑和响应数据变化。\n6. 条件渲染:根据条件决定元素的渲染。\n7. 列表渲染:用于显示列表数据。\n8. 事件处理:响应用户交互。\n9. 表单输入绑定:处理表单输入和验证。\n10. 组件生命周期钩子:在组件的不同阶段执行特定的函数。\n\nVue.js 还提供了官方的路由器 Vue Router 和状态管理库 Vuex以支持构建复杂的单页应用SPA。\n\n在开发过程中开发者通常会使用 Vue CLI这是一个强大的命令行工具用于快速生成 Vue 项目脚手架,集成了诸如 Babel、Webpack 等现代前端工具,以及热重载、代码检测等开发体验优化功能。\n\nVue.js 的生态系统还包括大量的第三方库和插件,如 VuetifyUI 组件库、Vue Test Utils测试工具这些都极大地丰富了 Vue.js 的开发生态。\n\n总的来说Vue.js 是一个灵活、高效的前端框架,适合从小型项目到大型企业级应用的开发。它的易用性、灵活性和强大的社区支持使其成为许多开发者的首选框架之一。'
},
reply: {
originalContent: '领导,我想请假',
prompt: '不批',
data: '您的请假申请已收悉,经核实和考虑,暂时无法批准您的请假申请。\n\n如有特殊情况或紧急事务请及时与我联系。\n\n祝工作顺利。\n\n谢谢。'
}
}

View File

@ -24,7 +24,7 @@
</h3>
</DefineLabel>
<!-- TODO 小屏幕的时候是定位在左边的大屏是分开的 -->
<!-- TODO @hhhero 小屏幕的时候是定位在左边的大屏是分开的 -->
<div class="relative" v-bind="$attrs">
<!-- tab -->
<div
@ -32,7 +32,7 @@
>
<div
class="flex items-center relative after:content-[''] after:block after:bg-white after:h-[30px] after:w-1/2 after:absolute after:top-0 after:left-0 after:transition-transform after:rounded-full"
:class="selectedTab === 2 && 'after:transform after:translate-x-[100%]'"
:class="selectedTab === AiWriteTypeEnum.REPLY && 'after:transform after:translate-x-[100%]'"
>
<ReuseTab
v-for="tab in tabs"
@ -53,7 +53,7 @@
type="textarea"
:rows="5"
:maxlength="500"
v-model="writeForm.prompt"
v-model="formData.prompt"
placeholder="请输入写作内容"
showWordLimit
/>
@ -65,7 +65,7 @@
type="textarea"
:rows="5"
:maxlength="500"
v-model="writeForm.originalContent"
v-model="formData.originalContent"
placeholder="请输入原文"
showWordLimit
/>
@ -75,23 +75,23 @@
type="textarea"
:rows="5"
:maxlength="500"
v-model="writeForm.prompt"
v-model="formData.prompt"
placeholder="请输入回复内容"
showWordLimit
/>
</template>
<ReuseLabel label="长度" />
<Tag v-model="writeForm.length" :tags="writeTags.lenTags" />
<Tag v-model="formData.length" :tags="getIntDictOptions('ai_write_length')" />
<ReuseLabel label="格式" />
<Tag v-model="writeForm.format" :tags="writeTags.formatTags" />
<Tag v-model="formData.format" :tags="getIntDictOptions('ai_write_format')" />
<ReuseLabel label="语气" />
<Tag v-model="writeForm.tone" :tags="writeTags.toneTags" />
<Tag v-model="formData.tone" :tags="getIntDictOptions('ai_write_tone')" />
<ReuseLabel label="语言" />
<Tag v-model="writeForm.language" :tags="writeTags.langTags" />
<Tag v-model="formData.language" :tags="getIntDictOptions('ai_write_language')" />
<div class="flex items-center justify-center mt-3">
<el-button :disabled="isWriting">重置</el-button>
<el-button :disabled="isWriting" @click="reset"></el-button>
<el-button :loading="isWriting" @click="submit" color="#846af7">生成</el-button>
</div>
</div>
@ -103,12 +103,13 @@
import { createReusableTemplate } from '@vueuse/core'
import { ref } from 'vue'
import Tag from './Tag.vue'
import { WriteParams } from '@/api/ai/writer'
import { WriteVO } from '@/api/ai/writer'
import { omit } from 'lodash-es'
import { getIntDictOptions } from '@/utils/dict'
import dataJson from '../data.json'
import { WriteExampleDataJson } from '@/views/ai/utils/utils'
import { AiWriteTypeEnum } from "@/views/ai/utils/constants";
type TabType = WriteParams['type']
type TabType = WriteVO['type']
const message = useMessage()
@ -117,25 +118,31 @@ defineProps<{
}>()
const emits = defineEmits<{
(e: 'submit', params: Partial<WriteParams>)
(e: 'submit', params: Partial<WriteVO>)
(e: 'example', param: 'write' | 'reply')
(e: 'reset')
}>()
/** 点击示例的时候,将定义好的文章作为示例展示出来 **/
const example = (type: 'write' | 'reply') => {
writeForm.value = {
formData.value = {
...initData,
...omit(dataJson[type], ['data'])
...omit(WriteExampleDataJson[type], ['data'])
}
emits('example', type)
}
const selectedTab = ref<TabType>(1)
/** 重置,将表单值作为初选值 **/
const reset = () => {
formData.value = {...initData}
emits('reset')
}
const selectedTab = ref<TabType>(AiWriteTypeEnum.WRITING)
const tabs: {
text: string
value: TabType
}[] = [
{ text: '撰写', value: 1 }, // TODO @hhhero12 constants 便
{ text: '回复', value: 2 }
{ text: '撰写', value: AiWriteTypeEnum.WRITING },
{ text: '回复', value: AiWriteTypeEnum.REPLY }
]
const [DefineTab, ReuseTab] = createReusableTemplate<{
active?: boolean
@ -143,7 +150,21 @@ const [DefineTab, ReuseTab] = createReusableTemplate<{
itemClick: () => void
}>()
const initData: WriteParams = {
/**
* 可以在template里边定义可复用的组件DefineLabelReuseLabel是采用的解构赋值都是Vue组件
* 直接通过组件的形式使用<DefineLabel v-slot="{ label, hint, hintClick }"></DefineLabel><ReuseLabel />来使用定义的组件
* DefineLabel里边的v-slot="{ label, hint, hintClick }“相当于是解构了组件的prop需要注意的是boolean类型需要显式的赋值比如 <ReuseLabel :flag="true" />
* 事件也得以prop形式传入不能是@event的形式比如下面的hintClick需要<ReuseLabel :hintClick="() => { doSomething }"/>
* @see https://vueuse.org/createReusableTemplate
*/
const [DefineLabel, ReuseLabel] = createReusableTemplate<{
label: string
class?: string
hint?: string
hintClick?: () => void
}>()
const initData: WriteVO = {
type: 1,
prompt: '',
originalContent: '',
@ -152,49 +173,26 @@ const initData: WriteParams = {
length: 1,
format: 1
}
// TODO @hhhero formData initData
const writeForm = ref<WriteParams>({ ...initData })
// TODO @hhhero vue template ts
const writeTags = {
// TODO @hhhero
// TODO @hhhero length
lenTags: getIntDictOptions('ai_write_length'),
//
formatTags: getIntDictOptions('ai_write_format'),
//
toneTags: getIntDictOptions('ai_write_tone'),
//
langTags: getIntDictOptions('ai_write_language')
//
}
// TODO @hhhero
const [DefineLabel, ReuseLabel] = createReusableTemplate<{
label: string
class?: string
hint?: string
hintClick?: () => void
}>()
const formData = ref<WriteVO>({ ...initData })
/** 切换tab **/
const switchTab = (value: TabType) => {
selectedTab.value = value
writeForm.value = { ...initData }
formData.value = { ...initData }
}
const submit = () => {
if (selectedTab.value === 2 && !writeForm.value.originalContent) {
if (selectedTab.value === 2 && !formData.value.originalContent) {
message.warning('请输入原文')
return
}
if (!writeForm.value.prompt) {
if (!formData.value.prompt) {
message.warning(`请输入${selectedTab.value === 1 ? '写作' : '回复'}内容`)
return
}
emits('submit', {
...(selectedTab.value === 1 ? omit(writeForm.value, ['originalContent']) : writeForm.value),
/** 撰写的时候没有 originalContent 字段**/
...(selectedTab.value === 1 ? omit(formData.value, ['originalContent']) : formData.value),
/** 使用选中tab值覆盖当前的type类型 **/
type: selectedTab.value
})
}

View File

@ -1,29 +1,41 @@
<template>
<div class="h-full box-border py-6 px-7">
<div class="w-full h-full relative bg-white box-border p-3 sm:p-16 pr-0">
<div class="h-full box-border flex flex-col px-7">
<h3 class="m-0 h-14 -mx-7 px-7 shrink-0 flex items-center justify-between bg-[#ecedef]">
<span>预览</span>
<!-- 展示在右上角 -->
<el-button
color="#846af7"
v-show="showCopy"
@click="copyMsg"
class="absolute top-2 right-2 copy-btn"
:data-clipboard-target="inputId"
@click="copyContent"
size="small"
>
<template #icon>
<Icon icon="ph:copy-bold" />
</template>
复制
</el-button>
<!-- 展示在下面中间的位置 -->
<el-button
v-show="isWriting"
class="absolute bottom-2 left-1/2 -translate-x-1/2"
@click="emits('stopStream')"
>
终止生成
</el-button>
<div ref="contentRef" class="w-full h-full pr-3 sm:pr-16 overflow-y-auto">
</h3>
<div ref="contentRef" class="hide-scroll-bar flex-grow box-border overflow-y-auto ">
<div class="w-full min-h-full relative flex-grow bg-white box-border p-3 sm:p-7">
<!-- 终止生成内容的按钮 -->
<el-button
v-show="isWriting"
class="absolute bottom-2 sm:bottom-5 left-1/2 -translate-x-1/2 z-36"
@click="emits('stopStream')"
size="small"
>
<template #icon>
<Icon icon="material-symbols:stop" />
</template>
终止生成
</el-button>
<el-input
id="inputId"
type="textarea"
v-model="compMsg"
v-model="compContent"
autosize
:input-style="{ boxShadow: 'none' }"
resize="none"
@ -41,25 +53,27 @@ const message = useMessage()
const { copied, copy } = useClipboard()
const props = defineProps({
msg: {
content: {
//
type: String,
default: ''
},
isWriting: {
//
type: Boolean,
default: false
}
})
const emits = defineEmits(['update:msg', 'stopStream'])
const emits = defineEmits(['update:content', 'stopStream'])
// TODO @hhhero Msg Content Message
const compMsg = computed({
//
const compContent = computed({
get() {
return props.msg
return props.content
},
set(val) {
emits('update:msg', val)
emits('update:content', val)
}
})
@ -72,15 +86,27 @@ defineExpose({
})
/** 点击复制的时候复制内容 */
const showCopy = computed(() => props.msg && !props.isWriting) //
const inputId = computed(() => getCurrentInstance()?.uid) // TODO @hhhero
const copyMsg = () => {
copy(props.msg)
const showCopy = computed(() => props.content && !props.isWriting) //
const copyContent = () => {
copy(props.content)
}
// copied.valuetrue
watch(copied, (val) => {
if (val) {
message.success('复制成功')
}
})
</script>
<style lang="scss" scoped>
.hide-scroll-bar {
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
width: 0;
height: 0;
}
}
</style>

View File

@ -1,11 +0,0 @@
{
"write": {
"prompt": "vue",
"data": "Vue.js 是一种用于构建用户界面的渐进式 JavaScript 框架。它的核心库只关注视图层,易于上手,同时也便于与其他库或已有项目整合。\n\nVue.js 的特点包括:\n- 响应式的数据绑定Vue.js 会自动将数据与 DOM 同步,使得状态管理变得更加简单。\n- 组件化Vue.js 允许开发者通过小型、独立和通常可复用的组件构建大型应用。\n- 虚拟 DOMVue.js 使用虚拟 DOM 实现快速渲染,提高了性能。\n\n在 Vue.js 中,一个典型的应用结构可能包括:\n1. 根实例:每个 Vue 应用都需要一个根实例作为入口点。\n2. 组件系统:可以创建自定义的可复用组件。\n3. 指令:特殊的带有前缀 v- 的属性,为 DOM 元素提供特殊的行为。\n4. 插值:用于文本内容,将数据动态地插入到 HTML。\n5. 计算属性和侦听器:用于处理数据的复杂逻辑和响应数据变化。\n6. 条件渲染:根据条件决定元素的渲染。\n7. 列表渲染:用于显示列表数据。\n8. 事件处理:响应用户交互。\n9. 表单输入绑定:处理表单输入和验证。\n10. 组件生命周期钩子:在组件的不同阶段执行特定的函数。\n\nVue.js 还提供了官方的路由器 Vue Router 和状态管理库 Vuex以支持构建复杂的单页应用SPA。\n\n在开发过程中开发者通常会使用 Vue CLI这是一个强大的命令行工具用于快速生成 Vue 项目脚手架,集成了诸如 Babel、Webpack 等现代前端工具,以及热重载、代码检测等开发体验优化功能。\n\nVue.js 的生态系统还包括大量的第三方库和插件,如 VuetifyUI 组件库、Vue Test Utils测试工具这些都极大地丰富了 Vue.js 的开发生态。\n\n总的来说Vue.js 是一个灵活、高效的前端框架,适合从小型项目到大型企业级应用的开发。它的易用性、灵活性和强大的社区支持使其成为许多开发者的首选框架之一。"
},
"reply": {
"originalContent": "领导,我想请假",
"prompt": "不批",
"data": "您的请假申请已收悉,经核实和考虑,暂时无法批准您的请假申请。\n\n如有特殊情况或紧急事务请及时与我联系。\n\n祝工作顺利。\n\n谢谢。"
}
}

View File

@ -1,26 +1,27 @@
<!-- TODO @hhhero挪到 write/index/index.vue 因为后续会有 write/manager/index.vue 管理内容 -->
<template>
<div class="h-[calc(100vh-var(--top-tool-height)-var(--app-footer-height)-40px)] -m-5 flex">
<Left :is-writing="isWriting" class="h-full" @submit="submit" @example="handleExampleClick" />
<!-- TODO @hhhero顶部应该有个预览的 header -->
<!-- TODO @hhhero整个 Right 组件的框没铺满的感觉 -->
<Left
:is-writing="isWriting"
class="h-full"
@submit="submit"
@reset="reset"
@example="handleExampleClick"
/>
<Right
:is-writing="isWriting"
@stop-stream="stopStream"
ref="rightRef"
class="flex-grow"
v-model:msg="writeResult"
v-model:content="writeResult"
/>
</div>
</template>
<script setup lang="ts">
import Left from './components/Left.vue'
import Right from './components/Right.vue'
// TODO @hhhero WriteApi
import { writeStream } from '@/api/ai/writer'
// TODO @hhherodataJson ai/utils/utils.ts
import dataJson from './data.json'
import Left from '../components/Left.vue'
import Right from '../components/Right.vue'
import * as WriteApi from '@/api/ai/writer'
import { WriteExampleDataJson } from '@/views/ai/utils/utils'
const message = useMessage()
@ -36,11 +37,11 @@ const stopStream = () => {
/** 执行写作 */
const rightRef = ref<InstanceType<typeof Right>>()
const submit = async (data) => {
const submit = (data) => {
abortController.value = new AbortController()
writeResult.value = ''
isWriting.value = true
await writeStream({
WriteApi.writeStream({
data,
onMessage: async (res) => {
const { code, data, msg } = JSON.parse(res.data)
@ -56,12 +57,20 @@ const submit = async (data) => {
},
ctrl: abortController.value,
onClose: stopStream,
onError: stopStream // TODO @hhhero: error
onError: (...err) => {
console.error('写作异常', ...err)
stopStream()
}
})
}
/** 点击示例触发 */
const handleExampleClick = (type: keyof typeof dataJson) => {
writeResult.value = dataJson[type].data
const handleExampleClick = (type: keyof typeof WriteExampleDataJson) => {
writeResult.value = WriteExampleDataJson[type].data
}
/** 点击重置的时候清空写作的结果**/
const reset = () => {
writeResult.value = ''
}
</script>