@centreon/ui 24.4.1-sync-release-34022.1 → 24.4.1-test-code-coverage.1

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.
Files changed (220) hide show
  1. package/package.json +48 -40
  2. package/src/ActionsList/ActionsList.styles.ts +40 -71
  3. package/src/Button/Icon/index.stories.tsx +1 -1
  4. package/src/Button/Icon/index.tsx +1 -1
  5. package/src/Dashboard/Dashboard.styles.ts +6 -5
  6. package/src/Dialog/Confirm/index.tsx +10 -2
  7. package/src/Dialog/UnsavedChanges/index.tsx +21 -20
  8. package/src/Dialog/UnsavedChanges/translatedLabels.ts +4 -6
  9. package/src/Dialog/index.tsx +8 -1
  10. package/src/Form/Inputs/CheckboxGroup.tsx +4 -1
  11. package/src/Form/Inputs/Text.tsx +3 -1
  12. package/src/Form/Inputs/models.ts +1 -0
  13. package/src/Graph/BarStack/BarStack.cypress.spec.tsx +139 -0
  14. package/src/Graph/BarStack/BarStack.stories.tsx +123 -0
  15. package/src/Graph/BarStack/BarStack.styles.ts +37 -0
  16. package/src/Graph/BarStack/BarStack.tsx +14 -0
  17. package/src/Graph/BarStack/ResponsiveBarStack.tsx +209 -0
  18. package/src/Graph/BarStack/index.ts +1 -0
  19. package/src/Graph/BarStack/models.ts +19 -0
  20. package/src/Graph/BarStack/useResponsiveBarStack.ts +131 -0
  21. package/src/Graph/Gauge/Gauge.cypress.spec.tsx +102 -0
  22. package/src/Graph/Gauge/Gauge.tsx +1 -1
  23. package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +145 -0
  24. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -25
  25. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +8 -2
  26. package/src/Graph/Legend/Legend.tsx +21 -0
  27. package/src/Graph/Legend/index.ts +1 -0
  28. package/src/Graph/Legend/models.ts +11 -0
  29. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +4 -5
  30. package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +3 -1
  31. package/src/Graph/LineChart/Header/index.tsx +3 -31
  32. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +9 -11
  33. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +3 -2
  34. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +68 -0
  35. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +27 -0
  36. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +31 -0
  37. package/src/Graph/LineChart/InteractiveComponents/index.tsx +132 -17
  38. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +7 -27
  39. package/src/Graph/LineChart/Legend/Legend.styles.ts +5 -9
  40. package/src/Graph/LineChart/Legend/LegendHeader.tsx +10 -22
  41. package/src/Graph/LineChart/Legend/index.tsx +17 -55
  42. package/src/Graph/LineChart/LineChart.cypress.spec.tsx +91 -0
  43. package/src/Graph/LineChart/LineChart.styles.ts +8 -0
  44. package/src/Graph/LineChart/LineChart.tsx +106 -116
  45. package/src/Graph/LineChart/LoadingSkeleton.tsx +2 -2
  46. package/src/Graph/LineChart/index.tsx +6 -7
  47. package/src/Graph/LineChart/mockedData/lastDayWithIncompleteValues.json +1320 -0
  48. package/src/Graph/LineChart/mockedData/lastDayWithNullValues.json +1314 -0
  49. package/src/Graph/LineChart/models.ts +12 -1
  50. package/src/Graph/PieChart/PieChart.cypress.spec.tsx +154 -0
  51. package/src/Graph/PieChart/PieChart.stories.tsx +194 -0
  52. package/src/Graph/PieChart/PieChart.styles.ts +39 -0
  53. package/src/Graph/PieChart/PieChart.tsx +14 -0
  54. package/src/Graph/PieChart/ResponsivePie.tsx +243 -0
  55. package/src/Graph/PieChart/index.ts +1 -0
  56. package/src/Graph/PieChart/models.ts +19 -0
  57. package/src/Graph/PieChart/useResponsivePie.ts +81 -0
  58. package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +121 -0
  59. package/src/Graph/Text/Text.cypress.spec.tsx +101 -0
  60. package/src/Graph/Text/Text.styles.ts +12 -1
  61. package/src/Graph/Text/Text.tsx +17 -12
  62. package/src/Graph/Tree/DescendantNodes.tsx +89 -0
  63. package/src/Graph/Tree/Links.tsx +77 -0
  64. package/src/Graph/Tree/StandaloneTree.tsx +32 -0
  65. package/src/Graph/Tree/Tree.cypress.spec.tsx +195 -0
  66. package/src/Graph/Tree/Tree.stories.tsx +160 -0
  67. package/src/Graph/Tree/Tree.tsx +116 -0
  68. package/src/Graph/Tree/constants.ts +2 -0
  69. package/src/Graph/Tree/index.ts +4 -0
  70. package/src/Graph/Tree/models.ts +55 -0
  71. package/src/Graph/Tree/stories/contents.tsx +164 -0
  72. package/src/Graph/Tree/stories/datas.ts +305 -0
  73. package/src/Graph/Tree/utils.ts +49 -0
  74. package/src/Graph/common/testUtils.ts +71 -0
  75. package/src/Graph/common/timeSeries/index.ts +50 -12
  76. package/src/Graph/common/utils.ts +19 -0
  77. package/src/Graph/index.ts +4 -0
  78. package/src/InputField/Number/Number.cypress.spec.tsx +85 -0
  79. package/src/InputField/Number/Number.stories.tsx +66 -0
  80. package/src/InputField/Number/Number.tsx +74 -0
  81. package/src/InputField/Search/index.tsx +2 -2
  82. package/src/InputField/Select/Autocomplete/Multi/index.tsx +4 -2
  83. package/src/InputField/Select/Autocomplete/index.tsx +10 -3
  84. package/src/InputField/Select/IconPopover/index.tsx +1 -1
  85. package/src/InputField/Select/index.tsx +14 -1
  86. package/src/InputField/Text/index.tsx +38 -38
  87. package/src/Listing/ActionBar/index.tsx +10 -10
  88. package/src/Listing/Cell/DataCell.styles.ts +3 -0
  89. package/src/Listing/Cell/DataCell.tsx +8 -4
  90. package/src/Listing/Listing.cypress.spec.tsx +217 -33
  91. package/src/Listing/Listing.styles.ts +3 -5
  92. package/src/Listing/Row/Row.tsx +7 -3
  93. package/src/Listing/index.stories.tsx +25 -2
  94. package/src/Listing/index.test.tsx +1 -1
  95. package/src/Listing/index.tsx +202 -143
  96. package/src/Listing/models.ts +1 -0
  97. package/src/Listing/useStyleTable.ts +1 -0
  98. package/src/Panel/index.tsx +1 -1
  99. package/src/PopoverMenu/index.tsx +6 -5
  100. package/src/ThemeProvider/index.tsx +3 -0
  101. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +6 -7
  102. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +12 -9
  103. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +27 -0
  104. package/src/Typography/FluidTypography/index.stories.tsx +2 -2
  105. package/src/Typography/FluidTypography/index.tsx +21 -28
  106. package/src/api/index.ts +3 -3
  107. package/src/api/useGraphQuery/index.ts +26 -5
  108. package/src/api/useGraphQuery/models.ts +5 -0
  109. package/src/api/useMutationQuery/index.test.ts +4 -4
  110. package/src/api/useMutationQuery/index.ts +24 -13
  111. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +76 -0
  112. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +26 -0
  113. package/src/components/CollapsibleItem/CollapsibleItem.tsx +43 -14
  114. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +24 -1
  115. package/src/components/DataTable/DataTable.cypress.spec.tsx +14 -33
  116. package/src/components/DataTable/Item/DataTableItem.tsx +4 -60
  117. package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.cypress.spec.tsx +36 -13
  118. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ContactSwitch.tsx +11 -3
  119. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.styles.ts +8 -0
  120. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.tsx +1 -0
  121. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/useShareInput.tsx +4 -0
  122. package/src/components/Form/{AccessRightsV2 → AccessRights}/models.ts +1 -0
  123. package/src/components/Form/{AccessRightsV2 → AccessRights}/storiesData.ts +23 -22
  124. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +85 -0
  125. package/src/components/Form/Dashboard/index.ts +1 -0
  126. package/src/components/Form/FormActions.tsx +7 -2
  127. package/src/components/Form/index.ts +2 -2
  128. package/src/components/ItemComposition/Item.tsx +1 -1
  129. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +113 -0
  130. package/src/components/ItemComposition/ItemComposition.stories.tsx +14 -0
  131. package/src/components/ItemComposition/ItemComposition.styles.ts +36 -3
  132. package/src/components/ItemComposition/ItemComposition.tsx +41 -17
  133. package/src/components/List/Item/ListItem.tsx +3 -3
  134. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +168 -0
  135. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +62 -0
  136. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +87 -0
  137. package/src/components/Modal/Modal.styles.ts +8 -3
  138. package/src/components/Modal/index.ts +2 -0
  139. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +3 -3
  140. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +1 -1
  141. package/src/components/Tooltip/ConfirmationTooltip/models.ts +1 -1
  142. package/src/components/Zoom/Minimap.tsx +129 -0
  143. package/src/components/Zoom/Zoom.cypress.spec.tsx +246 -0
  144. package/src/components/Zoom/Zoom.stories.tsx +115 -0
  145. package/src/components/Zoom/Zoom.styles.tsx +68 -0
  146. package/src/components/Zoom/Zoom.tsx +64 -0
  147. package/src/components/Zoom/ZoomContent.tsx +170 -0
  148. package/src/components/Zoom/constants.ts +2 -0
  149. package/src/components/Zoom/localPoint.ts +51 -0
  150. package/src/components/Zoom/models.ts +25 -0
  151. package/src/components/Zoom/useMinimap.ts +156 -0
  152. package/src/components/Zoom/useZoom.ts +70 -0
  153. package/src/components/Zoom/utils.ts +55 -0
  154. package/src/components/index.ts +1 -0
  155. package/src/index.ts +1 -0
  156. package/src/utils/index.ts +3 -0
  157. package/src/utils/resourcesStatusURL.ts +166 -0
  158. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +130 -0
  159. package/src/utils/useFullscreen/atoms.ts +3 -0
  160. package/src/utils/useFullscreen/index.ts +2 -0
  161. package/src/utils/useFullscreen/translatedLabels.ts +1 -0
  162. package/src/utils/useFullscreen/useFullscreen.ts +73 -0
  163. package/src/utils/useFullscreen/useFullscreenListener.ts +62 -0
  164. package/src/utils/useInfiniteScrollListing.ts +4 -1
  165. package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +0 -46
  166. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +0 -96
  167. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +0 -107
  168. package/src/Graph/LineChart/Legend/InteractiveValue.tsx +0 -22
  169. package/src/Graph/LineChart/Legend/useInteractiveValues.ts +0 -99
  170. package/src/Typography/FluidTypography/useFluidResizeObserver.ts +0 -56
  171. package/src/components/Form/AccessRights/AccessRights.resource.ts +0 -45
  172. package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +0 -59
  173. package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +0 -21
  174. package/src/components/Form/AccessRights/AccessRightsForm.tsx +0 -67
  175. package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +0 -80
  176. package/src/components/Form/AccessRights/Input/AddAction.tsx +0 -31
  177. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +0 -54
  178. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +0 -72
  179. package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +0 -22
  180. package/src/components/Form/AccessRights/Input/ContactInputField.tsx +0 -105
  181. package/src/components/Form/AccessRights/Input/RoleInputField.tsx +0 -29
  182. package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +0 -97
  183. package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +0 -71
  184. package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +0 -51
  185. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +0 -116
  186. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +0 -118
  187. package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +0 -26
  188. package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +0 -28
  189. package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +0 -18
  190. package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +0 -41
  191. package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +0 -54
  192. package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +0 -18
  193. package/src/components/Form/AccessRights/common/GroupLabel.tsx +0 -15
  194. package/src/components/Form/AccessRights/common/Input.styles.ts +0 -48
  195. package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +0 -11
  196. package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +0 -57
  197. package/src/components/Form/AccessRights/index.ts +0 -3
  198. package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +0 -531
  199. package/src/components/Form/AccessRights/useAccessRightsForm.tsx +0 -282
  200. package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +0 -41
  201. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.stories.tsx +0 -0
  202. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.styles.ts +0 -0
  203. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.tsx +0 -0
  204. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.styles.ts +0 -0
  205. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.tsx +0 -0
  206. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/useActions.ts +0 -0
  207. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/Item.tsx +0 -0
  208. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.styles.tsx +0 -0
  209. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.tsx +0 -0
  210. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListItemSkeleton.tsx +0 -0
  211. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListSkeleton.tsx +0 -0
  212. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/RemoveAccessRight.tsx +0 -0
  213. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/StateChip.tsx +0 -0
  214. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/useItem.ts +0 -0
  215. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Provider.tsx +0 -0
  216. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Stats/Stats.tsx +0 -0
  217. /package/src/components/Form/{AccessRightsV2 → AccessRights}/atoms.ts +0 -0
  218. /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.styles.tsx +0 -0
  219. /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.tsx +0 -0
  220. /package/src/components/Form/{AccessRightsV2 → AccessRights}/useAccessRightsInitValues.ts +0 -0
