-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update component click event (#5440)
- Loading branch information
1 parent
67ee516
commit 01ab11a
Showing
5 changed files
with
159 additions
and
9 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
__tests__/integration/api-chart-on-component-click.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import { chartOnComponentClick as render } from '../plots/api/chart-on-component-click'; | ||
import { createDOMGCanvas } from './utils/createDOMGCanvas'; | ||
import { dispatchFirstShapeEvent, createPromise } from './utils/event'; | ||
import './utils/useSnapshotMatchers'; | ||
import { ChartEvent } from '../../src'; | ||
|
||
describe('chart.on', () => { | ||
const canvas = createDOMGCanvas(640, 480); | ||
const { finished, chart } = render({ canvas }); | ||
|
||
chart.off(); | ||
|
||
it('chart.on("component:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`component:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'component', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("legend-category:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`legend-category:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'legend-category', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("legend-category-item-marker:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`legend-category-item-marker:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'legend-category-item-marker', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("legend-category-item-label:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`legend-category-item-label:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'legend-category-item-label', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("grid-line:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`grid-line:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'grid-line', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("axis-tick-item:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`axis-tick-item:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'axis-tick-item', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
it('chart.on("axis-label-item:click", callback) should emit events', async () => { | ||
await finished; | ||
const [fired, resolve] = createPromise(); | ||
chart.on(`axis-label-item:${ChartEvent.CLICK}`, resolve); | ||
dispatchFirstShapeEvent(canvas, 'axis-label-item', 'click', { detail: 1 }); | ||
await fired; | ||
}); | ||
|
||
afterAll(() => { | ||
canvas?.destroy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { Chart } from '../../../src'; | ||
|
||
const componentNames = [ | ||
// legend group | ||
'legend-category', | ||
// legend item marker | ||
'legend-category-item-marker', | ||
// legend item label | ||
'legend-category-item-label', | ||
// axis | ||
'grid-line', | ||
// tick | ||
'axis-tick-item', | ||
// axis label | ||
'axis-label-item' | ||
] | ||
|
||
export function chartOnComponentClick(context) { | ||
const { container, canvas } = context; | ||
|
||
const chart = new Chart({ theme: 'classic', container, canvas }); | ||
|
||
chart | ||
.interval() | ||
.data([ | ||
{ month: 'Jan.', profit: 387264, start: 0, end: 387264 }, | ||
{ month: 'Feb.', profit: 772096, start: 387264, end: 1159360 }, | ||
{ month: 'Mar.', profit: 638075, start: 1159360, end: 1797435 }, | ||
{ month: 'Apr.', profit: -211386, start: 1797435, end: 1586049 }, | ||
{ month: 'May', profit: -138135, start: 1586049, end: 1447914 }, | ||
{ month: 'Jun', profit: -267238, start: 1447914, end: 1180676 }, | ||
{ month: 'Jul.', profit: 431406, start: 1180676, end: 1612082 }, | ||
{ month: 'Aug.', profit: 363018, start: 1612082, end: 1975100 }, | ||
{ month: 'Sep.', profit: -224638, start: 1975100, end: 1750462 }, | ||
{ month: 'Oct.', profit: -299867, start: 1750462, end: 1450595 }, | ||
{ month: 'Nov.', profit: 607365, start: 1450595, end: 2057960 }, | ||
{ month: 'Dec.', profit: 1106986, start: 2057960, end: 3164946 }, | ||
{ month: 'Total', start: 0, end: 3164946 }, | ||
]) | ||
.encode('x', 'month') | ||
.encode('y', ['end', 'start']) | ||
.encode('color', (d) => | ||
d.month === 'Total' ? 'Total' : d.profit > 0 ? 'Increase' : 'Decrease', | ||
) | ||
.axis('y', { labelFormatter: '~s' }) | ||
.tooltip(['start', 'end']); | ||
|
||
chart.on('component:click', () => console.log('click component')); | ||
|
||
componentNames.forEach(name => { | ||
chart.on(`${name}:click`, () => console.log(`click ${name}`)); | ||
}) | ||
|
||
const finished = chart.render(); | ||
|
||
return { chart, finished }; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters