184 lines
5.5 KiB
Vue
184 lines
5.5 KiB
Vue
<!-- eslint-disable no-useless-escape -->
|
||
<script setup lang="ts">
|
||
import { onMounted, ref, unref } from 'vue';
|
||
|
||
import { Page, useVbenModal } from '@vben/common-ui';
|
||
import { isString } from '@vben/utils';
|
||
|
||
import FcDesigner from '@form-create/designer';
|
||
import formCreate from '@form-create/element-ui';
|
||
import { useClipboard } from '@vueuse/core';
|
||
import { ElButton, ElMessage } from 'element-plus';
|
||
import hljs from 'highlight.js';
|
||
import xml from 'highlight.js/lib/languages/java';
|
||
import json from 'highlight.js/lib/languages/json';
|
||
|
||
import { useFormCreateDesigner } from '#/components/form-create';
|
||
|
||
import 'highlight.js/styles/github.css';
|
||
|
||
defineOptions({ name: 'InfraBuild' });
|
||
|
||
const [Modal, modalApi] = useVbenModal();
|
||
|
||
const designer = ref(); // 表单设计器
|
||
|
||
// 表单设计器配置
|
||
// TODO @puhui999:表单选择器,版本号从 package.json 拿到全局哈
|
||
const designerConfig = ref({
|
||
switchType: [], // 是否可以切换组件类型,或者可以相互切换的字段
|
||
autoActive: true, // 是否自动选中拖入的组件
|
||
useTemplate: false, // 是否生成vue2语法的模板组件
|
||
formOptions: {
|
||
form: {
|
||
labelWidth: '100px', // 设置默认的 label 宽度为 100px
|
||
},
|
||
}, // 定义表单配置默认值
|
||
fieldReadonly: false, // 配置field是否可以编辑
|
||
hiddenDragMenu: false, // 隐藏拖拽操作按钮
|
||
hiddenDragBtn: false, // 隐藏拖拽按钮
|
||
hiddenMenu: [], // 隐藏部分菜单
|
||
hiddenItem: [], // 隐藏部分组件
|
||
hiddenItemConfig: {}, // 隐藏组件的部分配置项
|
||
disabledItemConfig: {}, // 禁用组件的部分配置项
|
||
showSaveBtn: false, // 是否显示保存按钮
|
||
showConfig: true, // 是否显示右侧的配置界面
|
||
showBaseForm: true, // 是否显示组件的基础配置表单
|
||
showControl: true, // 是否显示组件联动
|
||
showPropsForm: true, // 是否显示组件的属性配置表单
|
||
showEventForm: true, // 是否显示组件的事件配置表单
|
||
showValidateForm: true, // 是否显示组件的验证配置表单
|
||
showFormConfig: true, // 是否显示表单配置
|
||
showInputData: true, // 是否显示录入按钮
|
||
showDevice: true, // 是否显示多端适配选项
|
||
appendConfigData: [], // 定义渲染规则所需的formData
|
||
});
|
||
|
||
const dialogVisible = ref(false); // 弹窗的是否展示
|
||
const dialogTitle = ref(''); // 弹窗的标题
|
||
const formType = ref(-1); // 表单的类型:0 - 生成 JSON;1 - 生成 Options;2 - 生成组件
|
||
const formData = ref(''); // 表单数据
|
||
useFormCreateDesigner(designer); // 表单设计器增强
|
||
|
||
/** 打开弹窗 */
|
||
const openModel = (title: string) => {
|
||
dialogVisible.value = true;
|
||
dialogTitle.value = title;
|
||
modalApi.open();
|
||
};
|
||
|
||
/** 生成 JSON */
|
||
const showJson = () => {
|
||
openModel('生成 JSON');
|
||
formType.value = 0;
|
||
formData.value = designer.value.getRule();
|
||
};
|
||
|
||
/** 生成 Options */
|
||
const showOption = () => {
|
||
openModel('生成 Options');
|
||
formType.value = 1;
|
||
formData.value = designer.value.getOption();
|
||
};
|
||
|
||
/** 生成组件 */
|
||
const showTemplate = () => {
|
||
openModel('生成组件');
|
||
formType.value = 2;
|
||
formData.value = makeTemplate();
|
||
};
|
||
|
||
const makeTemplate = () => {
|
||
const rule = designer.value.getRule();
|
||
const opt = designer.value.getOption();
|
||
return `<template>
|
||
<form-create
|
||
v-model:api="fApi"
|
||
:rule="rule"
|
||
:option="option"
|
||
@submit="onSubmit"
|
||
></form-create>
|
||
</template>
|
||
<script setup lang=ts>
|
||
const faps = ref(null)
|
||
const rule = ref('')
|
||
const option = ref('')
|
||
const init = () => {
|
||
rule.value = formCreate.parseJson('${formCreate.toJson(rule).replaceAll('\\', '\\\\')}')
|
||
option.value = formCreate.parseJson('${JSON.stringify(opt, null, 2)}')
|
||
}
|
||
const onSubmit = (formData) => {
|
||
//todo 提交表单
|
||
}
|
||
init()
|
||
<\/script>`;
|
||
};
|
||
|
||
/** 复制 */
|
||
const copy = async (text: string) => {
|
||
const textToCopy = JSON.stringify(text, null, 2);
|
||
const { copy, copied, isSupported } = useClipboard({ source: textToCopy });
|
||
if (isSupported) {
|
||
await copy();
|
||
if (unref(copied)) {
|
||
ElMessage.success('复制成功');
|
||
}
|
||
} else {
|
||
ElMessage.error('复制失败');
|
||
}
|
||
};
|
||
|
||
/**
|
||
* 代码高亮
|
||
*/
|
||
const highlightedCode = (code: string) => {
|
||
// 处理语言和代码
|
||
let language = 'json';
|
||
if (formType.value === 2) {
|
||
language = 'xml';
|
||
}
|
||
// debugger
|
||
if (!isString(code)) {
|
||
code = JSON.stringify(code, null, 2);
|
||
}
|
||
// 高亮
|
||
const result = hljs.highlight(code, { language, ignoreIllegals: true });
|
||
return result.value || ' ';
|
||
};
|
||
|
||
/** 初始化 */
|
||
onMounted(async () => {
|
||
// 注册代码高亮的各种语言
|
||
hljs.registerLanguage('xml', xml);
|
||
hljs.registerLanguage('json', json);
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<Page auto-content-height>
|
||
<FcDesigner ref="designer" height="90vh" :config="designerConfig">
|
||
<template #handle>
|
||
<ElButton size="small" type="primary" plain @click="showJson">
|
||
生成JSON
|
||
</ElButton>
|
||
<ElButton size="small" type="primary" plain @click="showOption">
|
||
生成Options
|
||
</ElButton>
|
||
<ElButton size="small" type="primary" plain @click="showTemplate">
|
||
生成组件
|
||
</ElButton>
|
||
</template>
|
||
</FcDesigner>
|
||
|
||
<!-- 弹窗:表单预览 -->
|
||
<Modal :title="dialogTitle" :footer="false" :fullscreen-button="false">
|
||
<div>
|
||
<ElButton style="float: right" @click="copy(formData)"> 复制 </ElButton>
|
||
<div>
|
||
<pre><code v-dompurify-html="highlightedCode(formData)" class="hljs"></code></pre>
|
||
</div>
|
||
</div>
|
||
</Modal>
|
||
</Page>
|
||
</template>
|