@centreon/ui 24.4.1-sync-release-34022.0 → 24.4.1-test-code-coverage.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +48 -40
- package/src/ActionsList/ActionsList.styles.ts +40 -71
- package/src/Button/Icon/index.stories.tsx +1 -1
- package/src/Button/Icon/index.tsx +1 -1
- package/src/Dashboard/Dashboard.styles.ts +6 -5
- package/src/Dialog/Confirm/index.tsx +10 -2
- package/src/Dialog/UnsavedChanges/index.tsx +21 -20
- package/src/Dialog/UnsavedChanges/translatedLabels.ts +4 -6
- package/src/Dialog/index.tsx +8 -1
- package/src/Form/Inputs/CheckboxGroup.tsx +4 -1
- package/src/Form/Inputs/Text.tsx +3 -1
- package/src/Form/Inputs/models.ts +1 -0
- package/src/Graph/BarStack/BarStack.cypress.spec.tsx +139 -0
- package/src/Graph/BarStack/BarStack.stories.tsx +123 -0
- package/src/Graph/BarStack/BarStack.styles.ts +37 -0
- package/src/Graph/BarStack/BarStack.tsx +14 -0
- package/src/Graph/BarStack/ResponsiveBarStack.tsx +209 -0
- package/src/Graph/BarStack/index.ts +1 -0
- package/src/Graph/BarStack/models.ts +19 -0
- package/src/Graph/BarStack/useResponsiveBarStack.ts +131 -0
- package/src/Graph/Gauge/Gauge.cypress.spec.tsx +102 -0
- package/src/Graph/Gauge/Gauge.tsx +1 -1
- package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +145 -0
- package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -25
- package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +8 -2
- package/src/Graph/Legend/Legend.tsx +21 -0
- package/src/Graph/Legend/index.ts +1 -0
- package/src/Graph/Legend/models.ts +11 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +4 -5
- package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +3 -1
- package/src/Graph/LineChart/Header/index.tsx +3 -31
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +9 -11
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +3 -2
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +68 -0
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +27 -0
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +31 -0
- package/src/Graph/LineChart/InteractiveComponents/index.tsx +132 -17
- package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +7 -27
- package/src/Graph/LineChart/Legend/Legend.styles.ts +5 -9
- package/src/Graph/LineChart/Legend/LegendHeader.tsx +10 -22
- package/src/Graph/LineChart/Legend/index.tsx +17 -55
- package/src/Graph/LineChart/LineChart.cypress.spec.tsx +91 -0
- package/src/Graph/LineChart/LineChart.styles.ts +8 -0
- package/src/Graph/LineChart/LineChart.tsx +106 -116
- package/src/Graph/LineChart/LoadingSkeleton.tsx +2 -2
- package/src/Graph/LineChart/index.tsx +6 -7
- package/src/Graph/LineChart/mockedData/lastDayWithIncompleteValues.json +1320 -0
- package/src/Graph/LineChart/mockedData/lastDayWithNullValues.json +1314 -0
- package/src/Graph/LineChart/models.ts +12 -1
- package/src/Graph/PieChart/PieChart.cypress.spec.tsx +154 -0
- package/src/Graph/PieChart/PieChart.stories.tsx +194 -0
- package/src/Graph/PieChart/PieChart.styles.ts +39 -0
- package/src/Graph/PieChart/PieChart.tsx +14 -0
- package/src/Graph/PieChart/ResponsivePie.tsx +243 -0
- package/src/Graph/PieChart/index.ts +1 -0
- package/src/Graph/PieChart/models.ts +19 -0
- package/src/Graph/PieChart/useResponsivePie.ts +81 -0
- package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +121 -0
- package/src/Graph/Text/Text.cypress.spec.tsx +101 -0
- package/src/Graph/Text/Text.styles.ts +12 -1
- package/src/Graph/Text/Text.tsx +17 -12
- package/src/Graph/Tree/DescendantNodes.tsx +89 -0
- package/src/Graph/Tree/Links.tsx +77 -0
- package/src/Graph/Tree/StandaloneTree.tsx +32 -0
- package/src/Graph/Tree/Tree.cypress.spec.tsx +195 -0
- package/src/Graph/Tree/Tree.stories.tsx +160 -0
- package/src/Graph/Tree/Tree.tsx +116 -0
- package/src/Graph/Tree/constants.ts +2 -0
- package/src/Graph/Tree/index.ts +4 -0
- package/src/Graph/Tree/models.ts +55 -0
- package/src/Graph/Tree/stories/contents.tsx +164 -0
- package/src/Graph/Tree/stories/datas.ts +305 -0
- package/src/Graph/Tree/utils.ts +49 -0
- package/src/Graph/common/testUtils.ts +71 -0
- package/src/Graph/common/timeSeries/index.ts +50 -12
- package/src/Graph/common/utils.ts +19 -0
- package/src/Graph/index.ts +4 -0
- package/src/InputField/Number/Number.cypress.spec.tsx +85 -0
- package/src/InputField/Number/Number.stories.tsx +66 -0
- package/src/InputField/Number/Number.tsx +74 -0
- package/src/InputField/Search/index.tsx +2 -2
- package/src/InputField/Select/Autocomplete/Multi/index.tsx +4 -2
- package/src/InputField/Select/Autocomplete/index.tsx +10 -3
- package/src/InputField/Select/IconPopover/index.tsx +1 -1
- package/src/InputField/Select/index.tsx +14 -1
- package/src/InputField/Text/index.tsx +38 -38
- package/src/Listing/ActionBar/index.tsx +10 -10
- package/src/Listing/Cell/DataCell.styles.ts +3 -0
- package/src/Listing/Cell/DataCell.tsx +8 -4
- package/src/Listing/Listing.cypress.spec.tsx +217 -33
- package/src/Listing/Listing.styles.ts +3 -5
- package/src/Listing/Row/Row.tsx +7 -3
- package/src/Listing/index.stories.tsx +25 -2
- package/src/Listing/index.test.tsx +1 -1
- package/src/Listing/index.tsx +202 -143
- package/src/Listing/models.ts +1 -0
- package/src/Listing/useStyleTable.ts +1 -0
- package/src/Panel/index.tsx +1 -1
- package/src/PopoverMenu/index.tsx +6 -5
- package/src/ThemeProvider/index.tsx +3 -0
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +6 -7
- package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +12 -9
- package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +27 -0
- package/src/Typography/FluidTypography/index.stories.tsx +2 -2
- package/src/Typography/FluidTypography/index.tsx +21 -28
- package/src/api/index.ts +3 -3
- package/src/api/useGraphQuery/index.ts +26 -5
- package/src/api/useGraphQuery/models.ts +5 -0
- package/src/api/useMutationQuery/index.test.ts +4 -4
- package/src/api/useMutationQuery/index.ts +24 -13
- package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +76 -0
- package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +26 -0
- package/src/components/CollapsibleItem/CollapsibleItem.tsx +43 -14
- package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +24 -1
- package/src/components/DataTable/DataTable.cypress.spec.tsx +14 -33
- package/src/components/DataTable/Item/DataTableItem.tsx +4 -60
- package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.cypress.spec.tsx +36 -13
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ContactSwitch.tsx +11 -3
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.styles.ts +8 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.tsx +1 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/useShareInput.tsx +4 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/models.ts +1 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/storiesData.ts +23 -22
- package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +85 -0
- package/src/components/Form/Dashboard/index.ts +1 -0
- package/src/components/Form/FormActions.tsx +7 -2
- package/src/components/Form/index.ts +2 -2
- package/src/components/ItemComposition/Item.tsx +1 -1
- package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +113 -0
- package/src/components/ItemComposition/ItemComposition.stories.tsx +14 -0
- package/src/components/ItemComposition/ItemComposition.styles.ts +36 -3
- package/src/components/ItemComposition/ItemComposition.tsx +41 -17
- package/src/components/List/Item/ListItem.tsx +3 -3
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +168 -0
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +62 -0
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +87 -0
- package/src/components/Modal/Modal.styles.ts +8 -3
- package/src/components/Modal/index.ts +2 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +3 -3
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +1 -1
- package/src/components/Tooltip/ConfirmationTooltip/models.ts +1 -1
- package/src/components/Zoom/Minimap.tsx +129 -0
- package/src/components/Zoom/Zoom.cypress.spec.tsx +246 -0
- package/src/components/Zoom/Zoom.stories.tsx +115 -0
- package/src/components/Zoom/Zoom.styles.tsx +68 -0
- package/src/components/Zoom/Zoom.tsx +64 -0
- package/src/components/Zoom/ZoomContent.tsx +170 -0
- package/src/components/Zoom/constants.ts +2 -0
- package/src/components/Zoom/localPoint.ts +51 -0
- package/src/components/Zoom/models.ts +25 -0
- package/src/components/Zoom/useMinimap.ts +156 -0
- package/src/components/Zoom/useZoom.ts +70 -0
- package/src/components/Zoom/utils.ts +55 -0
- package/src/components/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/utils/index.ts +3 -0
- package/src/utils/resourcesStatusURL.ts +166 -0
- package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +130 -0
- package/src/utils/useFullscreen/atoms.ts +3 -0
- package/src/utils/useFullscreen/index.ts +2 -0
- package/src/utils/useFullscreen/translatedLabels.ts +1 -0
- package/src/utils/useFullscreen/useFullscreen.ts +73 -0
- package/src/utils/useFullscreen/useFullscreenListener.ts +62 -0
- package/src/utils/useInfiniteScrollListing.ts +4 -1
- package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +0 -46
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +0 -96
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +0 -107
- package/src/Graph/LineChart/Legend/InteractiveValue.tsx +0 -22
- package/src/Graph/LineChart/Legend/useInteractiveValues.ts +0 -99
- package/src/Typography/FluidTypography/useFluidResizeObserver.ts +0 -56
- package/src/components/Form/AccessRights/AccessRights.resource.ts +0 -45
- package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +0 -59
- package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +0 -21
- package/src/components/Form/AccessRights/AccessRightsForm.tsx +0 -67
- package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +0 -80
- package/src/components/Form/AccessRights/Input/AddAction.tsx +0 -31
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +0 -54
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +0 -72
- package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +0 -22
- package/src/components/Form/AccessRights/Input/ContactInputField.tsx +0 -105
- package/src/components/Form/AccessRights/Input/RoleInputField.tsx +0 -29
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +0 -97
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +0 -71
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +0 -51
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +0 -116
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +0 -118
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +0 -26
- package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +0 -28
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +0 -18
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +0 -41
- package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +0 -54
- package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +0 -18
- package/src/components/Form/AccessRights/common/GroupLabel.tsx +0 -15
- package/src/components/Form/AccessRights/common/Input.styles.ts +0 -48
- package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +0 -11
- package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +0 -57
- package/src/components/Form/AccessRights/index.ts +0 -3
- package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +0 -531
- package/src/components/Form/AccessRights/useAccessRightsForm.tsx +0 -282
- package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +0 -41
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.stories.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.styles.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.styles.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/useActions.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/Item.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.styles.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListItemSkeleton.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListSkeleton.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/RemoveAccessRight.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/StateChip.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/useItem.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Provider.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Stats/Stats.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/atoms.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.styles.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/useAccessRightsInitValues.ts +0 -0
|
@@ -8,17 +8,16 @@ import { ClickAwayListener, Fade, Skeleton, useTheme } from '@mui/material';
|
|
|
8
8
|
import { getLeftScale, getRightScale, getXScale } from '../common/timeSeries';
|
|
9
9
|
import { Line } from '../common/timeSeries/models';
|
|
10
10
|
import { Thresholds as ThresholdsModel } from '../common/models';
|
|
11
|
+
import { Tooltip as MuiTooltip } from '../../components/Tooltip';
|
|
11
12
|
|
|
12
13
|
import Axes from './BasicComponents/Axes';
|
|
13
14
|
import Grids from './BasicComponents/Grids';
|
|
14
15
|
import Lines from './BasicComponents/Lines';
|
|
15
16
|
import { canDisplayThreshold } from './BasicComponents/Lines/Threshold/models';
|
|
16
|
-
import LoadingProgress from './BasicComponents/LoadingProgress';
|
|
17
17
|
import useFilterLines from './BasicComponents/useFilterLines';
|
|
18
18
|
import { useStyles } from './LineChart.styles';
|
|
19
19
|
import Header from './Header';
|
|
20
20
|
import InteractionWithGraph from './InteractiveComponents';
|
|
21
|
-
import TooltipAnchorPoint from './InteractiveComponents/AnchorPoint/TooltipAnchorPoint';
|
|
22
21
|
import GraphTooltip from './InteractiveComponents/Tooltip';
|
|
23
22
|
import useGraphTooltip from './InteractiveComponents/Tooltip/useGraphTooltip';
|
|
24
23
|
import Legend from './Legend';
|
|
@@ -34,6 +33,7 @@ import { useIntersection } from './useLineChartIntersection';
|
|
|
34
33
|
import { CurveType } from './BasicComponents/Lines/models';
|
|
35
34
|
import Thresholds from './BasicComponents/Thresholds';
|
|
36
35
|
import { legendWidth } from './Legend/Legend.styles';
|
|
36
|
+
import GraphValueTooltip from './InteractiveComponents/GraphValueTooltip/GraphValueTooltip';
|
|
37
37
|
|
|
38
38
|
const extraMargin = 10;
|
|
39
39
|
|
|
@@ -43,7 +43,7 @@ interface Props extends LineChartProps {
|
|
|
43
43
|
graphInterval: GraphInterval;
|
|
44
44
|
graphRef: MutableRefObject<HTMLDivElement | null>;
|
|
45
45
|
legend?: LegendModel;
|
|
46
|
-
|
|
46
|
+
limitLegend?: false | number;
|
|
47
47
|
shapeLines?: GlobalAreaLines;
|
|
48
48
|
thresholdUnit?: string;
|
|
49
49
|
thresholds?: ThresholdsModel;
|
|
@@ -61,7 +61,6 @@ const LineChart = ({
|
|
|
61
61
|
shapeLines,
|
|
62
62
|
axis,
|
|
63
63
|
displayAnchor,
|
|
64
|
-
loading,
|
|
65
64
|
zoomPreview,
|
|
66
65
|
graphInterval,
|
|
67
66
|
timeShiftZones,
|
|
@@ -71,9 +70,9 @@ const LineChart = ({
|
|
|
71
70
|
graphRef,
|
|
72
71
|
header,
|
|
73
72
|
curve,
|
|
74
|
-
marginBottom,
|
|
75
73
|
thresholds,
|
|
76
|
-
thresholdUnit
|
|
74
|
+
thresholdUnit,
|
|
75
|
+
limitLegend
|
|
77
76
|
}: Props): JSX.Element => {
|
|
78
77
|
const { classes } = useStyles();
|
|
79
78
|
|
|
@@ -101,8 +100,7 @@ const LineChart = ({
|
|
|
101
100
|
(height || 0) > 0
|
|
102
101
|
? (height || 0) -
|
|
103
102
|
margin.top -
|
|
104
|
-
|
|
105
|
-
marginBottom -
|
|
103
|
+
5 -
|
|
106
104
|
(legendRef.current?.getBoundingClientRect().height || 0)
|
|
107
105
|
: 0;
|
|
108
106
|
|
|
@@ -183,130 +181,122 @@ const LineChart = ({
|
|
|
183
181
|
|
|
184
182
|
return (
|
|
185
183
|
<>
|
|
186
|
-
<Header
|
|
187
|
-
displayTimeTick={displayAnchor?.displayGuidingLines ?? true}
|
|
188
|
-
header={header}
|
|
189
|
-
timeSeries={timeSeries}
|
|
190
|
-
title={title}
|
|
191
|
-
xScale={xScale}
|
|
192
|
-
/>
|
|
184
|
+
<Header header={header} title={title} />
|
|
193
185
|
<ClickAwayListener onClickAway={graphTooltipData?.hideTooltip}>
|
|
194
|
-
<
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
/>
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
timeSeries={timeSeries}
|
|
232
|
-
width={graphWidth}
|
|
233
|
-
xScale={xScale}
|
|
234
|
-
{...shapeLines}
|
|
235
|
-
/>
|
|
236
|
-
|
|
237
|
-
<InteractionWithGraph
|
|
238
|
-
annotationData={{ ...annotationEvent }}
|
|
239
|
-
commonData={{
|
|
240
|
-
graphHeight,
|
|
241
|
-
graphSvgRef,
|
|
242
|
-
graphWidth,
|
|
243
|
-
timeSeries,
|
|
244
|
-
xScale
|
|
245
|
-
}}
|
|
246
|
-
timeShiftZonesData={{
|
|
247
|
-
...timeShiftZones,
|
|
248
|
-
graphInterval,
|
|
249
|
-
loading
|
|
250
|
-
}}
|
|
251
|
-
zoomData={{ ...zoomPreview }}
|
|
252
|
-
/>
|
|
186
|
+
<MuiTooltip
|
|
187
|
+
classes={{
|
|
188
|
+
tooltip: classes.graphValueTooltip
|
|
189
|
+
}}
|
|
190
|
+
placement="top-start"
|
|
191
|
+
title={<GraphValueTooltip base={baseAxis} />}
|
|
192
|
+
>
|
|
193
|
+
<div className={classes.container}>
|
|
194
|
+
<svg
|
|
195
|
+
height={graphHeight + margin.top}
|
|
196
|
+
ref={graphSvgRef}
|
|
197
|
+
width="100%"
|
|
198
|
+
>
|
|
199
|
+
<Group.Group
|
|
200
|
+
left={margin.left + extraMargin / 2}
|
|
201
|
+
top={margin.top}
|
|
202
|
+
>
|
|
203
|
+
<Grids
|
|
204
|
+
height={graphHeight - margin.top}
|
|
205
|
+
leftScale={leftScale}
|
|
206
|
+
width={graphWidth}
|
|
207
|
+
xScale={xScale}
|
|
208
|
+
/>
|
|
209
|
+
<Axes
|
|
210
|
+
data={{
|
|
211
|
+
baseAxis,
|
|
212
|
+
lines: displayedLines,
|
|
213
|
+
timeSeries,
|
|
214
|
+
...axis
|
|
215
|
+
}}
|
|
216
|
+
graphInterval={graphInterval}
|
|
217
|
+
height={graphHeight - margin.top}
|
|
218
|
+
leftScale={leftScale}
|
|
219
|
+
rightScale={rightScale}
|
|
220
|
+
width={graphWidth}
|
|
221
|
+
xScale={xScale}
|
|
222
|
+
/>
|
|
253
223
|
|
|
254
|
-
|
|
255
|
-
|
|
224
|
+
<Lines
|
|
225
|
+
curve={curve}
|
|
226
|
+
displayAnchor={displayAnchor}
|
|
256
227
|
displayedLines={displayedLines}
|
|
257
|
-
|
|
228
|
+
graphSvgRef={graphSvgRef}
|
|
229
|
+
height={graphHeight - margin.top}
|
|
258
230
|
leftScale={leftScale}
|
|
259
231
|
rightScale={rightScale}
|
|
260
|
-
|
|
261
|
-
thresholdUnit={thresholdUnit}
|
|
262
|
-
thresholds={thresholds as ThresholdsModel}
|
|
232
|
+
timeSeries={timeSeries}
|
|
263
233
|
width={graphWidth}
|
|
234
|
+
xScale={xScale}
|
|
235
|
+
{...shapeLines}
|
|
264
236
|
/>
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
237
|
+
|
|
238
|
+
<InteractionWithGraph
|
|
239
|
+
annotationData={{ ...annotationEvent }}
|
|
240
|
+
commonData={{
|
|
241
|
+
graphHeight,
|
|
242
|
+
graphSvgRef,
|
|
243
|
+
graphWidth,
|
|
244
|
+
leftScale,
|
|
245
|
+
lines: displayedLines,
|
|
246
|
+
rightScale,
|
|
247
|
+
timeSeries,
|
|
248
|
+
xScale
|
|
249
|
+
}}
|
|
250
|
+
timeShiftZonesData={{
|
|
251
|
+
...timeShiftZones,
|
|
252
|
+
graphInterval
|
|
253
|
+
}}
|
|
254
|
+
zoomData={{ ...zoomPreview }}
|
|
255
|
+
/>
|
|
256
|
+
|
|
257
|
+
{thresholds?.enabled && (
|
|
258
|
+
<Thresholds
|
|
259
|
+
displayedLines={displayedLines}
|
|
260
|
+
hideTooltip={hideThresholdTooltip}
|
|
261
|
+
leftScale={leftScale}
|
|
262
|
+
rightScale={rightScale}
|
|
263
|
+
showTooltip={showThresholdTooltip}
|
|
264
|
+
thresholdUnit={thresholdUnit}
|
|
265
|
+
thresholds={thresholds as ThresholdsModel}
|
|
266
|
+
width={graphWidth}
|
|
267
|
+
/>
|
|
268
|
+
)}
|
|
269
|
+
</Group.Group>
|
|
270
|
+
</svg>
|
|
271
|
+
{displayTooltip && (
|
|
272
|
+
<GraphTooltip {...tooltip} {...graphTooltipData} />
|
|
273
|
+
)}
|
|
274
|
+
<Fade in={thresholdTooltipOpen}>
|
|
275
|
+
<Tooltip.Tooltip
|
|
276
|
+
left={thresholdTooltipLeft}
|
|
277
|
+
style={{
|
|
278
|
+
...baseStyles,
|
|
279
|
+
backgroundColor: theme.palette.background.paper,
|
|
280
|
+
color: theme.palette.text.primary,
|
|
281
|
+
transform: `translate(${graphWidth / 2}px, -10px)`
|
|
282
|
+
}}
|
|
283
|
+
top={thresholdTooltipTop}
|
|
284
|
+
>
|
|
285
|
+
{thresholdTooltipData}
|
|
286
|
+
</Tooltip.Tooltip>
|
|
287
|
+
</Fade>
|
|
288
|
+
</div>
|
|
289
|
+
</MuiTooltip>
|
|
298
290
|
</ClickAwayListener>
|
|
299
291
|
{displayLegend && (
|
|
300
292
|
<div ref={legendRef}>
|
|
301
293
|
<Legend
|
|
302
294
|
base={baseAxis}
|
|
303
|
-
|
|
295
|
+
limitLegend={limitLegend}
|
|
304
296
|
lines={newLines}
|
|
305
297
|
renderExtraComponent={legend?.renderExtraComponent}
|
|
306
298
|
setLinesGraph={setLinesGraph}
|
|
307
299
|
shouldDisplayLegendInCompactMode={shouldDisplayLegendInCompactMode}
|
|
308
|
-
timeSeries={timeSeries}
|
|
309
|
-
xScale={xScale}
|
|
310
300
|
/>
|
|
311
301
|
</div>
|
|
312
302
|
)}
|
|
@@ -13,8 +13,8 @@ const useSkeletonStyles = makeStyles<Props>()(
|
|
|
13
13
|
display: 'grid',
|
|
14
14
|
gridGap: theme.spacing(1),
|
|
15
15
|
gridTemplateRows: `${
|
|
16
|
-
displayTitleSkeleton ? '
|
|
17
|
-
} ${graphHeight}px ${theme.spacing(
|
|
16
|
+
displayTitleSkeleton ? '0.8fr' : ''
|
|
17
|
+
} ${graphHeight}px ${theme.spacing(2)}`,
|
|
18
18
|
height: '100%'
|
|
19
19
|
},
|
|
20
20
|
loadingSkeletonLine: {
|
|
@@ -28,8 +28,8 @@ interface Props extends Partial<LineChartProps> {
|
|
|
28
28
|
data?: LineChartData;
|
|
29
29
|
end: string;
|
|
30
30
|
legend: LegendModel;
|
|
31
|
+
limitLegend?: false | number;
|
|
31
32
|
loading: boolean;
|
|
32
|
-
marginBottom?: number;
|
|
33
33
|
shapeLines?: GlobalAreaLines;
|
|
34
34
|
start: string;
|
|
35
35
|
thresholdUnit?: string;
|
|
@@ -53,9 +53,9 @@ const WrapperLineChart = ({
|
|
|
53
53
|
legend,
|
|
54
54
|
header,
|
|
55
55
|
curve = Curve.curveLinear,
|
|
56
|
-
marginBottom = 0,
|
|
57
56
|
thresholds,
|
|
58
|
-
thresholdUnit
|
|
57
|
+
thresholdUnit,
|
|
58
|
+
limitLegend
|
|
59
59
|
}: Props): JSX.Element | null => {
|
|
60
60
|
const { adjustedData } = useLineChartData({ data, end, start });
|
|
61
61
|
const lineChartRef = useRef<HTMLDivElement | null>(null);
|
|
@@ -63,7 +63,7 @@ const WrapperLineChart = ({
|
|
|
63
63
|
if (loading && !adjustedData) {
|
|
64
64
|
return (
|
|
65
65
|
<LoadingSkeleton
|
|
66
|
-
displayTitleSkeleton={header?.displayTitle ??
|
|
66
|
+
displayTitleSkeleton={header?.displayTitle ?? false}
|
|
67
67
|
graphHeight={height || 200}
|
|
68
68
|
/>
|
|
69
69
|
);
|
|
@@ -76,7 +76,7 @@ const WrapperLineChart = ({
|
|
|
76
76
|
return (
|
|
77
77
|
<div
|
|
78
78
|
ref={lineChartRef as MutableRefObject<HTMLDivElement>}
|
|
79
|
-
style={{ height: '100%', width: '100%' }}
|
|
79
|
+
style={{ height: '100%', overflow: 'hidden', width: '100%' }}
|
|
80
80
|
>
|
|
81
81
|
<ParentSize>
|
|
82
82
|
{({
|
|
@@ -95,8 +95,7 @@ const WrapperLineChart = ({
|
|
|
95
95
|
header={header}
|
|
96
96
|
height={height || responsiveHeight}
|
|
97
97
|
legend={legend}
|
|
98
|
-
|
|
99
|
-
marginBottom={marginBottom}
|
|
98
|
+
limitLegend={limitLegend}
|
|
100
99
|
shapeLines={shapeLines}
|
|
101
100
|
thresholdUnit={thresholdUnit}
|
|
102
101
|
thresholds={thresholds}
|