mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(chart): Display better hover text for country map charts (#36323)
Co-authored-by: askinner1 <144823527+askinner1@users.noreply.github.com>
Co-authored-by: codeant-ai-for-open-source[bot] <244253245+codeant-ai-for-open-source[bot]@users.noreply.github.com>
(cherry picked from commit 67cf287c03)
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
.superset-legacy-chart-country-map svg {
|
||||
background-color: #feffff;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .background {
|
||||
fill: rgba(255, 255, 255, 0);
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .map-layer {
|
||||
fill: #fff;
|
||||
stroke: #aaa;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .effect-layer {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .text-layer {
|
||||
color: #333333;
|
||||
text-anchor: middle;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map text.result-text {
|
||||
font-weight: 300;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map text.big-text {
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map path.region {
|
||||
cursor: pointer;
|
||||
stroke: #eee;
|
||||
}
|
||||
@@ -90,15 +90,7 @@ function CountryMap(element, props) {
|
||||
.attr('height', height);
|
||||
const g = svg.append('g');
|
||||
const mapLayer = g.append('g').classed('map-layer', true);
|
||||
const textLayer = g
|
||||
.append('g')
|
||||
.classed('text-layer', true)
|
||||
.attr('transform', `translate(${width / 2}, 45)`);
|
||||
const bigText = textLayer.append('text').classed('big-text', true);
|
||||
const resultText = textLayer
|
||||
.append('text')
|
||||
.classed('result-text', true)
|
||||
.attr('dy', '1em');
|
||||
const hoverPopup = div.append('div').attr('class', 'hover-popup');
|
||||
|
||||
let centered;
|
||||
|
||||
@@ -128,45 +120,18 @@ function CountryMap(element, props) {
|
||||
'transform',
|
||||
`translate(${halfWidth},${halfHeight})scale(${k})translate(${-x},${-y})`,
|
||||
);
|
||||
textLayer
|
||||
.style('opacity', 0)
|
||||
.attr(
|
||||
'transform',
|
||||
`translate(0,0)translate(${x},${hasCenter ? y - 5 : 45})`,
|
||||
)
|
||||
.transition()
|
||||
.duration(750)
|
||||
.style('opacity', 1);
|
||||
bigText
|
||||
.transition()
|
||||
.duration(750)
|
||||
.style('font-size', hasCenter ? 6 : 16);
|
||||
resultText
|
||||
.transition()
|
||||
.duration(750)
|
||||
.style('font-size', hasCenter ? 16 : 24);
|
||||
};
|
||||
|
||||
backgroundRect.on('click', clicked);
|
||||
|
||||
const selectAndDisplayNameOfRegion = function selectAndDisplayNameOfRegion(
|
||||
feature,
|
||||
) {
|
||||
let name = '';
|
||||
const getNameOfRegion = function getNameOfRegion(feature) {
|
||||
if (feature && feature.properties) {
|
||||
if (feature.properties.ID_2) {
|
||||
name = feature.properties.NAME_2;
|
||||
} else {
|
||||
name = feature.properties.NAME_1;
|
||||
return feature.properties.NAME_2;
|
||||
}
|
||||
return feature.properties.NAME_1;
|
||||
}
|
||||
bigText.text(name);
|
||||
};
|
||||
|
||||
const updateMetrics = function updateMetrics(region) {
|
||||
if (region.length > 0) {
|
||||
resultText.text(format(region[0].metric));
|
||||
}
|
||||
return '';
|
||||
};
|
||||
|
||||
const mouseenter = function mouseenter(d) {
|
||||
@@ -176,17 +141,31 @@ function CountryMap(element, props) {
|
||||
c = d3.rgb(c).darker().toString();
|
||||
}
|
||||
d3.select(this).style('fill', c);
|
||||
selectAndDisplayNameOfRegion(d);
|
||||
// Display information popup
|
||||
const result = data.filter(
|
||||
region => region.country_id === d.properties.ISO,
|
||||
);
|
||||
updateMetrics(result);
|
||||
|
||||
const position = d3.mouse(svg.node());
|
||||
hoverPopup
|
||||
.style('display', 'block')
|
||||
.style('top', `${position[1] + 30}px`)
|
||||
.style('left', `${position[0]}px`)
|
||||
.html(
|
||||
`<div><strong>${getNameOfRegion(d)}</strong><br>${result.length > 0 ? format(result[0].metric) : ''}</div>`,
|
||||
);
|
||||
};
|
||||
|
||||
const mousemove = function mousemove() {
|
||||
const position = d3.mouse(svg.node());
|
||||
hoverPopup
|
||||
.style('top', `${position[1] + 30}px`)
|
||||
.style('left', `${position[0]}px`);
|
||||
};
|
||||
|
||||
const mouseout = function mouseout() {
|
||||
d3.select(this).style('fill', colorFn);
|
||||
bigText.text('');
|
||||
resultText.text('');
|
||||
hoverPopup.style('display', 'none');
|
||||
};
|
||||
|
||||
function drawMap(mapData) {
|
||||
@@ -225,6 +204,7 @@ function CountryMap(element, props) {
|
||||
.attr('vector-effect', 'non-scaling-stroke')
|
||||
.style('fill', colorFn)
|
||||
.on('mouseenter', mouseenter)
|
||||
.on('mousemove', mousemove)
|
||||
.on('mouseout', mouseout)
|
||||
.on('click', clicked);
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ import Component from './CountryMap';
|
||||
|
||||
const ReactComponent = reactify(Component);
|
||||
|
||||
const CountryMap = ({ className, ...otherProps }) => (
|
||||
const CountryMap = ({ className = '', ...otherProps }) => (
|
||||
<div className={className}>
|
||||
<ReactComponent {...otherProps} />
|
||||
</div>
|
||||
@@ -42,33 +42,29 @@ export default styled(CountryMap)`
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .hover-popup {
|
||||
position: absolute;
|
||||
color: ${theme.colorTextSecondary};
|
||||
display: none;
|
||||
padding: 4px;
|
||||
border-radius: 1px;
|
||||
background-color: ${theme.colorBgElevated};
|
||||
box-shadow: ${theme.boxShadow};
|
||||
font-size: 12px;
|
||||
border: 1px solid ${theme.colorBorder};
|
||||
z-index: 10001;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .map-layer {
|
||||
fill: ${theme.colorBgContainer};
|
||||
stroke: ${theme.colorBorderSecondary};
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .effect-layer {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map .text-layer {
|
||||
color: ${theme.colorText};
|
||||
text-anchor: middle;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map text.result-text {
|
||||
fill: ${theme.colorText};
|
||||
font-weight: ${theme.fontWeightLight};
|
||||
font-size: ${theme.fontSizeXL}px;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map text.big-text {
|
||||
fill: ${theme.colorText};
|
||||
font-weight: ${theme.fontWeightStrong};
|
||||
font-size: ${theme.fontSizeLG}px;
|
||||
}
|
||||
|
||||
.superset-legacy-chart-country-map path.region {
|
||||
cursor: pointer;
|
||||
stroke: ${theme.colorSplit};
|
||||
|
||||
Reference in New Issue
Block a user