在 React Hooks 日常开发中可能会遇到多个Echarts
数据图表需求,为了便于复用和管理,开发一个通用型公共图表组件是非常有必要的。
首先定义用于图表的类型文件IChart.ts:
import { CSSProperties } from 'react';
import * as echarts from 'echarts/core';
import {
// 系列类型的定义后缀都为 SeriesOption
BarSeriesOption,
LineSeriesOption
} from 'echarts/charts';
import {
TitleComponentOption,
TooltipComponentOption,
GridComponentOption,
DatasetComponentOption,
} from 'echarts/components';
// 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型
export type IECOption = echarts.ComposeOption;
export interface IOnEvents{
[index: string]: (param: unknown, instance: echarts.ECharts) => void;
}
type RendererType = 'canvas' | 'svg';
interface IEChartsInitOpts {
readonly locale?: string ;
readonly renderer?: RendererType;
readonly devicePixelRatio?: number;
readonly useDirtyRect?: boolean;
readonly useCoarsePointer?: boolean;
readonly pointerSize?: number;
readonly ssr?: boolean;
readonly width?: number | string;
readonly height?: number | string;
}
export interface IChartProps {
readonly option: IECOption;
readonly loading?: boolean;
readonly onEvents?: IOnEvents;
readonly onChartReady?: (echartsInstance: echarts.ECharts) => void;
readonly style?: CSSProperties;
readonly className?: string;
readonly theme?: string | object;
readonly opts?: IEChartsInitOpts;
}
IChartProps
为Chart组件的入参。
接下来实现图表组件:elementResizeDetectorMaker
是用于根据父元素变化然后动态调整图表大小的功能。
注意echarts.use
图表组件注册部分是要按需引入/注册。props
为一些比较常用的图表配置。
Chart.tsx
import React, { useEffect, useRef, useCallback } from 'react';
import * as echarts from 'echarts/core';
import elementResizeDetectorMaker from 'element-resize-detector';
import {
BarChart,
PieChart,
LineChart,
} from 'echarts/charts';
import {
TitleComponent,
TooltipComponent,
GridComponent,
// 数据集组件
DatasetComponent,
LegendComponent,
// 内置数据转换器组件 (filter, sort)
TransformComponent
} from 'echarts/components';
import { LabelLayout, UniversalTransition } from 'echarts/features';
import { CanvasRenderer } from 'echarts/renderers';
import { IChartProps } from './IChart';
// 注册必须的组件
echarts.use([
TitleComponent,
TooltipComponent,
GridComponent,
DatasetComponent,
TransformComponent,
BarChart,
LegendComponent,
PieChart,
LineChart,
LabelLayout,
UniversalTransition,
CanvasRenderer
]);
const bindEvents: (instance: echarts.ECharts, events: IChartProps['onEvents']) => void = (instance, events) => {
for (const eventName in events) {
if (Object.prototype.hasOwnProperty.call(events, eventName)) {
const func = events[eventName];
instance.on(eventName, (param) => {
func(param, instance);
});
}
}
};
const Chart: React.FC = (props) => {
const option = props.option;
const loading = props.loading;
const onEvents = props.onEvents;
const onChartReady = props.onChartReady;
const style = props.style;
const theme = props.theme;
const opts = props.opts;
const tableSelectRef = useRef();
const getEchartsInstance: () => echarts.ECharts = () => {
return echarts.getInstanceByDom(tableSelectRef.current!)!;
};
const dispose: () => void = () => {
if (tableSelectRef.current) {
echarts.dispose(tableSelectRef.current);
}
};
const newChart: () => Promise = useCallback(async () => {
return new Promise((resolve, reject) => {
try {
const myChart = echarts.init(tableSelectRef.current!, theme, opts);
myChart.on('finished', () => {
resolve();
});
}
catch (error) {
reject(error);
}
});
}, [opts, theme]);
useEffect(() => {
dispose();
newChart().then(() => {
// 'finished'
const myChart = getEchartsInstance();
bindEvents(myChart, onEvents);
onChartReady?.(myChart);
myChart.clear();
myChart.setOption(option, true);
const erd = elementResizeDetectorMaker();
if (tableSelectRef.current) {
erd.listenTo(tableSelectRef.current, () => {
// 父元素大小resize
myChart.resize({
width: 'auto',
height: 'auto',
});
});
}
}).catch(err => {
console.log(err);
dispose();
});
return () => {
dispose();
};
//option改变不进行重渲染
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [theme, opts, newChart, onEvents, onChartReady]);
useEffect(() => { // option 改变
getEchartsInstance().clear();
getEchartsInstance().setOption(option, true);
}, [option]);
useEffect(() => { // loading 改变
if (loading) {
getEchartsInstance().showLoading();
}
else {
getEchartsInstance().hideLoading();
}
}, [loading]);
return (
{
tableSelectRef.current = node!;
}}
>
);
};
export default Chart;
第一个useEffect
是创建图表的实例的init
完成后(finished),才加入配置项,并执行bindEvents
绑定对应的常用官方事件,最后在useEffect
的return
中及时销毁当前图表。
注意第一个useEffect
最后的依赖数组中有加上了// eslint-disable-next-line react-hooks/exhaustive-deps
, 表明故意忽略了option
变动的eslint
提示,因为这里是第一次的图表实例初始化,并不需要每次上层的option变动都要重新执行,所以option变动重新在第二个useEffect
中再次setOption
就行。
使用例子:
传入option
配置项,当后续option
中再次变动时触发Chart组件重新更新。
CostRateRatio.tsx
import React, { useState, useMemo, useCallback, useEffect } from 'react';
import { Card } from 'antd';
import Chart from '@/basic/Chart';
import { IECOption } from '@/basic/Chart/IChart';
import * as api from '@/api';
interface IProps {
queryParams: any;
}
const CostRateRatio: React.FC = props => {
const [data, setData] = useState({
'current': []
});
const [loading, setLoading] = useState(false);
const fetchLineChart = useCallback(async () => {
try {
setLoading(true);
const res = await api.getLineChart(props.queryParams);
setData(res.data);
}
catch (error) {
console.error(error);
}
finally {
setLoading(false);
}
}, [props.queryParams]);
useEffect(() => {
fetchLineChart().catch(console.error);
}, [fetchLineChart]);
const option = useMemo(() => {
return {
title: { text: '折线图' },
tooltip: { trigger: 'axis' },
xAxis: {
type: 'category',
axisPointer: {
show: true,
}
},
legend: {
type: 'scroll',
bottom: 0
},
yAxis: {
type: 'value'
},
dataset: [{
dimensions: ['abscissa', 'tariff', 'advertisingCost', 'storageCost', 'refund'],
source: data.current
},
{
dimensions: ['abscissa', 'tariff', 'advertisingCost', 'storageCost', 'refund'],
source: data.contrastive
}],
series: [
{
name: '推广费',
type: 'line',
},
{
name: 'test',
type: 'line',
},
{
name: 'abc费',
type: 'line',
},
{
name: '退货费',
type: 'line',
},
]
};
}, [data]);
return (
);
};
export default CostRateRatio;
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
1. 实验数据 (1) 训练集 训练集包含30000条商品评论,存放于文件’review_train.csv’中。每一行代表一条商品评论,第一列是评论的分值(label),表示该顾客对于当前商品的打分,从1分到5分。第二列是评论的标题, 第三列是评论的具体内…