![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@awey/react-chart-container
Advanced tools
A chart container component that can be used to wrap various charts. It will handle 'init ', 'update', and 'resize' of chart appropriatly.
React Chart Container is a React component that can wrap chart elements and handle it's init
, update
and resize
event properly.
If you render a chart on an element like div with some library like ECharts, you'll have to consider all the concepts bellow:
it's really annoying to do all the things.
React Chart Container can help you with all the stuff above.
A typical example is as bellow:
import { FC, useEffect, useState } from 'react'
import * as echarts from 'echarts/core'
import { LineChart } from 'echarts/charts'
import { CanvasRenderer } from 'echarts/renderers'
import { GridComponent } from 'echarts/components'
import { TimelineData, getMockData } from './mock-data'
import { ReactChartContainer, useReactChartContainer } from '../react-chart-container'
import k from './k'
echarts.use([LineChart, CanvasRenderer, GridComponent])
const Spin: FC = () => <div>Loading...</div>
function transformData (data: TimelineData) {
return data.values.map(line => {
return {
type: 'line',
name: line.name,
id: line.alias + ':::' + line.name,
data: line.data.map((point, index) => {
if (!data.timestamps[index]) return null
return {
name: data.timestamps[index],
value: [data.timestamps[index], point]
}
})
}
})
}
function App () {
const [mockData, setMockData] = useState(getMockData())
const { elRef, onReady, onResize } = useReactChartContainer<echarts.ECharts, TimelineData, string>({
init: (el, d, _s) => {
// console.log('settings in init function:', s)
const instance = echarts.init(el)
instance.setOption({
xAxis: {
type: 'time'
},
yAxis: {
type: 'value',
axisLabel: { formatter: (v: number) => k(v) }
},
grid: {
show: true,
left: 56,
bottom: 24,
right: 8,
top: 28
},
series: transformData(d)
}, { lazyUpdate: true })
return instance
},
resize: (graphRef) => graphRef.current?.resize(),
update: (graphRef, d, _s) => {
// console.log('settings in update function:', s)
graphRef.current?.setOption({
series: transformData(d)
}, { lazyUpdate: true, replaceMerge: 'series' })
},
destroy: (graphRef, _el) => graphRef.current?.dispose()
}, mockData as TimelineData, 'hello')
useEffect(() => {
window.setInterval(() => {
setMockData(getMockData())
}, 3000)
}, [])
return (
<div >
<ReactChartContainer
onReady={onReady}
onResize={onResize}
spinIcon={<Spin />}
loading={false}>
<div ref={elRef} style={{ height: 400 }}></div>
</ReactChartContainer>
</div>
)
}
export default App
ReactChartContainer
prop | type | required/default | description |
---|---|---|---|
onReady | (size: Rect) => void | - | the callback of container ready |
onResize | (size: Rect) => void | - | the callback of container resizing |
loading | boolean | false | indecate loading status |
className | string | '' | class name |
useReactChartContainer
const useReactChartContainer: <
GraphType,
Data,
Settings = undefined
>(
chart: Chart<GraphType, Data, Settings>,
data: Data,
settings: Settings
) => {
elRef: MutableRefObject<null>;
graphRef: GraphRef<GraphType>;
onResize: () => void;
onReady: () => void;
}
interface Chart<GraphType, Data, Settings = undefined> {
init (element: HTMLDivElement, data: Data, settings: Settings): GraphType
resize (graphRef: GraphRef<GraphType>, data: Data, settings: Settings): void
update (graphRef: GraphRef<GraphType>, data: Data, settings: Settings): void
destroy (graphRef: GraphRef<GraphType>, element: HTMLDivElement): void
}
export type GraphRef<GraphType> = MutableRefObject<GraphType | null>
FAQs
A chart container component that can be used to wrap various charts. It will handle 'init ', 'update', and 'resize' of chart appropriatly.
The npm package @awey/react-chart-container receives a total of 13 weekly downloads. As such, @awey/react-chart-container popularity was classified as not popular.
We found that @awey/react-chart-container demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.