Skip to content

Commit 45613cf

Browse files
committed
LF-4699 Tweaks
* Resolve Recharts warning by specifying height correctly * Remove unnecessary wrapper
1 parent 7c8781a commit 45613cf

File tree

3 files changed

+73
-79
lines changed

3 files changed

+73
-79
lines changed

packages/webapp/src/components/Charts/LineChart.tsx

+64-66
Original file line numberDiff line numberDiff line change
@@ -149,75 +149,73 @@ function LineChart(props: LineChartProps) {
149149
return (
150150
<div className={styles.wrapper}>
151151
{title && <div className={styles.title}>{title}</div>}
152-
<div className={styles.chartWrapper}>
153-
<ResponsiveContainer width="100%" height="100%">
154-
<RechartsLineChart width={500} height={230} data={data} margin={{ top: 12 }}>
155-
<CartesianGrid stroke="#E9F3FF" vertical={false} />
156-
<XAxis
157-
dataKey={xAxisDataKey}
158-
domain={['auto', 'auto']}
159-
padding={{ left: xAxisSidePadding, right: xAxisSidePadding }}
160-
axisLine={false}
161-
tick={{ ...axisLabelStyles, transform: 'translate(0, 8)' }}
162-
tickSize={3}
163-
tickMargin={6}
164-
tickLine={{ transform: 'translate(0, 8)' }}
165-
ticks={ticks}
166-
{...(isTimeScaleProps(props)
167-
? {
168-
type: 'number',
169-
scale: 'time',
170-
tickFormatter: (time) => getLocalShortDate(time, props.language, t),
171-
}
172-
: {})}
152+
<ResponsiveContainer width="100%" height={showLegend ? 280 : 230}>
153+
<RechartsLineChart data={data} margin={{ top: 12 }}>
154+
<CartesianGrid stroke="#E9F3FF" vertical={false} />
155+
<XAxis
156+
dataKey={xAxisDataKey}
157+
domain={['auto', 'auto']}
158+
padding={{ left: xAxisSidePadding, right: xAxisSidePadding }}
159+
axisLine={false}
160+
tick={{ ...axisLabelStyles, transform: 'translate(0, 8)' }}
161+
tickSize={3}
162+
tickMargin={6}
163+
tickLine={{ transform: 'translate(0, 8)' }}
164+
ticks={ticks}
165+
{...(isTimeScaleProps(props)
166+
? {
167+
type: 'number',
168+
scale: 'time',
169+
tickFormatter: (time) => getLocalShortDate(time, props.language, t),
170+
}
171+
: {})}
172+
/>
173+
<YAxis
174+
yAxisId="left"
175+
tickLine={false}
176+
tick={axisLabelStyles}
177+
axisLine={false}
178+
// Default width is 60, which causes a gap
179+
// https://github.com/recharts/recharts/issues/2027
180+
width={40}
181+
/>
182+
{showLegend && (
183+
<Legend
184+
iconType="circle"
185+
onClick={onLegendClick}
186+
wrapperStyle={{
187+
paddingTop: 16,
188+
paddingBottom: 16,
189+
fontSize: 12,
190+
fontWeight: 600,
191+
}}
173192
/>
174-
<YAxis
175-
yAxisId="left"
176-
tickLine={false}
177-
tick={axisLabelStyles}
178-
axisLine={false}
179-
// Default width is 60, which causes a gap
180-
// https://github.com/recharts/recharts/issues/2027
181-
width={40}
182-
/>
183-
{showLegend && (
184-
<Legend
185-
iconType="circle"
186-
onClick={onLegendClick}
187-
wrapperStyle={{
188-
paddingTop: 16,
189-
paddingBottom: 16,
190-
fontSize: 12,
191-
fontWeight: 600,
193+
)}
194+
<Tooltip content={CustomTooltip} cursor={false} />
195+
{lineConfig.map(({ id, color }) => {
196+
return (
197+
<Line
198+
key={id}
199+
yAxisId="left"
200+
type="linear"
201+
dataKey={id}
202+
stroke={color}
203+
strokeWidth={3}
204+
hide={hiddenLines.includes(id)}
205+
dot={data.length > 12 ? false : { r: 4 }}
206+
activeDot={{
207+
r: 6,
208+
fill: activeLine === id ? color : 'transparent',
209+
stroke: activeLine === id ? color : 'transparent',
210+
// https://github.com/recharts/recharts/issues/2678
211+
onMouseOver: () => onLineMouseOver(id),
212+
onMouseLeave: onLineMouseLeave,
192213
}}
193214
/>
194-
)}
195-
<Tooltip content={CustomTooltip} cursor={false} />
196-
{lineConfig.map(({ id, color }) => {
197-
return (
198-
<Line
199-
key={id}
200-
yAxisId="left"
201-
type="linear"
202-
dataKey={id}
203-
stroke={color}
204-
strokeWidth={3}
205-
hide={hiddenLines.includes(id)}
206-
dot={data.length > 12 ? false : { r: 4 }}
207-
activeDot={{
208-
r: 6,
209-
fill: activeLine === id ? color : 'transparent',
210-
stroke: activeLine === id ? color : 'transparent',
211-
// https://github.com/recharts/recharts/issues/2678
212-
onMouseOver: () => onLineMouseOver(id),
213-
onMouseLeave: onLineMouseLeave,
214-
}}
215-
/>
216-
);
217-
})}
218-
</RechartsLineChart>
219-
</ResponsiveContainer>
220-
</div>
215+
);
216+
})}
217+
</RechartsLineChart>
218+
</ResponsiveContainer>
221219
</div>
222220
);
223221
}

packages/webapp/src/components/Charts/styles.module.scss

+3-7
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,8 @@
2323
font-size: 14px;
2424
line-height: 14px;
2525
letter-spacing: 0px;
26-
color: var(--Colors-Neutral-Neutral-900, #2b303a);
27-
margin-bottom: 8px;
28-
}
29-
30-
.chartWrapper {
31-
height: 230px;
26+
color: var(--Colors-Neutral-Neutral-900);
27+
margin-bottom: 16px;
3228
}
3329

3430
// Fix storybook styling issue
@@ -41,7 +37,7 @@
4137
.tooltip {
4238
position: relative;
4339
border-radius: 4px;
44-
border: 2px solid var(--tooltipColor);
40+
border: 1px solid var(--tooltipColor);
4541
background-color: white; /* Prevents chart lines from being visible through the tooltip */
4642
color: var(--tooltipColor);
4743
box-shadow: 2px 2px 2px 0px #00000026;

packages/webapp/src/components/Charts/utils.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ export const getTicks = (
107107
return getDailyTicks(startDateObj, lastDate);
108108
};
109109

110-
const convertToMilliseconds = (unixTimestamp: number): number => {
111-
return unixTimestamp * 1000;
110+
const convertToMilliseconds = (unixTime: number): number => {
111+
return unixTime * 1000;
112112
};
113113

114114
export const getLocalShortDate = (unixTime: number, language: string, t: TFunction): string => {
@@ -127,13 +127,13 @@ const getTime = (unixTime: number, language: string): string => {
127127
};
128128

129129
export const getDateTime = (
130-
dateTime: number,
130+
unixTime: number,
131131
language: string,
132132
truncPeriod: TruncPeriod,
133133
t: TFunction,
134134
) => {
135-
const date = getLocalShortDate(dateTime, language, t);
136-
const time = truncPeriod === 'hour' ? ` ${getTime(dateTime, language)}` : '';
135+
let dateTime = getLocalShortDate(unixTime, language, t);
136+
dateTime += truncPeriod === 'hour' ? ` - ${getTime(unixTime, language)}` : '';
137137

138-
return `${date}${time}`;
138+
return dateTime;
139139
};

0 commit comments

Comments
 (0)