mirror of
				https://gitee.com/hhyykk/ipms-sjy-ui.git
				synced 2025-11-04 12:18:43 +08:00 
			
		
		
		
	!128 去除 BPMNJS、FormCreate、Highlight 的全局引入,降低打包后的大小(6.6M -> 1.3M)
Merge pull request !128 from 芋道源码/dev
This commit is contained in:
		
							
								
								
									
										31
									
								
								.env.stage
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								.env.stage
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,31 @@
 | 
			
		||||
# 生产环境
 | 
			
		||||
NODE_ENV=production
 | 
			
		||||
 | 
			
		||||
VITE_DEV=false
 | 
			
		||||
 | 
			
		||||
# 请求路径
 | 
			
		||||
VITE_BASE_URL='http://api-dashboard.yudao.iocoder.cn'
 | 
			
		||||
 | 
			
		||||
# 上传路径
 | 
			
		||||
VITE_UPLOAD_URL='http://api-dashboard.yudao.iocoder.cn/admin-api/infra/file/upload'
 | 
			
		||||
 | 
			
		||||
# 接口前缀
 | 
			
		||||
VITE_API_BASEPATH=
 | 
			
		||||
 | 
			
		||||
# 接口地址
 | 
			
		||||
VITE_API_URL=/admin-api
 | 
			
		||||
 | 
			
		||||
# 是否删除debugger
 | 
			
		||||
VITE_DROP_DEBUGGER=true
 | 
			
		||||
 | 
			
		||||
# 是否删除console.log
 | 
			
		||||
VITE_DROP_CONSOLE=true
 | 
			
		||||
 | 
			
		||||
# 是否sourcemap
 | 
			
		||||
VITE_SOURCEMAP=false
 | 
			
		||||
 | 
			
		||||
# 打包路径
 | 
			
		||||
VITE_BASE_PATH='http://static-vue3.yudao.iocoder.cn/'
 | 
			
		||||
 | 
			
		||||
# 输出路径
 | 
			
		||||
VITE_OUT_DIR=dist-stage
 | 
			
		||||
@@ -25,7 +25,7 @@ VITE_DROP_CONSOLE=false
 | 
			
		||||
VITE_SOURCEMAP=true
 | 
			
		||||
 | 
			
		||||
# 打包路径
 | 
			
		||||
VITE_BASE_PATH=/dist-test/
 | 
			
		||||
VITE_BASE_PATH=/
 | 
			
		||||
 | 
			
		||||
# 输出路径
 | 
			
		||||
VITE_OUT_DIR=dist-test
 | 
			
		||||
 
 | 
			
		||||
@@ -11,6 +11,7 @@
 | 
			
		||||
    "ts:check": "vue-tsc --noEmit",
 | 
			
		||||
    "build:pro": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode pro",
 | 
			
		||||
    "build:dev": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode dev",
 | 
			
		||||
    "build:stage": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode stage",
 | 
			
		||||
    "build:test": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode test",
 | 
			
		||||
    "build:static": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode static",
 | 
			
		||||
    "build:front": "node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --mode front",
 | 
			
		||||
 
 | 
			
		||||
@@ -1,37 +1,11 @@
 | 
			
		||||
import { App } from 'vue'
 | 
			
		||||
import MyProcessDesigner from './designer'
 | 
			
		||||
import MyProcessPenal from './penal'
 | 
			
		||||
import MyProcessViewer from './designer/index2'
 | 
			
		||||
 | 
			
		||||
const components = [MyProcessDesigner, MyProcessPenal, MyProcessViewer]
 | 
			
		||||
import './theme/index.scss'
 | 
			
		||||
import 'bpmn-js/dist/assets/diagram-js.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-codes.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-embedded.css'
 | 
			
		||||
 | 
			
		||||
// const install = function (Vue) {
 | 
			
		||||
//   components.forEach(component => {
 | 
			
		||||
//     Vue.component(component.name, component)
 | 
			
		||||
//   })
 | 
			
		||||
// }
 | 
			
		||||
 | 
			
		||||
// if (typeof window !== "undefined" && window.Vue) {
 | 
			
		||||
//   install(window.Vue)
 | 
			
		||||
// }
 | 
			
		||||
//   components.forEach(component => {
 | 
			
		||||
//     Vue.component(component.name, component)
 | 
			
		||||
//   })
 | 
			
		||||
