refactor: 代码生成预览优化

pull/75/head
puhui999 2025-04-16 11:23:19 +08:00
parent 3cc9adc5b3
commit 85a8fd5834
1 changed files with 96 additions and 108 deletions

View File

@ -1,13 +1,14 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { InfraCodegenApi } from '#/api/infra/codegen'; import type { InfraCodegenApi } from '#/api/infra/codegen';
import { computed, h, ref } from 'vue';
import { useVbenModal } from '@vben/common-ui'; import { useVbenModal } from '@vben/common-ui';
import { Copy } from '@vben/icons'; import { Copy } from '@vben/icons';
import { Button, DirectoryTree, message, Tabs } from 'ant-design-vue';
import { previewCodegen } from '#/api/infra/codegen';
import { h, ref } from 'vue';
import { useClipboard } from '@vueuse/core'; import { useClipboard } from '@vueuse/core';
import { Button, message, Tree } from 'ant-design-vue';
import hljs from 'highlight.js/lib/core'; import hljs from 'highlight.js/lib/core';
import java from 'highlight.js/lib/languages/java'; import java from 'highlight.js/lib/languages/java';
import javascript from 'highlight.js/lib/languages/javascript'; import javascript from 'highlight.js/lib/languages/javascript';
@ -15,8 +16,6 @@ import sql from 'highlight.js/lib/languages/sql';
import typescript from 'highlight.js/lib/languages/typescript'; import typescript from 'highlight.js/lib/languages/typescript';
import xml from 'highlight.js/lib/languages/xml'; import xml from 'highlight.js/lib/languages/xml';
import { previewCodegen } from '#/api/infra/codegen';
/** 注册代码高亮语言 */ /** 注册代码高亮语言 */
hljs.registerLanguage('java', java); hljs.registerLanguage('java', java);
hljs.registerLanguage('xml', xml); hljs.registerLanguage('xml', xml);
@ -40,19 +39,36 @@ const loading = ref(false);
const fileTree = ref<FileNode[]>([]); const fileTree = ref<FileNode[]>([]);
const previewFiles = ref<InfraCodegenApi.CodegenPreview[]>([]); const previewFiles = ref<InfraCodegenApi.CodegenPreview[]>([]);
const activeKey = ref<string>(''); const activeKey = ref<string>('');
const highlightedCode = ref<string>('');
/** 当前活动文件的语言 */ /** 代码地图 */
const activeLanguage = computed(() => { const codeMap = new Map<string, string>();
return activeKey.value.split('.').pop() || ''; const setCodeMode = (key: string, lang: string, code: string) => {
}); // Java
const trimmedCode = code.trimStart();
try {
const highlightedCode = hljs.highlight(trimmedCode, {
language: lang,
}).value;
codeMap.set(key, highlightedCode);
} catch {
codeMap.set(key, trimmedCode);
}
};
const removeCodeMapKey = (targetKey: any) => {
//
if (codeMap.size === 1) {
return;
}
if (codeMap.has(targetKey)) {
codeMap.delete(targetKey);
}
};
/** 复制代码 */ /** 复制代码 */
const copyCode = async () => { const copyCode = async () => {
const { copy } = useClipboard(); const { copy } = useClipboard();
const file = previewFiles.value.find( const file = previewFiles.value.find((item) => item.filePath === activeKey.value);
(item) => item.filePath === activeKey.value,
);
if (file) { if (file) {
await copy(file.code); await copy(file.code);
message.success('复制成功'); message.success('复制成功');
@ -61,27 +77,17 @@ const copyCode = async () => {
/** 文件节点点击事件 */ /** 文件节点点击事件 */
const handleNodeClick = (_: any[], e: any) => { const handleNodeClick = (_: any[], e: any) => {
// TODO @puhui999if return if (!e.node.isLeaf) return;
if (e.node.isLeaf) {
activeKey.value = e.node.key; activeKey.value = e.node.key;
const file = previewFiles.value.find( const file = previewFiles.value.find((item) => item.filePath === activeKey.value);
(item) => item.filePath === activeKey.value, if (!file) return;
);
if (file) { const lang = file.filePath.split('.').pop() || '';
const lang = file.filePath.split('.').pop() || ''; setCodeMode(activeKey.value, lang, file.code);
try {
highlightedCode.value = hljs.highlight(file.code, {
language: lang,
}).value;
} catch {
highlightedCode.value = file.code;
}
}
}
}; };
/** 处理文件树 */ /** 处理文件树 */
// TODO @puhui999 cursor = =
const handleFiles = (data: InfraCodegenApi.CodegenPreview[]): FileNode[] => { const handleFiles = (data: InfraCodegenApi.CodegenPreview[]): FileNode[] => {
const exists: Record<string, boolean> = {}; const exists: Record<string, boolean> = {};
const files: FileNode[] = []; const files: FileNode[] = [];
@ -89,58 +95,57 @@ const handleFiles = (data: InfraCodegenApi.CodegenPreview[]): FileNode[] => {
// //
for (const item of data) { for (const item of data) {
const paths = item.filePath.split('/'); const paths = item.filePath.split('/');
let cursor = 0;
let fullPath = ''; let fullPath = '';
// Java while (cursor < paths.length) {
const newPaths = []; const path = paths[cursor] || '';
let i = 0; const oldFullPath = fullPath;
while (i < paths.length) {
const path = paths[i];
if (path === 'java' && i + 1 < paths.length) { // Java
newPaths.push(path); if (path === 'java' && cursor + 1 < paths.length) {
fullPath = fullPath ? `${fullPath}/${path}` : path;
cursor++;
// //
let packagePath = ''; let packagePath = '';
i++; while (cursor < paths.length) {
while (i < paths.length) { const nextPath = paths[cursor] || '';
const nextPath = paths[i] || ''; if (['controller', 'convert', 'dal', 'dataobject', 'enums', 'mysql', 'service', 'vo'].includes(nextPath)) {
if (['controller','convert','dal','dataobject','enums','mysql','service','vo'].includes(nextPath)) {
break; break;
} }
packagePath = packagePath ? `${packagePath}.${nextPath}` : nextPath; packagePath = packagePath ? `${packagePath}.${nextPath}` : nextPath;
i++; cursor++;
} }
if (packagePath) { if (packagePath) {
newPaths.push(packagePath); const newFullPath = `${fullPath}/${packagePath}`;
if (!exists[newFullPath]) {
exists[newFullPath] = true;
files.push({
key: newFullPath,
title: packagePath,
parentKey: oldFullPath || '/',
isLeaf: cursor === paths.length,
});
}
fullPath = newFullPath;
} }
continue; continue;
} }
newPaths.push(path); //
i++; fullPath = fullPath ? `${fullPath}/${path}` : path;
} if (!exists[fullPath]) {
exists[fullPath] = true;
// files.push({
for (let i = 0; i < newPaths.length; i++) { key: fullPath,
const oldFullPath = fullPath; title: path,
fullPath = parentKey: oldFullPath || '/',
fullPath.length === 0 isLeaf: cursor === paths.length - 1,
? newPaths[i] || '' });
: `${fullPath.replaceAll('.', '/')}/${newPaths[i]}`;
if (exists[fullPath]) {
continue;
} }
cursor++;
exists[fullPath] = true;
files.push({
key: fullPath,
title: newPaths[i] || '',
parentKey: oldFullPath || '/',
isLeaf: i === newPaths.length - 1,
});
} }
} }
@ -163,11 +168,6 @@ const [Modal, modalApi] = useVbenModal({
class: 'w-3/5', class: 'w-3/5',
async onOpenChange(isOpen: boolean) { async onOpenChange(isOpen: boolean) {
if (!isOpen) { if (!isOpen) {
// TODO @puhui999
previewFiles.value = [];
fileTree.value = [];
activeKey.value = '';
highlightedCode.value = '';
return; return;
} }
@ -186,13 +186,7 @@ const [Modal, modalApi] = useVbenModal({
activeKey.value = data[0]?.filePath || ''; activeKey.value = data[0]?.filePath || '';
const lang = activeKey.value.split('.').pop() || ''; const lang = activeKey.value.split('.').pop() || '';
const code = data[0]?.code || ''; const code = data[0]?.code || '';
try { setCodeMode(activeKey.value, lang, code);
highlightedCode.value = hljs.highlight(code, {
language: lang,
}).value;
} catch {
highlightedCode.value = code;
}
} }
} finally { } finally {
loading.value = false; loading.value = false;
@ -206,39 +200,24 @@ const [Modal, modalApi] = useVbenModal({
<div class="flex h-full" v-loading="loading"> <div class="flex h-full" v-loading="loading">
<!-- 文件树 --> <!-- 文件树 -->
<div class="w-1/3 border-r border-gray-200 pr-4 dark:border-gray-700"> <div class="w-1/3 border-r border-gray-200 pr-4 dark:border-gray-700">
<!-- TODO @puhui999树默认展示 --> <DirectoryTree v-model:active-key="activeKey" @select="handleNodeClick" :tree-data="fileTree" />
<!-- TODO @puhui999默认节点点击可以展开 -->
<Tree
:selected-keys="[activeKey]"
:tree-data="fileTree"
@select="handleNodeClick"
/>
</div> </div>
<!-- 代码预览 --> <!-- 代码预览 -->
<!-- TODO @puhui999可以顶部有个 tab -->
<!-- TODO @puhui999貌似 java 的缩进不太对首行空了很长 -->
<div class="w-2/3 pl-4"> <div class="w-2/3 pl-4">
<div class="mb-2 flex justify-between"> <Tabs v-model:active-key="activeKey" hide-add type="editable-card" @edit="removeCodeMapKey">
<div class="text-lg font-medium dark:text-gray-200"> <Tabs.TabPane v-for="key in codeMap.keys()" :key="key" :tab="key.split('/').pop()">
{{ activeKey.split('/').pop() }} <div class="h-[calc(100%-40px)] overflow-auto">
<!-- TODO @puhui999貌似不用 activeLanguage --> <pre class="overflow-auto rounded-md bg-gray-50 p-4 text-gray-800 dark:bg-gray-800 dark:text-gray-200">
<span class="ml-2 text-xs text-gray-500 dark:text-gray-400"> <!-- eslint-disable-next-line vue/no-v-html -->
({{ activeLanguage }}) <code v-html="codeMap.get(activeKey)" class="code-highlight"></code>
</span> </pre>
</div> </div>
<!-- TODO @芋艿貌似别的模块也可以通过 :icon="h(Copy)" --> </Tabs.TabPane>
<Button type="primary" ghost @click="copyCode" :icon="h(Copy)"> <template #rightExtra>
复制代码 <!-- TODO @芋艿貌似别的模块也可以通过 :icon="h(Copy)" -->
</Button> <Button type="primary" ghost @click="copyCode" :icon="h(Copy)"> 复制代码 </Button>
</div> </template>
<div class="h-[calc(100%-40px)] overflow-auto"> </Tabs>
<pre
class="overflow-auto rounded-md bg-gray-50 p-4 text-gray-800 dark:bg-gray-800 dark:text-gray-200"
>
<!-- eslint-disable-next-line vue/no-v-html -->
<code v-html="highlightedCode" class="code-highlight"></code>
</pre>
</div>
</div> </div>
</div> </div>
</Modal> </Modal>
@ -249,9 +228,18 @@ const [Modal, modalApi] = useVbenModal({
/* 代码高亮样式 - 支持暗黑模式 */ /* 代码高亮样式 - 支持暗黑模式 */
:deep(.code-highlight) { :deep(.code-highlight) {
display: block;
white-space: pre;
background: transparent; background: transparent;
} }
/* 代码块内容无缩进 */
:deep(pre) {
padding: 1rem;
margin: 0;
white-space: pre;
}
/* 关键字 */ /* 关键字 */
:deep(.hljs-keyword) { :deep(.hljs-keyword) {
@apply text-purple-600 dark:text-purple-400; @apply text-purple-600 dark:text-purple-400;