Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import React from 'react'
import { ScaleBand } from 'd3-scale'
import { IDataload, TimeStep } from 'services/dataConsumptionContracts'
import { compareStepDate } from 'services/dateChartService'
import { DateTime } from 'luxon'
interface TextTypeProps {
index: number
dataload: IDataload
timeStep: TimeStep
width: number
selectedDate: DateTime
}
function TextAxis(props: TextTypeProps) {
const { index, dataload, timeStep, width, selectedDate } = props
const isSelectedDate = compareStepDate(timeStep, selectedDate, dataload.date)
const style = isSelectedDate
? 'tick-text tick-text-selected chart-ticks-x-text'
: 'tick-text chart-ticks-x-text'
switch (timeStep) {
case TimeStep.YEAR:
return (
<text y="10" dy="0.71em" transform={`translate(${width})`}>
<tspan className={style} textAnchor="middle">
{dataload.date.toLocaleString({ year: 'numeric' })}
</tspan>
</text>
)
case TimeStep.MONTH:
return (
<text y="10" dy="0.71em" transform={`translate(${width})`}>
<tspan className={style} textAnchor="middle">
{dataload.date.toLocaleString({ month: 'narrow' })}
</tspan>
</text>
)
case TimeStep.DAY:
return (
<text y="10" dy="0.71em" transform={`translate(${width})`}>
<tspan className={style} x="0" textAnchor="middle">
{dataload.date.toLocaleString({ weekday: 'narrow' })}
</tspan>
<tspan className={style} x="0" dy="1.2em" textAnchor="middle">
{dataload.date.toLocaleString({ day: '2-digit' })}
</tspan>
</text>
)
case TimeStep.HOUR:
return (index + 1) % 2 ? (
<text y="10" dy="0.71em" transform={`translate(${width})`}>
<tspan className={style} textAnchor="middle">
{dataload.date.hour}
</tspan>
</text>
) : null
case TimeStep.HALF_AN_HOUR:
return !(index % 4) ? (
<text x={width} y="10" dy="0.71em">
<tspan className={style} textAnchor="middle">
{dataload.date.hour}
</tspan>
</text>
) : null
default:
return (
<text x={width} y="10" dy="0.71em">
<tspan className={style} textAnchor="middle">
{'-'}
</tspan>
</text>
)
}
}
interface AxisBottomProps {
data: IDataload[]
timeStep: TimeStep
xScale: ScaleBand<string>
height: number
marginLeft: number
marginBottom: number
selectedDate: DateTime
}
const AxisBottom = (props: AxisBottomProps) => {
const {
data,
timeStep,
xScale,
height,
marginLeft,
marginBottom,
selectedDate,
} = props
const dashArray = `${height / 30} ${height / 30}`
return (
<g
className="axis x"
transform={`translate(${marginLeft}, ${height - marginBottom})`}
>
{data.map((d, index) => (
<g
key={index}
className="tick"
opacity="1"
transform={`translate(${xScale(
d.date.toLocaleString(DateTime.DATETIME_SHORT)
)}, 0)`}
>
<TextAxis
index={index}
dataload={d}
timeStep={timeStep}
width={xScale.bandwidth() / 2}
selectedDate={selectedDate}
/>
{compareStepDate(timeStep, DateTime.local(), d.date) ? (
<line
stroke="white"
strokeLinecap="round"
strokeDasharray={dashArray}
x1={xScale.bandwidth() / 2}
x2={xScale.bandwidth() / 2}
y1="0"
y2={-(height - marginBottom)}
></line>
) : null}
</g>
))}
</g>
)
}
export default AxisBottom