【代码评审】AI:写作相关的建议

pull/474/MERGE
YunaiV 2024-07-08 12:39:49 +08:00
parent 96a499a815
commit 2b0789112f
6 changed files with 201 additions and 189 deletions

View File

@ -3,7 +3,9 @@ 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:
*/
@ -33,6 +35,7 @@ export interface WriteParams {
*/
language: number
}
export const writeStream = ({
data,
onClose,
@ -46,7 +49,6 @@ export const writeStream = ({
onClose?: (...args: any[]) => void
ctrl: AbortController
}) => {
// return request.post({ url: '/ai/write/generate-stream', data })
const token = getAccessToken()
return fetchEventSource(`${config.base_url}/ai/write/generate-stream`, {
method: 'post',

View File

@ -226,7 +226,7 @@ const conversationTimeGroup = async (list: ChatConversationVO[]) => {
const threeDays = 3 * oneDay
const sevenDays = 7 * oneDay
const thirtyDays = 30 * oneDay
for (const conversation: ChatConversationVO of list) {
for (const conversation of list) {
//
if (conversation.pinned) {
groupMap['置顶'].push(conversation)
@ -247,7 +247,6 @@ const conversationTimeGroup = async (list: ChatConversationVO[]) => {
groupMap['三十天前'].push(conversation)
}
}
console.log('----groupMap', groupMap)
return groupMap
}

View File

@ -1,5 +1,5 @@
<template>
<!-- 定义tab组件 -->
<!-- 定义 tab 组件撰写/回复等 -->
<DefineTab v-slot="{ active, text, itemClick }">
<span
class="inline-block w-1/2 rounded-full cursor-pointer text-center leading-[30px] relative z-1 text-[5C6370] hover:text-black"
@ -9,7 +9,7 @@
{{ text }}
</span>
</DefineTab>
<!-- 定义label组件 -->
<!-- 定义 label 组件长度/格式/语气/语言等 -->
<DefineLabel v-slot="{ label, hint, hintClick }">
<h3 class="mt-5 mb-3 flex items-center justify-between text-[14px]">
<span>{{ label }}</span>
@ -23,6 +23,7 @@
</span>
</h3>
</DefineLabel>
<!-- TODO 小屏幕的时候是定位在左边的大屏是分开的 -->
<div class="relative" v-bind="$attrs">
<!-- tab -->
@ -133,7 +134,7 @@
text: string
value: TabType
}[] = [
{ text: '撰写', value: 1 },
{ text: '撰写', value: 1 }, // TODO @hhhero12 constants 便
{ text: '回复', value: 2 }
]
const [DefineTab, ReuseTab] = createReusableTemplate<{
@ -151,10 +152,13 @@
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'),
//
@ -167,6 +171,7 @@
//
}
// TODO @hhhero
const [DefineLabel, ReuseLabel] = createReusableTemplate<{
label: string
class?: string
@ -183,7 +188,8 @@
if (selectedTab.value === 2 && !writeForm.value.originalContent) {
message.warning('请输入原文')
return
} else if (!writeForm.value.prompt) {
}
if (!writeForm.value.prompt) {
message.warning(`请输入${selectedTab.value === 1 ? '写作' : '回复'}内容`)
return
}

View File

@ -36,7 +36,10 @@
<script setup lang="ts">
import { useClipboard } from '@vueuse/core'
const message = useMessage()
const { copied, copy } = useClipboard()
const props = defineProps({
msg: {
type: String,
@ -50,8 +53,7 @@
const emits = defineEmits(['update:msg', 'stopStream'])
const { copied, copy } = useClipboard()
// TODO @hhhero Msg Content Message
const compMsg = computed({
get() {
return props.msg
@ -61,10 +63,7 @@
}
})
const showCopy = computed(() => props.msg && !props.isWriting)
const inputId = computed(() => getCurrentInstance()?.uid)
/** 滚动 */
const contentRef = ref<HTMLDivElement>()
defineExpose({
scrollToBottom() {
@ -72,13 +71,14 @@
}
})
// msg
/** 点击复制的时候复制内容 */
const showCopy = computed(() => props.msg && !props.isWriting) //
const inputId = computed(() => getCurrentInstance()?.uid) // TODO @hhhero
const copyMsg = () => {
copy(props.msg)
}
watch(copied, (val) => {
console.log({ copied: val })
if (val) {
message.success('复制成功')
}

View File

@ -28,5 +28,4 @@
(e: 'update:modelValue', value: string): void
}>()
</script>
<style scoped></style>

View File

@ -1,12 +1,15 @@
<!-- 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="example" />
<Left :is-writing="isWriting" class="h-full" @submit="submit" @example="handleExampleClick" />
<!-- TODO @hhhero顶部应该有个预览的 header -->
<!-- TODO @hhhero整个 Right 组件的框没铺满的感觉 -->
<Right
:is-writing="isWriting"
@stop-stream="stopStream"
ref="rightRef"
class="flex-grow"
v-model:msg="msgResult"
v-model:msg="writeResult"
/>
</div>
</template>
@ -14,32 +17,30 @@
<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'
const message = useMessage()
const msgResult = ref('')
const isWriting = ref(false)
const abortController = ref<AbortController>()
const writeResult = ref('') //
const isWriting = ref(false) //
const abortController = ref<AbortController>() // // 写作进行中 abort 控制器(控制 stream 写作)
/** 停止 stream 生成 */
const stopStream = () => {
abortController.value?.abort()
isWriting.value = false
}
/** 执行写作 */
const rightRef = ref<InstanceType<typeof Right>>()
//
const example = (type: keyof typeof dataJson) => {
msgResult.value = dataJson[type].data
}
const submit = async (data) => {
abortController.value = new AbortController()
msgResult.value = ''
writeResult.value = ''
isWriting.value = true
writeStream({
await writeStream({
data,
onMessage: async (res) => {
const { code, data, msg } = JSON.parse(res.data)
@ -48,14 +49,19 @@
stopStream()
return
}
msgResult.value = msgResult.value + data
writeResult.value = writeResult.value + data
nextTick(() => {
rightRef.value?.scrollToBottom()
})
},
ctrl: abortController.value,
onClose: stopStream,
onError: stopStream
onError: stopStream // TODO @hhhero: error
})
}
/** 点击示例触发 */
const handleExampleClick = (type: keyof typeof dataJson) => {
writeResult.value = dataJson[type].data
}
</script>