perf: 优化事件代码结构
This commit is contained in:
parent
38fb7b381a
commit
ae75d9b5e6
@ -8,17 +8,17 @@ const components: { [K in string]?: any } = {}
|
|||||||
export const npmPkgs = { echarts }
|
export const npmPkgs = { echarts }
|
||||||
|
|
||||||
export const useLifeHandler = (chartConfig: CreateComponentType) => {
|
export const useLifeHandler = (chartConfig: CreateComponentType) => {
|
||||||
const events = chartConfig.events || {}
|
const events = chartConfig.events.advancedEvents || {}
|
||||||
// 生成生命周期事件
|
// 生成生命周期事件
|
||||||
const lifeEvents = {
|
const lifeEvents = {
|
||||||
[EventLife.BEFORE_MOUNT](e: any) {
|
[EventLife.VNODE_BEFORE_MOUNT](e: any) {
|
||||||
// 存储组件
|
// 存储组件
|
||||||
components[chartConfig.id] = e.component
|
components[chartConfig.id] = e.component
|
||||||
const fnStr = (events[EventLife.BEFORE_MOUNT] || '').trim()
|
const fnStr = (events[EventLife.VNODE_BEFORE_MOUNT] || '').trim()
|
||||||
generateFunc(fnStr, e)
|
generateFunc(fnStr, e)
|
||||||
},
|
},
|
||||||
[EventLife.MOUNTED](e: any) {
|
[EventLife.VNODE_MOUNTED](e: any) {
|
||||||
const fnStr = (events[EventLife.MOUNTED] || '').trim()
|
const fnStr = (events[EventLife.VNODE_MOUNTED] || '').trim()
|
||||||
generateFunc(fnStr, e)
|
generateFunc(fnStr, e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
27
src/packages/index.d.ts
vendored
27
src/packages/index.d.ts
vendored
@ -90,12 +90,24 @@ export const BlendModeEnumList = [
|
|||||||
{ label: '亮度', value: 'luminosity' }
|
{ label: '亮度', value: 'luminosity' }
|
||||||
]
|
]
|
||||||
|
|
||||||
|
// 基础事件类型
|
||||||
|
export enum BaseEvent {
|
||||||
|
// 点击
|
||||||
|
ON_CLICK = 'onClick',
|
||||||
|
// 双击
|
||||||
|
ON_DBL_CLICK = 'onDblClick',
|
||||||
|
// 移入
|
||||||
|
ON_MOUSE_ENTER = 'onMouseenter',
|
||||||
|
// 移出
|
||||||
|
ON_MOUSE_LEAVE = 'onMouseleave',
|
||||||
|
}
|
||||||
|
|
||||||
// vue3 生命周期事件
|
// vue3 生命周期事件
|
||||||
export enum EventLife {
|
export enum EventLife {
|
||||||
// 渲染之后
|
// 渲染之后
|
||||||
MOUNTED = 'vnodeMounted',
|
VNODE_MOUNTED = 'vnodeMounted',
|
||||||
// 渲染之前
|
// 渲染之前
|
||||||
BEFORE_MOUNT = 'vnodeBeforeMount',
|
VNODE_BEFORE_MOUNT = 'vnodeBeforeMount',
|
||||||
}
|
}
|
||||||
|
|
||||||
// 组件实例类
|
// 组件实例类
|
||||||
@ -123,8 +135,13 @@ export interface PublicConfigType {
|
|||||||
}
|
}
|
||||||
filter?: string
|
filter?: string
|
||||||
status: StatusType
|
status: StatusType
|
||||||
events?: {
|
events: {
|
||||||
[K in EventLife]?: string
|
baseEvent: {
|
||||||
|
[K in BaseEvent]?: string
|
||||||
|
},
|
||||||
|
advancedEvents: {
|
||||||
|
[K in EventLife]?: string
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { getUUID } from '@/utils'
|
import { getUUID } from '@/utils'
|
||||||
import { ChartFrameEnum, PublicConfigType, CreateComponentType, CreateComponentGroupType } from '@/packages/index.d'
|
|
||||||
import { RequestConfigType } from '@/store/modules/chartEditStore/chartEditStore.d'
|
import { RequestConfigType } from '@/store/modules/chartEditStore/chartEditStore.d'
|
||||||
import { groupTitle } from '@/settings/designSetting'
|
import { groupTitle } from '@/settings/designSetting'
|
||||||
import {
|
import {
|
||||||
@ -9,6 +8,14 @@ import {
|
|||||||
RequestContentTypeEnum,
|
RequestContentTypeEnum,
|
||||||
RequestBodyEnum
|
RequestBodyEnum
|
||||||
} from '@/enums/httpEnum'
|
} from '@/enums/httpEnum'
|
||||||
|
import {
|
||||||
|
BaseEvent,
|
||||||
|
EventLife,
|
||||||
|
ChartFrameEnum,
|
||||||
|
PublicConfigType,
|
||||||
|
CreateComponentType,
|
||||||
|
CreateComponentGroupType
|
||||||
|
} from '@/packages/index.d'
|
||||||
import { chartInitConfig } from '@/settings/designSetting'
|
import { chartInitConfig } from '@/settings/designSetting'
|
||||||
import cloneDeep from 'lodash/cloneDeep'
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
|
|
||||||
@ -82,7 +89,18 @@ export class PublicConfigClass implements PublicConfigType {
|
|||||||
// 数据过滤
|
// 数据过滤
|
||||||
public filter = undefined
|
public filter = undefined
|
||||||
// 事件
|
// 事件
|
||||||
public events = undefined
|
public events = {
|
||||||
|
baseEvent: {
|
||||||
|
[BaseEvent.ON_CLICK]: undefined,
|
||||||
|
[BaseEvent.ON_DBL_CLICK]: undefined,
|
||||||
|
[BaseEvent.ON_MOUSE_ENTER]: undefined,
|
||||||
|
[BaseEvent.ON_MOUSE_LEAVE]: undefined
|
||||||
|
},
|
||||||
|
advancedEvents: {
|
||||||
|
[EventLife.VNODE_MOUNTED]: undefined,
|
||||||
|
[EventLife.VNODE_BEFORE_MOUNT]: undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 多选成组类
|
// 多选成组类
|
||||||
|
@ -108,7 +108,7 @@ export const useChartEditStore = defineStore({
|
|||||||
chartThemeColor: defaultTheme || 'dark',
|
chartThemeColor: defaultTheme || 'dark',
|
||||||
// 全局配置
|
// 全局配置
|
||||||
chartThemeSetting: globalThemeJson,
|
chartThemeSetting: globalThemeJson,
|
||||||
// 预览方式
|
// 适配方式
|
||||||
previewScaleType: previewScaleType
|
previewScaleType: previewScaleType
|
||||||
},
|
},
|
||||||
// 数据请求处理(需存储给后端)
|
// 数据请求处理(需存储给后端)
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
</n-button>
|
</n-button>
|
||||||
</n-space>
|
</n-space>
|
||||||
<n-space>
|
<n-space>
|
||||||
<n-text>预览方式</n-text>
|
<n-text>适配方式</n-text>
|
||||||
<n-button-group>
|
<n-button-group>
|
||||||
<n-button
|
<n-button
|
||||||
v-for="item in previewTypeList"
|
v-for="item in previewTypeList"
|
||||||
@ -279,7 +279,7 @@ const customRequest = (options: UploadCustomRequestOptions) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// 选择预览方式
|
// 选择适配方式
|
||||||
const selectPreviewType = (key: PreviewScaleEnum) => {
|
const selectPreviewType = (key: PreviewScaleEnum) => {
|
||||||
chartEditStore.setEditCanvasConfig(EditCanvasConfigEnum.PREVIEW_SCALE_TYPE, key)
|
chartEditStore.setEditCanvasConfig(EditCanvasConfigEnum.PREVIEW_SCALE_TYPE, key)
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<p>
|
<p>
|
||||||
<span class="func-keyword">async {{ eventName }}</span> (e, components, echarts, node_modules) {
|
<span class="func-keyword">async {{ eventName }}</span> (e, components, echarts, node_modules) {
|
||||||
</p>
|
</p>
|
||||||
<p class="go-ml-4"><n-code :code="(targetData.events || {})[eventName]" language="typescript"></n-code></p>
|
<p class="go-ml-4"><n-code :code="(targetData.events.advancedEvents || {})[eventName]" language="typescript"></n-code></p>
|
||||||
<p>}<span>,</span></p>
|
<p>}<span>,</span></p>
|
||||||
</div>
|
</div>
|
||||||
</n-card>
|
</n-card>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
<span class="func-keyNameWord">{{ eventName }}(e, components, echarts, node_modules) {</span>
|
<span class="func-keyNameWord">{{ eventName }}(e, components, echarts, node_modules) {</span>
|
||||||
</p>
|
</p>
|
||||||
<!-- 编辑主体 -->
|
<!-- 编辑主体 -->
|
||||||
<monaco-editor v-model:modelValue="events[eventName]" height="480px" language="javascript" />
|
<monaco-editor v-model:modelValue="advancedEvents[eventName]" height="480px" language="javascript" />
|
||||||
<!-- 函数结束 -->
|
<!-- 函数结束 -->
|
||||||
<p class="go-pl-3 func-keyNameWord">}</p>
|
<p class="go-pl-3 func-keyNameWord">}</p>
|
||||||
</n-tab-pane>
|
</n-tab-pane>
|
||||||
@ -166,21 +166,21 @@ const { targetData, chartEditStore } = useTargetData()
|
|||||||
const { DocumentTextIcon, ChevronDownIcon, PencilIcon } = icon.ionicons5
|
const { DocumentTextIcon, ChevronDownIcon, PencilIcon } = icon.ionicons5
|
||||||
|
|
||||||
const EventLifeName = {
|
const EventLifeName = {
|
||||||
[EventLife.BEFORE_MOUNT]: '渲染之前',
|
[EventLife.VNODE_BEFORE_MOUNT]: '渲染之前',
|
||||||
[EventLife.MOUNTED]: '渲染之后'
|
[EventLife.VNODE_MOUNTED]: '渲染之后'
|
||||||
}
|
}
|
||||||
|
|
||||||
const EventLifeTip = {
|
const EventLifeTip = {
|
||||||
[EventLife.BEFORE_MOUNT]: '此时组件 DOM 还未存在',
|
[EventLife.VNODE_BEFORE_MOUNT]: '此时组件 DOM 还未存在',
|
||||||
[EventLife.MOUNTED]: '此时组件 DOM 已经存在'
|
[EventLife.VNODE_MOUNTED]: '此时组件 DOM 已经存在'
|
||||||
}
|
}
|
||||||
|
|
||||||
// 受控弹窗
|
// 受控弹窗
|
||||||
const showModal = ref(false)
|
const showModal = ref(false)
|
||||||
// 编辑区域控制
|
// 编辑区域控制
|
||||||
const editTab = ref(EventLife.MOUNTED)
|
const editTab = ref(EventLife.VNODE_MOUNTED)
|
||||||
// events 函数模板
|
// events 函数模板
|
||||||
let events = ref({ ...targetData.value.events })
|
let advancedEvents = ref({ ...targetData.value.events.advancedEvents })
|
||||||
// 事件错误标识
|
// 事件错误标识
|
||||||
const errorFlag = ref(false)
|
const errorFlag = ref(false)
|
||||||
|
|
||||||
@ -190,7 +190,7 @@ const validEvents = () => {
|
|||||||
let message = ''
|
let message = ''
|
||||||
let name = ''
|
let name = ''
|
||||||
|
|
||||||
errorFlag.value = Object.entries(events.value).every(([eventName, str]) => {
|
errorFlag.value = Object.entries(advancedEvents.value).every(([eventName, str]) => {
|
||||||
try {
|
try {
|
||||||
// 支持await,验证语法
|
// 支持await,验证语法
|
||||||
const AsyncFunction = Object.getPrototypeOf(async function () {}).constructor
|
const AsyncFunction = Object.getPrototypeOf(async function () {}).constructor
|
||||||
@ -221,11 +221,11 @@ const saveEvents = () => {
|
|||||||
window['$message'].error('事件函数错误,无法进行保存')
|
window['$message'].error('事件函数错误,无法进行保存')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (Object.values(events.value).join('').trim() === '') {
|
if (Object.values(advancedEvents.value).join('').trim() === '') {
|
||||||
// 清空事件
|
// 清空事件
|
||||||
targetData.value.events = undefined
|
targetData.value.events.advancedEvents = undefined
|
||||||
} else {
|
} else {
|
||||||
targetData.value.events = { ...events.value }
|
targetData.value.events.advancedEvents = { ...advancedEvents.value }
|
||||||
}
|
}
|
||||||
closeEvents()
|
closeEvents()
|
||||||
}
|
}
|
||||||
@ -234,7 +234,7 @@ watch(
|
|||||||
() => showModal.value,
|
() => showModal.value,
|
||||||
(newData: boolean) => {
|
(newData: boolean) => {
|
||||||
if (newData) {
|
if (newData) {
|
||||||
events.value = { ...targetData.value.events }
|
advancedEvents.value = { ...targetData.value.events.advancedEvents }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -38,6 +38,7 @@ export const useFile = () => {
|
|||||||
await updateComponent(fileData, false, true)
|
await updateComponent(fileData, false, true)
|
||||||
window['$message'].success('导入成功!')
|
window['$message'].success('导入成功!')
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
console.log(error)
|
||||||
window['$message'].error('组件导入失败,请检查文件完整性!')
|
window['$message'].error('组件导入失败,请检查文件完整性!')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -48,6 +49,7 @@ export const useFile = () => {
|
|||||||
await updateComponent(fileData, true, true)
|
await updateComponent(fileData, true, true)
|
||||||
window['$message'].success('导入成功!')
|
window['$message'].success('导入成功!')
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
console.log(error)
|
||||||
window['$message'].error('组件导入失败,请检查文件完整性!')
|
window['$message'].error('组件导入失败,请检查文件完整性!')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ const btnList: BtnListType[] = [
|
|||||||
{
|
{
|
||||||
key: 'edit',
|
key: 'edit',
|
||||||
type: TypeEnum.BUTTON,
|
type: TypeEnum.BUTTON,
|
||||||
name: '编辑JSON',
|
name: '编辑',
|
||||||
icon: CreateIcon,
|
icon: CreateIcon,
|
||||||
handle: editHandle
|
handle: editHandle
|
||||||
},
|
},
|
||||||
|
@ -3,28 +3,68 @@ import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore
|
|||||||
import { ChartEditStoreEnum, ChartEditStorage } from '@/store/modules/chartEditStore/chartEditStore.d'
|
import { ChartEditStoreEnum, ChartEditStorage } from '@/store/modules/chartEditStore/chartEditStore.d'
|
||||||
import { useChartHistoryStore } from '@/store/modules/chartHistoryStore/chartHistoryStore'
|
import { useChartHistoryStore } from '@/store/modules/chartHistoryStore/chartHistoryStore'
|
||||||
import { fetchChartComponent, fetchConfigComponent, createComponent } from '@/packages/index'
|
import { fetchChartComponent, fetchConfigComponent, createComponent } from '@/packages/index'
|
||||||
import { CreateComponentType, CreateComponentGroupType, ConfigType } from '@/packages/index.d'
|
import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d'
|
||||||
import { PublicGroupConfigClass } from '@/packages/public/publicConfig'
|
import { PublicGroupConfigClass } from '@/packages/public/publicConfig'
|
||||||
import merge from 'lodash/merge'
|
import merge from 'lodash/merge'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 合并处理
|
* * 画布-版本升级对旧数据无法兼容的补丁
|
||||||
* @param object 模板数据
|
* @param object
|
||||||
|
*/
|
||||||
|
const canvasVersionUpdatePolyfill = (object: any) => {
|
||||||
|
return object
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 组件-版本升级对旧数据无法兼容的补丁
|
||||||
|
* @param newObject
|
||||||
|
* @param sources
|
||||||
|
*/
|
||||||
|
const componentVersionUpdatePolyfill = (newObject: any, sources: any) => {
|
||||||
|
try {
|
||||||
|
// 判断是否是组件
|
||||||
|
if (sources.id) {
|
||||||
|
// 处理事件补丁
|
||||||
|
const hasVnodeBeforeMount = 'vnodeBeforeMount' in sources.events
|
||||||
|
const hasVnodeMounted = 'vnodeMounted' in sources.events
|
||||||
|
|
||||||
|
if (hasVnodeBeforeMount) {
|
||||||
|
newObject.events.advancedEvents.vnodeBeforeMount = sources?.events.vnodeBeforeMount
|
||||||
|
}
|
||||||
|
if (hasVnodeMounted) {
|
||||||
|
newObject.events.advancedEvents.vnodeMounted = sources?.events.vnodeMounted
|
||||||
|
}
|
||||||
|
if (hasVnodeBeforeMount || hasVnodeMounted) {
|
||||||
|
sources.events = undefined
|
||||||
|
}
|
||||||
|
return newObject
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
return newObject
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 合并处理
|
||||||
|
* @param newObject 新的模板数据
|
||||||
* @param sources 新拿到的数据
|
* @param sources 新拿到的数据
|
||||||
* @returns object
|
* @returns object
|
||||||
*/
|
*/
|
||||||
const componentMerge = (object: any, sources: any, notComponent = false) => {
|
const componentMerge = (newObject: any, sources: any, notComponent = false) => {
|
||||||
|
// 处理组件补丁
|
||||||
|
componentVersionUpdatePolyfill(newObject, sources)
|
||||||
|
|
||||||
// 非组件不处理
|
// 非组件不处理
|
||||||
if (notComponent) return merge(object, sources)
|
if (notComponent) return merge(newObject, sources)
|
||||||
// 组件排除 options
|
// 组件排除 newObject
|
||||||
const option = sources.option
|
const option = sources.option
|
||||||
if (!option) return merge(object, sources)
|
if (!option) return merge(newObject, sources)
|
||||||
|
|
||||||
// 为 undefined 的 sources 来源对象属性将被跳过详见 https://www.lodashjs.com/docs/lodash.merge
|
// 为 undefined 的 sources 来源对象属性将被跳过详见 https://www.lodashjs.com/docs/lodash.merge
|
||||||
sources.option = undefined
|
sources.option = undefined
|
||||||
if (option) {
|
if (option) {
|
||||||
return {
|
return {
|
||||||
...merge(object, sources),
|
...merge(newObject, sources),
|
||||||
option: option
|
option: option
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -49,6 +89,9 @@ export const useSync = () => {
|
|||||||
chartHistoryStore.clearBackStack()
|
chartHistoryStore.clearBackStack()
|
||||||
chartHistoryStore.clearForwardStack()
|
chartHistoryStore.clearForwardStack()
|
||||||
}
|
}
|
||||||
|
// 画布补丁处理
|
||||||
|
projectData.editCanvasConfig = canvasVersionUpdatePolyfill(projectData.editCanvasConfig)
|
||||||
|
|
||||||
// 列表组件注册
|
// 列表组件注册
|
||||||
projectData.componentList.forEach(async (e: CreateComponentType | CreateComponentGroupType) => {
|
projectData.componentList.forEach(async (e: CreateComponentType | CreateComponentGroupType) => {
|
||||||
const intComponent = (target: CreateComponentType) => {
|
const intComponent = (target: CreateComponentType) => {
|
||||||
@ -119,7 +162,7 @@ export const useSync = () => {
|
|||||||
// 分组插入到列表
|
// 分组插入到列表
|
||||||
chartEditStore.addComponentList(groupClass, false, true)
|
chartEditStore.addComponentList(groupClass, false, true)
|
||||||
} else {
|
} else {
|
||||||
await create(comItem as CreateComponentType)
|
await create(comItem as CreateComponentType)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user