mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import type { App } from 'vue'
|
|
import {
|
|
PackagesCategoryEnum,
|
|
PackagesType,
|
|
ConfigType
|
|
} from '@/packages/index.d'
|
|
import { ChartList } from '@/packages/components/Charts/index'
|
|
import { DecorateList } from '@/packages/components/Decorates/index'
|
|
import { InformationList } from '@/packages/components/Informations/index'
|
|
import { TableList } from '@/packages/components/Tables/index'
|
|
|
|
// * 所有图表
|
|
let packagesList: PackagesType = {
|
|
[PackagesCategoryEnum.CHARTS]: ChartList,
|
|
[PackagesCategoryEnum.INFORMATION]: InformationList,
|
|
[PackagesCategoryEnum.TABLES]: TableList,
|
|
[PackagesCategoryEnum.DECORATES]: DecorateList
|
|
}
|
|
|
|
/**
|
|
* * 获取目标拖拽组件信息
|
|
* @param dropData
|
|
*/
|
|
const createComponent = async (dropData: ConfigType) => {
|
|
const { category } = dropData
|
|
const key = dropData.key.substring(1)
|
|
const chart = await import(`./components/${dropData.package}/${category}/${key}/config.ts`)
|
|
return new chart.default()
|
|
}
|
|
|
|
/**
|
|
* * 获取组件信息
|
|
*/
|
|
const fetchChartComponent = async (dropData: ConfigType | Omit<ConfigType, "node">) => {
|
|
const key = dropData.key.substring(1)
|
|
const { category } = dropData
|
|
return await import(`../packages/components/${dropData.package}/${category}/${key}/index.vue`)
|
|
}
|
|
|
|
export { packagesList, createComponent, fetchChartComponent }
|