Skip to content

Commit 02967a0

Browse files
committed
refactor
1 parent 41550eb commit 02967a0

File tree

3 files changed

+40
-15
lines changed

3 files changed

+40
-15
lines changed

packages/charts/react-charting/src/components/DeclarativeChart/__snapshots__/DeclarativeChartRTL.test.tsx.snap

+5-2
Original file line numberDiff line numberDiff line change
@@ -4212,7 +4212,7 @@ exports[`DeclarativeChart Should render gaugechart in DeclarativeChart 1`] = `
42124212
class=
42134213

42144214
{
4215-
fill: #323130;
4215+
fill: #107c10;
42164216
font-size: 12px;
42174217
font-weight: 600;
42184218
}
@@ -24389,6 +24389,9 @@ exports[`DeclarativeChart Should render piechart in DeclarativeChart 1`] = `
2438924389
height: 100%;
2439024390
width: 100%;
2439124391
}
24392+
& [class^="arcLabel"] {
24393+
font-size: 20px;
24394+
}
2439224395
>
2439324396
<div
2439424397
class=
@@ -25056,7 +25059,7 @@ exports[`DeclarativeChart Should render sankeychart in DeclarativeChart 1`] = `
2505625059
display: flex;
2505725060
flex-direction: column;
2505825061
font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
25059-
font-size: 14px;
25062+
font-size: 10px;
2506025063
font-weight: 400;
2506125064
height: 100%;
2506225065
overflow: hidden;

packages/charts/react-charting/src/components/ResponsiveContainer/ResponsiveContainer.tsx

+16-11
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,23 @@ export const ResponsiveContainer: React.FC<IResponsiveContainerProps> = props =>
6969
}
7070
}
7171

72-
return React.cloneElement<IResponsiveChildProps>(props.children, {
73-
width: calculatedWidth,
74-
height: calculatedHeight,
75-
shouldResize: (calculatedWidth ?? 0) + (calculatedHeight ?? 0),
76-
styles: {
77-
root: {
78-
// https://stackoverflow.com/questions/8468066/child-inside-parent-with-min-height-100-not-inheriting-height
79-
// https://and-ha.com/en/coding-en/solving-responsive-coding-with-min-height/
80-
width: calculatedWidth,
81-
height: calculatedHeight,
72+
return React.Children.map(props.children, child => {
73+
return React.cloneElement<IResponsiveChildProps>(child, {
74+
width: calculatedWidth,
75+
height: calculatedHeight,
76+
shouldResize: (calculatedWidth ?? 0) + (calculatedHeight ?? 0),
77+
styles: {
78+
// Keep components styles
79+
...child.props.styles,
80+
root: {
81+
...child.props.styles?.root,
82+
// Ensure the child element fills the parent container
83+
// https://stackoverflow.com/questions/8468066/child-inside-parent-with-min-height-100-not-inheriting-height
84+
width: calculatedWidth,
85+
height: calculatedHeight,
86+
},
8287
},
83-
},
88+
});
8489
});
8590
}, [size, props.aspect, props.maxHeight, props.children]);
8691

packages/charts/react-charting/src/components/ResponsiveContainer/withResponsiveContainer.tsx

+19-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,26 @@ import { IResponsiveContainerProps } from './ResponsiveContainer.types';
1010
export function withResponsiveContainer<TProps extends Omit<IResponsiveContainerProps, 'children'>>(
1111
WrappedComponent: React.ComponentType<TProps>,
1212
) {
13-
const ComponentWithResponsiveContainer: React.FC<TProps> = ({ width, height, onResize, ...restProps }) => {
13+
const ComponentWithResponsiveContainer: React.FC<TProps> = ({
14+
aspect,
15+
width,
16+
height,
17+
minWidth,
18+
minHeight,
19+
maxHeight,
20+
onResize,
21+
...restProps
22+
}) => {
1423
return (
15-
<ResponsiveContainer width={width} height={height} onResize={onResize}>
24+
<ResponsiveContainer
25+
aspect={aspect}
26+
width={width}
27+
height={height}
28+
minWidth={minWidth}
29+
minHeight={minHeight}
30+
maxHeight={maxHeight}
31+
onResize={onResize}
32+
>
1633
<WrappedComponent {...(restProps as any)} />
1734
</ResponsiveContainer>
1835
);

0 commit comments

Comments
 (0)