-
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.
feat(interaction): emit element highlight (#5117)
- Loading branch information
Showing
11 changed files
with
230 additions
and
15 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
__tests__/integration/api-chart-emit-element-highlight.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,75 @@ | ||
import { chartEmitElementHighlight as render } from '../plots/api/chart-emit-element-highlight'; | ||
import { createNodeGCanvas } from './utils/createNodeGCanvas'; | ||
import { sleep } from './utils/sleep'; | ||
import { kebabCase } from './utils/kebabCase'; | ||
import { createPromise, dispatchFirstElementEvent } from './utils/event'; | ||
import './utils/useSnapshotMatchers'; | ||
import './utils/useCustomFetch'; | ||
|
||
describe('chart.emit', () => { | ||
const dir = `${__dirname}/snapshots/api/${kebabCase(render.name)}`; | ||
const canvas = createNodeGCanvas(800, 500); | ||
|
||
it('chart.on("element:highlight") should receive expected data.', async () => { | ||
const { chart, finished } = render({ | ||
canvas, | ||
container: document.createElement('div'), | ||
}); | ||
await finished; | ||
await sleep(20); | ||
|
||
// chart.emit('element:highlight', options) should trigger slider. | ||
chart.emit('element:highlight', { | ||
data: { data: { population: 5038433 } }, | ||
}); | ||
await sleep(20); | ||
await expect(canvas).toMatchCanvasSnapshot(dir, 'step0'); | ||
|
||
// chart.emit('element:unhighlight', options) should reset. | ||
chart.emit('element:unhighlight', {}); | ||
await sleep(20); | ||
await expect(canvas).toMatchCanvasSnapshot(dir, 'step1'); | ||
|
||
chart.off(); | ||
|
||
// chart.on("element:highlight") should receive expected data. | ||
const [highlight, resolveHighlight] = createPromise(); | ||
chart.on('element:highlight', (event) => { | ||
if (!event.nativeEvent) return; | ||
expect(event.data.data).toEqual({ | ||
age: '<10', | ||
population: 5038433, | ||
state: 'CA', | ||
}); | ||
expect(event.data.group).toEqual([ | ||
{ age: '<10', population: 5038433, state: 'CA' }, | ||
{ age: '10-19', population: 5170341, state: 'CA' }, | ||
{ age: '20-29', population: 5809455, state: 'CA' }, | ||
{ age: '30-39', population: 5354112, state: 'CA' }, | ||
{ age: '40-49', population: 5179258, state: 'CA' }, | ||
{ age: '50-59', population: 5042094, state: 'CA' }, | ||
{ age: '60-69', population: 3737461, state: 'CA' }, | ||
{ age: '70-79', population: 2011678, state: 'CA' }, | ||
{ age: '≥80', population: 1311374, state: 'CA' }, | ||
]); | ||
resolveHighlight(); | ||
}); | ||
dispatchFirstElementEvent(canvas, 'pointerover'); | ||
await sleep(20); | ||
await highlight; | ||
|
||
// chart.on("element:unhighlight") should be called. | ||
const [unhighlight, resolveUnhighlight] = createPromise(); | ||
chart.on('element:unhighlight', (event) => { | ||
if (!event.nativeEvent) return; | ||
resolveUnhighlight(); | ||
}); | ||
dispatchFirstElementEvent(canvas, 'pointerout'); | ||
await sleep(20); | ||
await unhighlight; | ||
}); | ||
|
||
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
Binary file added
BIN
+13.2 KB
__tests__/integration/snapshots/api/chart-emit-element-highlight/step0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13 KB
__tests__/integration/snapshots/api/chart-emit-element-highlight/step1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,74 @@ | ||
import { Chart } from '../../../src'; | ||
|
||
export function chartEmitElementHighlight(context) { | ||
const { container, canvas } = context; | ||
|
||
// button | ||
const button = document.createElement('button'); | ||
button.innerText = 'Highlight'; | ||
container.appendChild(button); | ||
|
||
const button1 = document.createElement('button'); | ||
button1.innerText = 'reset'; | ||
container.appendChild(button1); | ||
|
||
// wrapperDiv | ||
const wrapperDiv = document.createElement('div'); | ||
container.appendChild(wrapperDiv); | ||
|
||
const chart = new Chart({ | ||
theme: 'classic', | ||
container: wrapperDiv, | ||
padding: 'auto', | ||
canvas, | ||
}); | ||
|
||
chart.options({ | ||
type: 'interval', | ||
transform: [ | ||
{ type: 'sortX', by: 'y', reverse: true, reducer: 'sum', slice: 6 }, | ||
{ type: 'dodgeX' }, | ||
], | ||
data: { | ||
type: 'fetch', | ||
value: 'data/stateages.csv', | ||
}, | ||
encode: { | ||
x: 'state', | ||
y: 'population', | ||
color: 'age', | ||
}, | ||
state: { | ||
active: { fill: 'red' }, | ||
inactive: { opacity: 0.6 }, | ||
}, | ||
interaction: { | ||
elementHighlightByX: { delay: 0 }, | ||
tooltip: false, | ||
}, | ||
}); | ||
|
||
const finished = chart.render(); | ||
|
||
chart.on('element:highlight', (event) => { | ||
const { data, nativeEvent } = event; | ||
if (nativeEvent) console.log('element:highlight', data); | ||
}); | ||
|
||
chart.on('element:unhighlight', (event) => { | ||
const { nativeEvent } = event; | ||
if (nativeEvent) console.log('reset'); | ||
}); | ||
|
||
button.onclick = () => { | ||
chart.emit('element:highlight', { | ||
data: { data: { population: 5038433 } }, | ||
}); | ||
}; | ||
|
||
button1.onclick = () => { | ||
chart.emit('element:unhighlight', {}); | ||
}; | ||
|
||
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
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