const componentss = {
 | 
			
		||||
  install: (Vue: App): void => {
 | 
			
		||||
    components.forEach((component) => {
 | 
			
		||||
      Vue.component(component.name, component)
 | 
			
		||||
    })
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
// let version = "0.0.1"
 | 
			
		||||
export const MyPD = (app) => {
 | 
			
		||||
  // export default {
 | 
			
		||||
  // app.use(version)
 | 
			
		||||
  // app.use(install)
 | 
			
		||||
  // app.use(MyProcessDesigner)
 | 
			
		||||
  // app.use(MyProcessPenal)
 | 
			
		||||
  // app.use(MyProcessViewer)
 | 
			
		||||
  // app.use(components)
 | 
			
		||||
  app.use(componentss)
 | 
			
		||||
}
 | 
			
		||||
export { MyProcessDesigner, MyProcessPenal, MyProcessViewer }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,21 +1,6 @@
 | 
			
		||||
import type { App } from 'vue'
 | 
			
		||||
import { Icon } from './Icon'
 | 
			
		||||
import { Form } from '@/components/Form'
 | 
			
		||||
import { Table } from '@/components/Table'
 | 
			
		||||
import { Search } from '@/components/Search'
 | 
			
		||||
import { XButton, XTextButton } from '@/components/XButton'
 | 
			
		||||
import { DictTag } from '@/components/DictTag'
 | 
			
		||||
import { ContentWrap } from '@/components/ContentWrap'
 | 
			
		||||
import { Descriptions } from '@/components/Descriptions'
 | 
			
		||||
 | 
			
		||||
export const setupGlobCom = (app: App<Element>): void => {
 | 
			
		||||
  app.component('Icon', Icon)
 | 
			
		||||
  app.component('Form', Form)
 | 
			
		||||
  app.component('Table', Table)
 | 
			
		||||
  app.component('Search', Search)
 | 
			
		||||
  app.component('XButton', XButton)
 | 
			
		||||
  app.component('XTextButton', XTextButton)
 | 
			
		||||
  app.component('DictTag', DictTag)
 | 
			
		||||
  app.component('ContentWrap', ContentWrap)
 | 
			
		||||
  app.component('Descriptions', Descriptions)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										20
									
								
								src/main.ts
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								src/main.ts
									
									
									
									
									
								
							@@ -37,16 +37,6 @@ import App from './App.vue'
 | 
			
		||||
 | 
			
		||||
import './permission'
 | 
			
		||||
 | 
			
		||||
import { MyPD } from '@/components/bpmnProcessDesigner/package/index.js'
 | 
			
		||||
import '@/components/bpmnProcessDesigner/package/theme/index.scss'
 | 
			
		||||
import 'bpmn-js/dist/assets/diagram-js.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-codes.css'
 | 
			
		||||
import 'bpmn-js/dist/assets/bpmn-font/css/bpmn-embedded.css'
 | 
			
		||||
 | 
			
		||||
import hljs from 'highlight.js' //导入代码高亮文件
 | 
			
		||||
import 'highlight.js/styles/github.css' //导入代码高亮样式  新版
 | 
			
		||||
 | 
			
		||||
import '@/plugins/tongji' // 百度统计
 | 
			
		||||
 | 
			
		||||
import Logger from '@/utils/Logger'
 | 
			
		||||
@@ -55,18 +45,8 @@ import Logger from '@/utils/Logger'
 | 
			
		||||
const setupAll = async () => {
 | 
			
		||||
  const app = createApp(App)
 | 
			
		||||
 | 
			
		||||
  //自定义一个代码高亮指令
 | 
			
		||||
  app.directive('highlight', function (el) {
 | 
			
		||||
    const blocks = el.querySelectorAll('code')
 | 
			
		||||
    blocks.forEach((block: any) => {
 | 
			
		||||
      hljs.highlightElement(block)
 | 
			
		||||
    })
 | 
			
		||||
  })
 | 
			
		||||
 | 
			
		||||
  await setupI18n(app)
 | 
			
		||||
 | 
			
		||||
  MyPD(app)
 | 
			
		||||
 | 
			
		||||
  setupStore(app)
 | 
			
		||||
 | 
			
		||||
  setupGlobCom(app)
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,6 @@ import {
 | 
			
		||||
 | 
			
		||||
import formCreate from '@form-create/element-ui'
 | 
			
		||||
import install from '@form-create/element-ui/auto-import'
 | 
			
		||||
import FcDesigner from '@form-create/designer'
 | 
			
		||||
 | 
			
		||||
const components = [
 | 
			
		||||
  ElAside,
 | 
			
		||||
@@ -34,14 +33,11 @@ const components = [
 | 
			
		||||
  ElTabPane
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
// 参考 http://www.form-create.com/v3/element-ui/auto-import.html 文档
 | 
			
		||||
export const setupFormCreate = (app: App<Element>) => {
 | 
			
		||||
  components.forEach((component) => {
 | 
			
		||||
    app.component(component.name, component)
 | 
			
		||||
  })
 | 
			
		||||
 | 
			
		||||
  formCreate.use(install)
 | 
			
		||||
 | 
			
		||||
  app.use(formCreate)
 | 
			
		||||
 | 
			
		||||
  app.use(FcDesigner)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -84,7 +84,7 @@
 | 
			
		||||
 | 
			
		||||
  <!-- 弹窗:流程模型图的预览 -->
 | 
			
		||||
  <Dialog title="流程图" v-model="bpmnDetailVisible" width="800">
 | 
			
		||||
    <my-process-viewer
 | 
			
		||||
    <MyProcessViewer
 | 
			
		||||
      key="designer"
 | 
			
		||||
      v-model="bpmnXML"
 | 
			
		||||
      :value="bpmnXML"
 | 
			
		||||
@@ -97,6 +97,7 @@
 | 
			
		||||
<script setup lang="ts" name="BpmProcessDefinition">
 | 
			
		||||
import { DICT_TYPE } from '@/utils/dict'
 | 
			
		||||
import { dateFormatter } from '@/utils/formatTime'
 | 
			
		||||
import { MyProcessViewer } from '@/components/bpmnProcessDesigner/package'
 | 
			
		||||
import * as DefinitionApi from '@/api/bpm/definition'
 | 
			
		||||
import { setConfAndFields2 } from '@/utils/formCreate'
 | 
			
		||||
const { push } = useRouter() // 路由
 | 
			
		||||
 
 | 
			
		||||
@@ -1,14 +1,14 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <ContentWrap>
 | 
			
		||||
    <!-- 表单设计器 -->
 | 
			
		||||
    <fc-designer ref="designer" height="780px">
 | 
			
		||||
    <FcDesigner ref="designer" height="780px">
 | 
			
		||||
      <template #handle>
 | 
			
		||||
        <el-button round size="small" type="primary" @click="handleSave">
 | 
			
		||||
          <Icon class="mr-5px" icon="ep:plus" />
 | 
			
		||||
          保存
 | 
			
		||||
        </el-button>
 | 
			
		||||
      </template>
 | 
			
		||||
    </fc-designer>
 | 
			
		||||
    </FcDesigner>
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
 | 
			
		||||
  <!-- 表单保存的弹窗 -->
 | 
			
		||||
@@ -42,6 +42,7 @@
 | 
			
		||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
 | 
			
		||||
import { CommonStatusEnum } from '@/utils/constants'
 | 
			
		||||
import * as FormApi from '@/api/bpm/form'
 | 
			
		||||
import FcDesigner from '@form-create/designer'
 | 
			
		||||
import { encodeConf, encodeFields, setConfAndFields } from '@/utils/formCreate'
 | 
			
		||||
 | 
			
		||||
const { t } = useI18n() // 国际化
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <ContentWrap>
 | 
			
		||||
    <!-- 流程设计器,负责绘制流程等 -->
 | 
			
		||||
    <my-process-designer
 | 
			
		||||
    <MyProcessDesigner
 | 
			
		||||
      key="designer"
 | 
			
		||||
      v-if="xmlString !== undefined"
 | 
			
		||||
      v-model="xmlString"
 | 
			
		||||
@@ -14,7 +14,7 @@
 | 
			
		||||
      @save="save"
 | 
			
		||||
    />
 | 
			
		||||
    <!-- 流程属性器,负责编辑每个流程节点的属性 -->
 | 
			
		||||
    <my-properties-panel
 | 
			
		||||
    <MyProcessPenal
 | 
			
		||||
      key="penal"
 | 
			
		||||
      :bpmnModeler="modeler"
 | 
			
		||||
      :prefix="controlForm.prefix"
 | 
			
		||||
@@ -25,6 +25,7 @@
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script setup lang="ts" name="BpmModelEditor">
 | 
			
		||||
import { MyProcessDesigner, MyProcessPenal } from '@/components/bpmnProcessDesigner/package'
 | 
			
		||||
// 自定义元素选中时的弹出菜单(修改 默认任务 为 用户任务)
 | 
			
		||||
import CustomContentPadProvider from '@/components/bpmnProcessDesigner/package/designer/plugins/content-pad'
 | 
			
		||||
// 自定义左侧菜单(修改 默认任务 为 用户任务)
 | 
			
		||||
 
 | 
			
		||||
@@ -216,7 +216,7 @@
 | 
			
		||||
 | 
			
		||||
  <!-- 弹窗:流程模型图的预览 -->
 | 
			
		||||
  <Dialog title="流程图" v-model="bpmnDetailVisible" width="800">
 | 
			
		||||
    <my-process-viewer
 | 
			
		||||
    <MyProcessViewer
 | 
			
		||||
      key="designer"
 | 
			
		||||
      v-model="bpmnXML"
 | 
			
		||||
      :value="bpmnXML"
 | 
			
		||||
@@ -229,6 +229,7 @@
 | 
			
		||||
<script setup lang="ts" name="BpmModel">
 | 
			
		||||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
 | 
			
		||||
import { dateFormatter, formatDate } from '@/utils/formatTime'
 | 
			
		||||
import { MyProcessViewer } from '@/components/bpmnProcessDesigner/package'
 | 
			
		||||
import * as ModelApi from '@/api/bpm/model'
 | 
			
		||||
import * as FormApi from '@/api/bpm/form'
 | 
			
		||||
import ModelForm from './ModelForm.vue'
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
    <template #header>
 | 
			
		||||
      <span class="el-icon-picture-outline">流程图</span>
 | 
			
		||||
    </template>
 | 
			
		||||
    <my-process-viewer
 | 
			
		||||
    <MyProcessViewer
 | 
			
		||||
      key="designer"
 | 
			
		||||
      :activityData="activityList"
 | 
			
		||||
      :prefix="bpmnControlForm.prefix"
 | 
			
		||||
@@ -16,8 +16,8 @@
 | 
			
		||||
</template>
 | 
			
		||||
<script lang="ts" name="BpmProcessInstanceBpmnViewer" setup>
 | 
			
		||||
import { propTypes } from '@/utils/propTypes'
 | 
			
		||||
import { MyProcessViewer } from '@/components/bpmnProcessDesigner/package'
 | 
			
		||||
import * as ActivityApi from '@/api/bpm/activity'
 | 
			
		||||
// import * as DefinitionApi from '@/api/bpm/definition'
 | 
			
		||||
 | 
			
		||||
const props = defineProps({
 | 
			
		||||
  loading: propTypes.bool, // 是否加载中
 | 
			
		||||
 
 | 
			
		||||
@@ -4,13 +4,13 @@
 | 
			
		||||
      <el-col>
 | 
			
		||||
        <div class="mb-2 float-right">
 | 
			
		||||
          <el-button size="small" type="primary" @click="showJson">生成 JSON</el-button>
 | 
			
		||||
          <el-button size="small" type="success" @click="showOption">生成O ptions</el-button>
 | 
			
		||||
          <el-button size="small" type="success" @click="showOption">生成 Options</el-button>
 | 
			
		||||
          <el-button size="small" type="danger" @click="showTemplate">生成组件</el-button>
 | 
			
		||||
        </div>
 | 
			
		||||
      </el-col>
 | 
			
		||||
      <!-- 表单设计器 -->
 | 
			
		||||
      <el-col>
 | 
			
		||||
        <fc-designer ref="designer" height="780px" />
 | 
			
		||||
        <FcDesigner ref="designer" height="780px" />
 | 
			
		||||
      </el-col>
 | 
			
		||||
    </el-row>
 | 
			
		||||
  </ContentWrap>
 | 
			
		||||
@@ -22,18 +22,17 @@
 | 
			
		||||
        {{ t('common.copy') }}
 | 
			
		||||
      </el-button>
 | 
			
		||||
      <el-scrollbar height="580">
 | 
			
		||||
        <div v-highlight>
 | 
			
		||||
          <code class="hljs">
 | 
			
		||||
            {{ formData }}
 | 
			
		||||
          </code>
 | 
			
		||||
        <div>
 | 
			
		||||
          <pre><code class="hljs" v-html="highlightedCode(formData)"></code></pre>
 | 
			
		||||
        </div>
 | 
			
		||||
      </el-scrollbar>
 | 
			
		||||
    </div>
 | 
			
		||||
  </Dialog>
 | 
			
		||||
</template>
 | 
			
		||||
<script setup lang="ts" name="InfraBuild">
 | 
			
		||||
import formCreate from '@form-create/element-ui'
 | 
			
		||||
import FcDesigner from '@form-create/designer'
 | 
			
		||||
import { useClipboard } from '@vueuse/core'
 | 
			
		||||
import { isString } from '@/utils/is'
 | 
			
		||||
const { t } = useI18n() // 国际化
 | 
			
		||||
const message = useMessage() // 消息
 | 
			
		||||
 | 
			
		||||
@@ -109,4 +108,32 @@ const copy = async (text: string) => {
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 代码高亮
 | 
			
		||||
 */
 | 
			
		||||
import hljs from 'highlight.js' // 导入代码高亮文件
 | 
			
		||||
import 'highlight.js/styles/github.css' // 导入代码高亮样式
 | 
			
		||||
import xml from 'highlight.js/lib/languages/java'
 | 
			
		||||
import json from 'highlight.js/lib/languages/json'
 | 
			
		||||
const highlightedCode = (code) => {
 | 
			
		||||
  // 处理语言和代码
 | 
			
		||||
  let language = 'json'
 | 
			
		||||
  if (formType.value === 2) {
 | 
			
		||||
    language = 'xml'
 | 
			
		||||
  }
 | 
			
		||||
  if (!isString(code)) {
 | 
			
		||||
    code = JSON.stringify(code)
 | 
			
		||||
  }
 | 
			
		||||
  // 高亮
 | 
			
		||||
  const result = hljs.highlight(language, code, true)
 | 
			
		||||
  return result.value || ' '
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/** 初始化 **/
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  // 注册代码高亮的各种语言
 | 
			
		||||
  hljs.registerLanguage('xml', xml)
 | 
			
		||||
  hljs.registerLanguage('json', json)
 | 
			
		||||
})
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -45,8 +45,8 @@
 | 
			
		||||
            <el-button class="float-right" text type="primary" @click="copy(item.code)">
 | 
			
		||||
              {{ t('common.copy') }}
 | 
			
		||||
            </el-button>
 | 
			
		||||
            <div v-highlight>
 | 
			
		||||
              <code>{{ item.code }}</code>
 | 
			
		||||
            <div>
 | 
			
		||||
              <pre><code class="hljs" v-html="highlightedCode(item)"></code></pre>
 | 
			
		||||
            </div>
 | 
			
		||||
          </el-tab-pane>
 | 
			
		||||
        </el-tabs>
 | 
			
		||||
@@ -180,6 +180,34 @@ const copy = async (text: string) => {
 | 
			
		||||
    message.success(t('common.copySuccess'))
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 代码高亮
 | 
			
		||||
 */
 | 
			
		||||
import hljs from 'highlight.js' // 导入代码高亮文件
 | 
			
		||||
import 'highlight.js/styles/github.css' // 导入代码高亮样式
 | 
			
		||||
import java from 'highlight.js/lib/languages/java'
 | 
			
		||||
import xml from 'highlight.js/lib/languages/java'
 | 
			
		||||
import javascript from 'highlight.js/lib/languages/javascript'
 | 
			
		||||
import sql from 'highlight.js/lib/languages/sql'
 | 
			
		||||
import typescript from 'highlight.js/lib/languages/typescript'
 | 
			
		||||
const highlightedCode = (item) => {
 | 
			
		||||
  const language = item.filePath.substring(item.filePath.lastIndexOf('.') + 1)
 | 
			
		||||
  const result = hljs.highlight(language, item.code || '', true)
 | 
			
		||||
  return result.value || ' '
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/** 初始化 **/
 | 
			
		||||
onMounted(async () => {
 | 
			
		||||
  // 注册代码高亮的各种语言
 | 
			
		||||
  hljs.registerLanguage('java', java)
 | 
			
		||||
  hljs.registerLanguage('xml', xml)
 | 
			
		||||
  hljs.registerLanguage('html', xml)
 | 
			
		||||
  hljs.registerLanguage('vue', xml)
 | 
			
		||||
  hljs.registerLanguage('javascript', javascript)
 | 
			
		||||
  hljs.registerLanguage('sql', sql)
 | 
			
		||||
  hljs.registerLanguage('typescript', typescript)
 | 
			
		||||
})
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss">
 | 
			
		||||
.app-infra-codegen-preview-container {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user