mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: Download as image of dashboard chart did not work (#15897)
This commit is contained in:
committed by
GitHub
parent
f6115a73d4
commit
7aeb15031d
@@ -64,15 +64,23 @@ export default function downloadAsImage(
|
||||
);
|
||||
}
|
||||
|
||||
// Mapbox controls are loaded from different origin, causing CORS error
|
||||
// See https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL#exceptions
|
||||
const filter = (node: Element) => {
|
||||
if (typeof node.className === 'string') {
|
||||
return (
|
||||
node.className !== 'mapboxgl-control-container' &&
|
||||
!node.className.includes('ant-dropdown')
|
||||
);
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
||||
return domToImage
|
||||
.toJpeg(elementToPrint, {
|
||||
quality: 0.95,
|
||||
bgcolor: GRAY_BACKGROUND_COLOR,
|
||||
// Mapbox controls are loaded from different origin, causing CORS error
|
||||
// See https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL#exceptions
|
||||
filter: (node: Element) =>
|
||||
node.className !== 'mapboxgl-control-container',
|
||||
...domToImageOptions,
|
||||
filter,
|
||||
})
|
||||
.then(dataUrl => {
|
||||
const link = document.createElement('a');
|
||||
|
||||
Reference in New Issue
Block a user