@@ -1,107 +0,0 @@
1
- import { useEffect } from 'react';
2
-
3
- import { Tooltip } from '@visx/visx';
4
- import { isNil } from 'ramda';
5
-
6
- import { useLocaleDateTimeFormat } from '@centreon/ui';
7
-
8
- import { margin, timeFormat } from '../../common/index';
9
-
10
- import { TooltipAnchorModel, UseTooltipAnchorPointResult } from './models';
11
- import useTickGraph from './useTickGraph';
12
-
13
- const useTooltipAnchorPoint = ({
14
- timeSeries,
15
- xScale,
16
- graphHeight,
17
- leftScale,
18
- rightScale,
19
- graphWidth,
20
- lines,
21
- baseAxis
22
- }: TooltipAnchorModel): UseTooltipAnchorPointResult => {
23
- const { format } = useLocaleDateTimeFormat();
24
-
25
- const { positionX, positionY, tickAxisBottom, tickAxisLeft, tickAxisRight } =
26
- useTickGraph({
27
- baseAxis,
28
- leftScale,
29
- lines,
30
- rightScale,
31
- timeSeries,
32
- xScale
33
- });
34
-
35
- const {
36
- showTooltip: showTooltipAxisYLeft,
37
- tooltipData: tooltipDataAxisYLeft,
38
- tooltipLeft: tooltipLeftAxisYLeft,
39
- tooltipTop: tooltipTopAxisYLeft
40
- } = Tooltip.useTooltip();
41
- const {
42
- showTooltip: showTooltipAxisX,
43
- tooltipData: tooltipDataAxisX,
44
- tooltipLeft: tooltipLeftAxisX,
45
- tooltipTop: tooltipTopAxisX
46
- } = Tooltip.useTooltip();
47
-
48
- const {
49
- showTooltip: showTooltipAxisYRight,
50
- tooltipData: tooltipDataAxisYRight,
51
- tooltipLeft: tooltipLeftAxisYRight,
52
- tooltipTop: tooltipTopAxisYRight
53
- } = Tooltip.useTooltip();
54
-
55
- useEffect(() => {
56
- if (!positionX || !positionY || !tickAxisBottom) {
57
- return;
58
- }
59
-
60
- const dataAxisX = format({
61
- date: tickAxisBottom,
62
- formatString: timeFormat
63
- });
64
-
65
- showTooltipAxisX({
66
- tooltipData: dataAxisX,
67
- tooltipLeft: positionX + margin.left,
68
- tooltipTop: graphHeight + margin.top
69
- });
70
- }, [positionX, positionY, tickAxisBottom]);
71
-
72
- useEffect(() => {
73
- if (!positionX || !positionY || !tickAxisLeft) {
74
- return;
75
- }
76
- showTooltipAxisYLeft({
77
- tooltipData: tickAxisLeft,
78
- tooltipLeft: margin.left,
79
- tooltipTop: positionY + margin.top
80
- });
81
- }, [tickAxisLeft, positionX, positionY]);
82
-
83
- useEffect(() => {
84
- if (!positionX || !positionY || !tickAxisRight) {
85
- return;
86
- }
87
- showTooltipAxisYRight({
88
- tooltipData: tickAxisRight,
89
- tooltipLeft: graphWidth ? graphWidth + margin.left : 0,
90
- tooltipTop: positionY + margin.top
91
- });
92
- }, [positionX, positionY, tickAxisRight]);
93
-
94
- return {
95
- tooltipDataAxisX: !isNil(tickAxisBottom) ? tooltipDataAxisX : null,
96
- tooltipDataAxisYLeft: !isNil(tickAxisLeft) ? tooltipDataAxisYLeft : null,
97
- tooltipDataAxisYRight: !isNil(tickAxisRight) ? tooltipDataAxisYRight : null,
98
- tooltipLeftAxisX,
99
- tooltipLeftAxisYLeft,
100
- tooltipLeftAxisYRight,
101
- tooltipTopAxisX,
102
- tooltipTopAxisYLeft,
103
- tooltipTopAxisYRight
104
- } as UseTooltipAnchorPointResult;
105
- };
106
-
107
- export default useTooltipAnchorPoint;
@@ -1,22 +0,0 @@
1
- import { Typography } from '@mui/material';
2
-
3
- import { useLegendValueStyles } from './Legend.styles';
4
-
5
- interface Props {
6
- value?: string | null;
7
- }
8
-
9
- const InteractiveValue = ({ value }: Props): JSX.Element | null => {
10
- const { classes } = useLegendValueStyles({});
11
- if (!value) {
12
- return null;
13
- }
14
-
15
- return (
16
- <Typography className={classes.text} variant="h6">
17
- {value}
18
- </Typography>
19
- );
20
- };
21
-
22
- export default InteractiveValue;
@@ -1,99 +0,0 @@
1
- import { useMemo } from 'react';
2
-
3
- import { useAtomValue } from 'jotai';
4
- import { equals, find, isNil } from 'ramda';
5
-
6
- import { mousePositionAtom } from '../InteractiveComponents/interactionWithGraphAtoms';
7
- import {
8
- formatMetricValue,
9
- getLineForMetric,
10
- getMetrics,
11
- getTimeValue
12
- } from '../../common/timeSeries';
13
- import { Line, TimeValue } from '../../common/timeSeries/models';
14
-
15
- import { FormattedMetricData } from './models';
16
-
17
- interface InteractiveValues {
18
- getFormattedValue: (line: Line) => string | null | undefined;
19
- }
20
-
21
- interface Props {
22
- base: number;
23
- lines: Array<Line>;
24
- timeSeries: Array<TimeValue>;
25
- xScale;
26
- }
27
-
28
- const useInteractiveValues = ({
29
- timeSeries,
30
- lines,
31
- base,
32
- xScale
33
- }: Props): InteractiveValues => {
34
- const mousePosition = useAtomValue(mousePositionAtom);
35
-
36
- const timeValue = getTimeValue({
37
- timeSeries,
38
- x: mousePosition?.[0],
39
- xScale
40
- });
41
-
42
- const graphTimeValue = timeSeries?.find((item) =>
43
- equals(item.timeTick, timeValue?.timeTick)
44
- );
45
-
46
- const getMetricsToDisplay = (): Array<number> => {
47
- if (isNil(graphTimeValue)) {
48
- return [];
49
- }
50
- const metricsData = getMetrics(graphTimeValue as TimeValue);
51
-
52
- const metricsToDisplay = metricsData.filter((metric_id) => {
53
- const line = getLineForMetric({ lines, metric_id: Number(metric_id) });
54
-
55
- return !isNil(graphTimeValue[metric_id]) && !isNil(line);
56
- });
57
-
58
- return metricsToDisplay.map(Number);
59
- };
60
-
61
- const metrics = useMemo(() => getMetricsToDisplay(), [graphTimeValue]);
62
-
63
- const getFormattedMetricData = (
64
- metric_id: number
65
- ): FormattedMetricData | null => {
66
- if (isNil(graphTimeValue)) {
67
- return null;
68
- }
69
- const value = graphTimeValue[metric_id] as number;
70
-
71
- const { color, name, unit } = getLineForMetric({
72
- lines,
73
- metric_id
74
- }) as Line;
75
-
76
- const formattedValue = formatMetricValue({
77
- base,
78
- unit,
79
- value
80
- });
81
-
82
- return {
83
- color,
84
- formattedValue,
85
- name,
86
- unit
87
- };
88
- };
89
-
90
- const getFormattedValue = (line: Line): string | undefined | null => {
91
- const metric_id = find(equals(line.metric_id), metrics);
92
-
93
- return metric_id ? getFormattedMetricData(metric_id)?.formattedValue : null;
94
- };
95
-
96
- return { getFormattedValue };
97
- };
98
-
99
- export default useInteractiveValues;
@@ -1,56 +0,0 @@
1
- import {
2
- MutableRefObject,
3
- useCallback,
4
- useEffect,
5
- useRef,
6
- useState
7
- } from 'react';
8
-
9
- interface Size {
10
- height: number;
11
- width: number;
12
- }
13
-
14
- interface UseFluidResizeObserver {
15
- isParent?: boolean;
16
- ref: MutableRefObject<HTMLElement | undefined>;
17
- }
18
-
19
- const useFluidResizeObserver = ({
20
- ref,
21
- isParent
22
- }: UseFluidResizeObserver): Size => {
23
- const [size, setSize] = useState<Size>({ height: 0, width: 0 });
24
-
25
- const observer = useRef<ResizeObserver | null>(null);
26
-
27
- const resizeObserver = useCallback(
28
- (element) => {
29
- if (observer.current) {
30
- observer.current.disconnect();
31
- }
32
-
33
- observer.current = new ResizeObserver(
34
- ([entry]: Array<ResizeObserverEntry>) => {
35
- setSize({
36
- height: entry.target?.getBoundingClientRect().height || 0,
37
- width: entry.target?.getBoundingClientRect().width || 0
38
- });
39
- }
40
- );
41
-
42
- if (element && observer.current) {
43
- observer.current.observe(element);
44
- }
45
- },
46
- [ref.current]
47
- );
48
-
49
- useEffect(() => {
50
- resizeObserver(isParent ? ref.current?.parentElement : ref.current);
51
- }, [ref.current]);
52
-
53
- return size;
54
- };
55
-
56
- export default useFluidResizeObserver;
@@ -1,45 +0,0 @@
1
- export type ContactAccessRightState =
2
- | 'added'
3
- | 'updated'
4
- | 'removed'
5
- | 'unchanged';
6
-
7
- export type ContactAccessRightStateResource = {
8
- contactAccessRight: ContactAccessRightResource;
9
- state: ContactAccessRightState;
10
- stateHistory: Array<ContactAccessRightState>;
11
- };
12
-
13
- export type ContactAccessRightResource = {
14
- contact: ContactResource | ContactGroupResource | null;
15
- role: RoleResource['role'];
16
- };
17
-
18
- export type ContactResource = {
19
- email?: string;
20
- id?: number | string;
21
- name: string;
22
- type: 'contact';
23
- };
24
-
25
- export const isContactResource = (
26
- resource: ContactResource | ContactGroupResource | null
27
- ): resource is ContactResource => {
28
- return resource?.type === 'contact';
29
- };
30
-
31
- export type ContactGroupResource = {
32
- id?: number | string;
33
- name: string;
34
- type: 'contact_group';
35
- };
36
-
37
- export const isContactGroupResource = (
38
- resource: ContactResource | ContactGroupResource | null
39
- ): resource is ContactResource => {
40
- return resource?.type === 'contact_group';
41
- };
42
-
43
- export type RoleResource = {
44
- role: 'viewer' | 'editor' | string;
45
- };
@@ -1,59 +0,0 @@
1
- import { Meta, StoryObj } from '@storybook/react';
2
-
3
- import { AccessRightsForm } from './AccessRightsForm';
4
- import { Default as DefaultContactAccessRightsListStory } from './List/ContactAccessRightsList.stories';
5
- import { Default as DefaultContactAccessRightInputStory } from './Input/ContactAccessRightInput.stories';
6
- import { ContactAccessRightsListProps } from './List/ContactAccessRightsList';
7
- import { ContactAccessRightInputProps } from './Input/ContactAccessRightInput';
8
- import {
9
- contactAccessRightsMock,
10
- contactsAndGroupsMock
11
- } from './__fixtures__/contactAccessRight.mock';
12
-
13
- const meta: Meta<typeof AccessRightsForm> = {
14
- component: AccessRightsForm
15
- };
16
-
17
- export default meta;
18
- type Story = StoryObj<typeof AccessRightsForm>;
19
-
20
- export const Default: Story = {
21
- args: {
22
- initialValues: contactAccessRightsMock(12),
23
- labels: {
24
- actions: {
25
- cancel: 'Cancel',
26
- copyLink: 'Copy link',
27
- copyLinkMessages: {
28
- error: 'Unable to copy link',
29
- success: 'Link copied'
30
- },
31
- submit: 'Update'
32
- },
33
- input: {
34
- ...DefaultContactAccessRightInputStory.args?.labels
35
- } as ContactAccessRightInputProps['labels'],
36
- list: {
37
- ...DefaultContactAccessRightsListStory.args?.labels
38
- } as ContactAccessRightsListProps['labels'],
39
- stats: {
40
- added: 'added',
41
- removed: 'removed',
42
- updated: 'updated'
43
- }
44
- },
45
- options: {
46
- contacts: contactsAndGroupsMock(25),
47
- roles: [{ role: 'viewer' }, { role: 'editor' }]
48
- },
49
- resourceLink: 'https://app.centreon.com/resource/1'
50
- }
51
- };
52
-
53
- export const AsEmptyState: Story = {
54
- args: {
55
- labels: Default.args?.labels,
56
- options: Default.args?.options,
57
- resourceLink: Default.args?.resourceLink
58
- }
59
- };
@@ -1,21 +0,0 @@
1
- import { makeStyles } from 'tss-react/mui';
2
-
3
- const useStyles = makeStyles()((theme) => ({
4
- accessRightsForm: {
5
- display: 'flex',
6
- flexDirection: 'column',
7
- gap: theme.spacing(6),
8
-
9
- maxWidth: '520px',
10
- paddingTop: theme.spacing(3),
11
-
12
- width: '100%'
13
- },
14
- accessRightsFormList: {
15
- display: 'flex',
16
- flexDirection: 'column',
17
- gap: theme.spacing(1)
18
- }
19
- }));
20
-
21
- export { useStyles };
@@ -1,67 +0,0 @@
1
- import { ReactElement } from 'react';
2
-
3
- import { useStyles } from './AccessRightsForm.styles';
4
- import {
5
- AccessRightsFormProvider,
6
- AccessRightsFormProviderProps
7
- } from './useAccessRightsForm';
8
- import {
9
- ContactAccessRightInput,
10
- ContactAccessRightInputProps
11
- } from './Input/ContactAccessRightInput';
12
- import {
13
- ContactAccessRightsList,
14
- ContactAccessRightsListProps
15
- } from './List/ContactAccessRightsList';
16
- import {
17
- AccessRightsFormActions,
18
- AccessRightsFormActionsProps
19
- } from './AccessRightsFormActions';
20
- import {
21
- AccessRightsStats,
22
- AccessRightsStatsProps
23
- } from './Stats/AccessRightsStats';
24
-
25
- export type AccessRightsFormProps = {
26
- labels: AccessRightsFormLabels;
27
- onCancel?: AccessRightsFormActionsProps['onCancel'];
28
- resourceLink: string;
29
- } & Pick<
30
- AccessRightsFormProviderProps,
31
- 'initialValues' | 'onSubmit' | 'options' | 'loadingStatus'
32
- >;
33
-
34
- export type AccessRightsFormLabels = {
35
- actions: AccessRightsFormActionsProps['labels'];
36
- input: ContactAccessRightInputProps['labels'];
37
- list: ContactAccessRightsListProps['labels'];
38
- stats: AccessRightsStatsProps['labels'];
39
- };
40
-
41
- const AccessRightsForm = ({
42
- labels,
43
- onCancel,
44
- resourceLink,
45
- ...providerProps
46
- }: AccessRightsFormProps): ReactElement => {
47
- const { classes } = useStyles();
48
-
49
- return (
50
- <AccessRightsFormProvider {...providerProps}>
51
- <div className={classes.accessRightsForm}>
52
- <ContactAccessRightInput labels={labels.input} />
53
- <span className={classes.accessRightsFormList}>
54
- <ContactAccessRightsList labels={labels.list} />
55
- <AccessRightsStats labels={labels.stats} />
56
- </span>
57
- <AccessRightsFormActions
58
- labels={labels.actions}
59
- resourceLink={resourceLink}
60
- onCancel={onCancel}
61
- />
62
- </div>
63
- </AccessRightsFormProvider>
64
- );
65
- };
66
-
67
- export { AccessRightsForm };
@@ -1,80 +0,0 @@
1
- import { ReactElement } from 'react';
2
-
3
- import { Link as LinkIcon } from '@mui/icons-material';
4
-
5
- import { Button } from '../../Button';
6
- import { useStyles } from '../Form.styles';
7
- import { useCopyToClipboard } from '../../../utils';
8
-
9
- import { useAccessRightsForm } from './useAccessRightsForm';
10
-
11
- export type AccessRightsFormActionsProps = {
12
- labels: AccessRightsFormActionsLabels;
13
- onCancel?: () => void;
14
- resourceLink: string;
15
- };
16
-
17
- type AccessRightsFormActionsLabels = {
18
- cancel: string;
19
- copyLink: string;
20
- copyLinkMessages: {
21
- error: string;
22
- success: string;
23
- };
24
- submit: string;
25
- };
26
-
27
- const AccessRightsFormActions = ({
28
- labels,
29
- onCancel,
30
- resourceLink
31
- }: AccessRightsFormActionsProps): ReactElement => {
32
- const { classes } = useStyles();
33
- const { isDirty, submit } = useAccessRightsForm();
34
- const { copy } = useCopyToClipboard({
35
- errorMessage: labels.copyLinkMessages.error,
36
- successMessage: labels.copyLinkMessages.success
37
- });
38
-
39
- return (
40
- <div className={classes.actions}>
41
- <span>
42
- <Button
43
- aria-label={labels.copyLink}
44
- data-testid="copy-link"
45
- icon={<LinkIcon />}
46
- iconVariant="start"
47
- size="small"
48
- variant="ghost"
49
- onClick={() => copy(resourceLink)}
50
- >
51
- {labels.copyLink}
52
- </Button>
53
- </span>
54
- <span>
55
- <Button
56
- aria-label={labels.cancel}
57
- data-testid="cancel"
58
- size="medium"
59
- variant="secondary"
60
- onClick={() => onCancel?.()}
61
- >
62
- {labels.cancel}
63
- </Button>
64
- <Button
65
- aria-label={labels.submit}
66
- data-testid="submit"
67
- disabled={!isDirty}
68
- size="medium"
69
- type="submit"
70
- variant="primary"
71
- onClick={submit}
72
- >
73
- {labels.submit}
74
- </Button>
75
- </span>
76
- </div>
77
- );
78
- };
79
-
80
- export { AccessRightsFormActions };
@@ -1,31 +0,0 @@
1
- import { ReactElement } from 'react';
2
-
3
- import { useFormikContext } from 'formik';
4
-
5
- import { Add as AddIcon } from '@mui/icons-material';
6
-
7
- import { ContactAccessRightResource } from '../AccessRights.resource';
8
- import { IconButton } from '../../../Button';
9
-
10
- type AddActionProps = {
11
- label?: string;
12
- };
13
-
14
- const AddAction = ({ label }: AddActionProps): ReactElement => {
15
- const { dirty, isValid, submitForm } =
16
- useFormikContext<Partial<ContactAccessRightResource>>();
17
-
18
- return (
19
- <IconButton
20
- aria-label={label}
21
- data-testid="add"
22
- disabled={!dirty || !isValid}
23
- icon={<AddIcon />}
24
- size="medium"
25
- variant="primary"
26
- onClick={submitForm}
27
- />
28
- );
29
- };
30
-
31
- export { AddAction };
@@ -1,54 +0,0 @@
1
- import { ReactElement, ReactNode } from 'react';
2
-
3
- import { Meta, StoryObj } from '@storybook/react';
4
-
5
- import {
6
- AccessRightsFormProvider,
7
- AccessRightsFormProviderProps
8
- } from '../useAccessRightsForm';
9
- import { contactsAndGroupsMock } from '../__fixtures__/contactAccessRight.mock';
10
-
11
- import { ContactAccessRightInput } from './ContactAccessRightInput';
12
-
13
- const meta: Meta<typeof ContactAccessRightInput> = {
14
- component: ContactAccessRightInput,
15
- title: 'components/Form/AccessRights/ContactAccessRightInput'
16
- };
17
-
18
- export default meta;
19
- type Story = StoryObj<typeof ContactAccessRightInput>;
20
-
21
- const Wrapper = ({ children }: { children: ReactNode }): ReactElement => {
22
- const options: AccessRightsFormProviderProps['options'] = {
23
- contacts: contactsAndGroupsMock(25),
24
- roles: [{ role: 'viewer' }, { role: 'editor' }]
25
- };
26
-
27
- return (
28
- <AccessRightsFormProvider options={options}>
29
- {children}
30
- </AccessRightsFormProvider>
31
- );
32
- };
33
-
34
- export const Default: Story = {
35
- args: {
36
- labels: {
37
- actions: {
38
- add: 'Add'
39
- },
40
- fields: {
41
- contact: {
42
- group: 'group',
43
- noOptionsText: 'No contacts found',
44
- placeholder: 'Add Contact...'
45
- }
46
- }
47
- }
48
- },
49
- render: (args) => (
50
- <Wrapper>
51
- <ContactAccessRightInput labels={args.labels} />
52
- </Wrapper>
53
- )
54
- };