fix: Right click on country map with code filter (#22081)

This commit is contained in:
Michael S. Molina 2022-11-14 08:52:31 -05:00 committed by GitHub
parent ed1f50eab6
commit 824dc7188b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -409,14 +409,14 @@ describe('Drill to detail modal', () => {
cy.get("[data-test-viz-type='world_map'] svg").then($canvas => {
cy.wrap($canvas).scrollIntoView().rightclick(70, 150);
openModalFromChartContext('Drill to detail by United States');
cy.getBySel('filter-val').should('contain', 'United States');
openModalFromChartContext('Drill to detail by USA');
cy.getBySel('filter-val').should('contain', 'USA');
closeModal();
});
cy.get("[data-test-viz-type='world_map'] svg").then($canvas => {
cy.wrap($canvas).scrollIntoView().rightclick(200, 140);
openModalFromChartContext('Drill to detail by Slovakia');
cy.getBySel('filter-val').should('contain', 'Slovakia');
openModalFromChartContext('Drill to detail by SVK');
cy.getBySel('filter-val').should('contain', 'SVK');
});
});
});

View File

@ -52,6 +52,7 @@ const formatter = getNumberFormatter();
function WorldMap(element, props) {
const {
countryFieldtype,
entity,
data,
width,
@ -111,7 +112,7 @@ function WorldMap(element, props) {
const pointerEvent = d3.event;
pointerEvent.preventDefault();
const key = source.id || source.country;
const val = mapData[key]?.name;
const val = countryFieldtype === 'name' ? mapData[key]?.name : key;
if (val) {
const filters = [
{

View File

@ -23,6 +23,7 @@ export default function transformProps(chartProps) {
chartProps;
const { onContextMenu } = hooks;
const {
countryFieldtype,
entity,
maxBubbleSize,
showBubbles,
@ -35,6 +36,7 @@ export default function transformProps(chartProps) {
const { r, g, b } = colorPicker;
return {
countryFieldtype,
entity,
data: queriesData[0].data,
width,