This commit is contained in:
XiaoDaiGua-Ray 2023-09-16 00:03:05 +08:00
parent 405e62c762
commit 4d4d5451dc
3 changed files with 11 additions and 13 deletions

View File

@ -26,12 +26,12 @@ import type {
* 1. * 1.
* 2. * 2.
* 3. json * 3. json
* 4. @/components/RayChart/theme json * 4. @/components/RChart/theme json
*/ */
export const setupChartTheme = () => { export const setupChartTheme = () => {
// 获取所有主题 // 获取所有主题
const themeRawModules: Record<string, ChartThemeRawModules> = const themeRawModules: Record<string, ChartThemeRawModules> =
import.meta.glob('@/components/RayChart/theme/**/*.json', { import.meta.glob('@/components/RChart/theme/**/*.json', {
eager: true, eager: true,
}) })
const regx = /\/([^/]+)\.json$/ const regx = /\/([^/]+)\.json$/

View File

@ -66,8 +66,8 @@ import type { ECharts, EChartsCoreOption, SetOptionOpts } from 'echarts/core'
export type EChartsExtensionInstallRegisters = typeof CanvasRenderer export type EChartsExtensionInstallRegisters = typeof CanvasRenderer
export type { RayChartInst } from './type' export type { RayChartInst } from './type'
const RayChart = defineComponent({ export default defineComponent({
name: 'RayChart', name: 'RChart',
props: { props: {
width: { width: {
/** /**
@ -369,7 +369,7 @@ const RayChart = defineComponent({
call(onError) call(onError)
} }
console.error('RayChart render error: ', e) console.error('RChart render error: ', e)
} }
} }
@ -413,7 +413,7 @@ const RayChart = defineComponent({
// 避免重复渲染 // 避免重复渲染
if (echartInstance?.getDom()) { if (echartInstance?.getDom()) {
console.warn( console.warn(
'RayChart mount: There is a chart instance already initialized on the dom. Execution was interrupted', 'RChart mount: There is a chart instance already initialized on the dom. Execution was interrupted',
) )
return return
@ -555,5 +555,3 @@ const RayChart = defineComponent({
) )
}, },
}) })
export default RayChart

View File

@ -1,7 +1,7 @@
import './index.scss' import './index.scss'
import { NCard, NSwitch, NSpace, NP, NH2, NButton } from 'naive-ui' import { NCard, NSwitch, NSpace, NP, NH2, NButton } from 'naive-ui'
import RayChart from '@/components/RChart/index' import RChart from '@/components/RChart/index'
import dayjs from 'dayjs' import dayjs from 'dayjs'
@ -270,7 +270,7 @@ const Echart = defineComponent({
</NButton> </NButton>
</NSpace> </NSpace>
<div class="chart--container"> <div class="chart--container">
<RayChart <RChart
ref="baseChartRef" ref="baseChartRef"
autoChangeTheme autoChangeTheme
options={this.baseLineOptions} options={this.baseLineOptions}
@ -279,7 +279,7 @@ const Echart = defineComponent({
</div> </div>
<NH2></NH2> <NH2></NH2>
<div class="chart--container"> <div class="chart--container">
<RayChart <RChart
autoChangeTheme={false} autoChangeTheme={false}
theme="dark" theme="dark"
options={this.baseOptions} options={this.baseOptions}
@ -297,7 +297,7 @@ const Echart = defineComponent({
}} }}
</NSwitch> </NSwitch>
<div class="chart--container"> <div class="chart--container">
<RayChart loading={this.loading} options={this.baseOptions} /> <RChart loading={this.loading} options={this.baseOptions} />
</div> </div>
<NH2></NH2> <NH2></NH2>
<NSwitch <NSwitch
@ -311,7 +311,7 @@ const Echart = defineComponent({
}} }}
</NSwitch> </NSwitch>
<div class="chart--container"> <div class="chart--container">
<RayChart options={this.baseOptions} showAria={this.chartAria} /> <RChart options={this.baseOptions} showAria={this.chartAria} />
</div> </div>
</div> </div>
) )