@centreon/ui 24.4.1-sync-release-34022.1 → 24.4.1-sync-dev-2404.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.
Files changed (221) 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 +88 -0
  63. package/src/Graph/Tree/Links.tsx +64 -0
  64. package/src/Graph/Tree/StandaloneTree.tsx +32 -0
  65. package/src/Graph/Tree/Tree.cypress.spec.tsx +171 -0
  66. package/src/Graph/Tree/Tree.stories.tsx +144 -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 +52 -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 +218 -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/TopCounterElements/TopCounterLayout.tsx +3 -0
  104. package/src/TopCounterElements/useCloseOnLegacyPage.tsx +42 -0
  105. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +27 -0
  106. package/src/Typography/FluidTypography/index.stories.tsx +2 -2
  107. package/src/Typography/FluidTypography/index.tsx +21 -28
  108. package/src/api/index.ts +3 -3
  109. package/src/api/useGraphQuery/index.ts +26 -5
  110. package/src/api/useGraphQuery/models.ts +5 -0
  111. package/src/api/useMutationQuery/index.test.ts +4 -4
  112. package/src/api/useMutationQuery/index.ts +24 -13
  113. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +76 -0
  114. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +26 -0
  115. package/src/components/CollapsibleItem/CollapsibleItem.tsx +43 -14
  116. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +24 -1
  117. package/src/components/DataTable/DataTable.cypress.spec.tsx +14 -33
  118. package/src/components/DataTable/Item/DataTableItem.tsx +4 -60
  119. package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.cypress.spec.tsx +36 -13
  120. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ContactSwitch.tsx +11 -3
  121. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.styles.ts +8 -0
  122. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.tsx +1 -0
  123. package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/useShareInput.tsx +4 -0
  124. package/src/components/Form/{AccessRightsV2 → AccessRights}/models.ts +1 -0
  125. package/src/components/Form/{AccessRightsV2 → AccessRights}/storiesData.ts +23 -22
  126. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +85 -0
  127. package/src/components/Form/Dashboard/index.ts +1 -0
  128. package/src/components/Form/FormActions.tsx +7 -2
  129. package/src/components/Form/index.ts +2 -2
  130. package/src/components/ItemComposition/Item.tsx +1 -1
  131. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +113 -0
  132. package/src/components/ItemComposition/ItemComposition.stories.tsx +14 -0
  133. package/src/components/ItemComposition/ItemComposition.styles.ts +36 -3
  134. package/src/components/ItemComposition/ItemComposition.tsx +41 -17
  135. package/src/components/List/Item/ListItem.tsx +3 -3
  136. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +168 -0
  137. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +62 -0
  138. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +87 -0
  139. package/src/components/Modal/Modal.styles.ts +8 -3
  140. package/src/components/Modal/index.ts +2 -0
  141. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +3 -3
  142. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +1 -1
  143. package/src/components/Tooltip/ConfirmationTooltip/models.ts +1 -1
  144. package/src/components/Zoom/Minimap.tsx +127 -0
  145. package/src/components/Zoom/Zoom.cypress.spec.tsx +246 -0
  146. package/src/components/Zoom/Zoom.stories.tsx +115 -0
  147. package/src/components/Zoom/Zoom.styles.tsx +68 -0
  148. package/src/components/Zoom/Zoom.tsx +61 -0
  149. package/src/components/Zoom/ZoomContent.tsx +167 -0
  150. package/src/components/Zoom/constants.ts +2 -0
  151. package/src/components/Zoom/localPoint.ts +51 -0
  152. package/src/components/Zoom/models.ts +25 -0
  153. package/src/components/Zoom/useMinimap.ts +156 -0
  154. package/src/components/Zoom/useZoom.ts +70 -0
  155. package/src/components/Zoom/utils.ts +55 -0
  156. package/src/components/index.ts +1 -0
  157. package/src/index.ts +1 -0
  158. package/src/utils/index.ts +2 -0
  159. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +130 -0
  160. package/src/utils/useFullscreen/atoms.ts +3 -0
  161. package/src/utils/useFullscreen/index.ts +2 -0
  162. package/src/utils/useFullscreen/translatedLabels.ts +1 -0
  163. package/src/utils/useFullscreen/useFullscreen.ts +73 -0
  164. package/src/utils/useFullscreen/useFullscreenListener.ts +62 -0
  165. package/src/utils/useInfiniteScrollListing.ts +4 -1
  166. package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +0 -46
  167. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +0 -96
  168. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +0 -107
  169. package/src/Graph/LineChart/Legend/InteractiveValue.tsx +0 -22
  170. package/src/Graph/LineChart/Legend/useInteractiveValues.ts +0 -99
  171. package/src/Typography/FluidTypography/useFluidResizeObserver.ts +0 -56
  172. package/src/components/Form/AccessRights/AccessRights.resource.ts +0 -45
  173. package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +0 -59
  174. package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +0 -21
  175. package/src/components/Form/AccessRights/AccessRightsForm.tsx +0 -67
  176. package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +0 -80
  177. package/src/components/Form/AccessRights/Input/AddAction.tsx +0 -31
  178. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +0 -54
  179. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +0 -72
  180. package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +0 -22
  181. package/src/components/Form/AccessRights/Input/ContactInputField.tsx +0 -105
  182. package/src/components/Form/AccessRights/Input/RoleInputField.tsx +0 -29
  183. package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +0 -97
  184. package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +0 -71
  185. package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +0 -51
  186. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +0 -116
  187. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +0 -118
  188. package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +0 -26
  189. package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +0 -28
  190. package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +0 -18
  191. package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +0 -41
  192. package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +0 -54
  193. package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +0 -18
  194. package/src/components/Form/AccessRights/common/GroupLabel.tsx +0 -15
  195. package/src/components/Form/AccessRights/common/Input.styles.ts +0 -48
  196. package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +0 -11
  197. package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +0 -57
  198. package/src/components/Form/AccessRights/index.ts +0 -3
  199. package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +0 -531
  200. package/src/components/Form/AccessRights/useAccessRightsForm.tsx +0 -282
  201. package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +0 -41
  202. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.stories.tsx +0 -0
  203. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.styles.ts +0 -0
  204. /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.tsx +0 -0
  205. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.styles.ts +0 -0
  206. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.tsx +0 -0
  207. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/useActions.ts +0 -0
  208. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/Item.tsx +0 -0
  209. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.styles.tsx +0 -0
  210. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.tsx +0 -0
  211. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListItemSkeleton.tsx +0 -0
  212. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListSkeleton.tsx +0 -0
  213. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/RemoveAccessRight.tsx +0 -0
  214. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/StateChip.tsx +0 -0
  215. /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/useItem.ts +0 -0
  216. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Provider.tsx +0 -0
  217. /package/src/components/Form/{AccessRightsV2 → AccessRights}/Stats/Stats.tsx +0 -0
  218. /package/src/components/Form/{AccessRightsV2 → AccessRights}/atoms.ts +0 -0
  219. /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.styles.tsx +0 -0
  220. /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.tsx +0 -0
  221. /package/src/components/Form/{AccessRightsV2 → AccessRights}/useAccessRightsInitValues.ts +0 -0
@@ -0,0 +1,167 @@
1
+ import { useEffect, useRef, useState } from 'react';
2
+
3
+ import { RectClipPath } from '@visx/clip-path';
4
+ import { ProvidedZoom } from '@visx/zoom/lib/types';
5
+
6
+ import ZoomInIcon from '@mui/icons-material/Add';
7
+ import ZoomOutIcon from '@mui/icons-material/Remove';
8
+ import ReplayIcon from '@mui/icons-material/Replay';
9
+
10
+ import { IconButton } from '../Button';
11
+
12
+ import { minimapScale, radius } from './constants';
13
+ import { useZoom } from './useZoom';
14
+ import { useZoomStyles } from './Zoom.styles';
15
+ import Minimap from './Minimap';
16
+ import { ChildrenProps, MinimapPosition, ZoomState } from './models';
17
+
18
+ export interface Props {
19
+ children: ({ width, height, transformMatrix }: ChildrenProps) => JSX.Element;
20
+ height: number;
21
+ minimapPosition: MinimapPosition;
22
+ showMinimap?: boolean;
23
+ width: number;
24
+ zoom: ProvidedZoom<SVGSVGElement> & ZoomState;
25
+ }
26
+
27
+ const ZoomContent = ({
28
+ zoom,
29
+ width,
30
+ height,
31
+ children,
32
+ showMinimap,
33
+ minimapPosition
34
+ }: Props): JSX.Element => {
35
+ const { classes } = useZoomStyles();
36
+ const contentRef = useRef<SVGGElement | null>(null);
37
+ const minimapSvgRef = useRef<SVGSVGElement | null>(null);
38
+ const minimapContentRef = useRef<SVGSVGElement | null>(null);
39
+ const [contentClientRect, setContentClientRect] = useState<{
40
+ height: number;
41
+ width: number;
42
+ } | null>(null);
43
+
44
+ const resizeObserver = new ResizeObserver(() => {
45
+ const contentBoundingClientRect = (
46
+ contentRef.current as SVGGElement
47
+ ).getBoundingClientRect();
48
+
49
+ setContentClientRect({
50
+ height: contentBoundingClientRect.height,
51
+ width: contentBoundingClientRect.width
52
+ });
53
+ });
54
+
55
+ useEffect(() => {
56
+ if (contentRef.current) {
57
+ resizeObserver.disconnect();
58
+ resizeObserver.observe(contentRef.current);
59
+ }
60
+
61
+ return () => {
62
+ resizeObserver.disconnect();
63
+ };
64
+ }, [contentRef.current]);
65
+
66
+ const { move, dragEnd, dragStart, isDragging } = useZoom();
67
+
68
+ const diffBetweenContentAndSvg = minimapSvgRef.current &&
69
+ minimapContentRef.current && {
70
+ left:
71
+ minimapContentRef.current.getBoundingClientRect().left -
72
+ minimapSvgRef.current.getBoundingClientRect().left,
73
+ top:
74
+ minimapContentRef.current.getBoundingClientRect().top -
75
+ minimapSvgRef.current.getBoundingClientRect().top
76
+ };
77
+
78
+ return (
79
+ <div style={{ position: 'relative' }}>
80
+ <svg
81
+ className={classes.svg}
82
+ data-is-grabbing={isDragging}
83
+ data-testid="zoom-container"
84
+ height={height}
85
+ width={width}
86
+ onMouseDown={dragStart(zoom)}
87
+ onMouseEnter={dragStart(zoom)}
88
+ onMouseLeave={dragEnd}
89
+ onMouseMove={move(zoom)}
90
+ onMouseUp={dragEnd}
91
+ onWheel={zoom.handleWheel}
92
+ >
93
+ <RectClipPath
94
+ height={Math.max(contentClientRect?.height || 0, height)}
95
+ id="zoom-clip"
96
+ rx={radius}
97
+ width={Math.max(contentClientRect?.width || 0, width)}
98
+ />
99
+ <g
100
+ data-testid="zoom-content"
101
+ ref={contentRef}
102
+ transform={zoom.toString()}
103
+ >
104
+ {children({
105
+ contentClientRect,
106
+ height,
107
+ transformMatrix: zoom.transformMatrix,
108
+ width
109
+ })}
110
+ </g>
111
+ </svg>
112
+ <div className={classes.actionsAndZoom} data-position={minimapPosition}>
113
+ {showMinimap && contentClientRect && (
114
+ <svg
115
+ className={classes.minimapContainer}
116
+ data-testid="minimap"
117
+ height={height * minimapScale}
118
+ ref={minimapSvgRef}
119
+ width={width * minimapScale}
120
+ >
121
+ <Minimap
122
+ contentClientRect={contentClientRect}
123
+ diffBetweenContentAndSvg={
124
+ diffBetweenContentAndSvg || { left: 0, top: 0 }
125
+ }
126
+ height={height}
127
+ isDraggingFromContainer={isDragging}
128
+ width={width}
129
+ zoom={zoom}
130
+ >
131
+ <g ref={minimapContentRef}>
132
+ {children({
133
+ contentClientRect,
134
+ height,
135
+ transformMatrix: zoom.transformMatrix,
136
+ width
137
+ })}
138
+ </g>
139
+ </Minimap>
140
+ </svg>
141
+ )}
142
+ <div className={classes.actions}>
143
+ <IconButton
144
+ data-testid="zoom in"
145
+ icon={<ZoomInIcon />}
146
+ size="small"
147
+ onClick={() => zoom.scale({ scaleX: 1.2, scaleY: 1.2 })}
148
+ />
149
+ <IconButton
150
+ data-testid="zoom out"
151
+ icon={<ZoomOutIcon />}
152
+ size="small"
153
+ onClick={() => zoom.scale({ scaleX: 0.8, scaleY: 0.8 })}
154
+ />
155
+ <IconButton
156
+ data-testid="clear"
157
+ icon={<ReplayIcon />}
158
+ size="small"
159
+ onClick={zoom.reset}
160
+ />
161
+ </div>
162
+ </div>
163
+ </div>
164
+ );
165
+ };
166
+
167
+ export default ZoomContent;
@@ -0,0 +1,2 @@
1
+ export const radius = 16;
2
+ export const minimapScale = 0.2;
@@ -0,0 +1,51 @@
1
+ import type {
2
+ FocusEvent as ReactFocusEvent,
3
+ MouseEvent as ReactMouseEvent,
4
+ TouchEvent as ReactTouchEvent
5
+ } from 'react';
6
+
7
+ import { Point } from '@visx/point';
8
+
9
+ type EventType =
10
+ | MouseEvent
11
+ | TouchEvent
12
+ | FocusEvent
13
+ | ReactFocusEvent
14
+ | ReactMouseEvent
15
+ | ReactTouchEvent;
16
+
17
+ type PointCoords = Pick<Point, 'x' | 'y'>;
18
+
19
+ const DEFAULT_POINT = { x: 0, y: 0 };
20
+
21
+ const isTouchEvent = (event?: EventType): event is TouchEvent =>
22
+ !!event && 'changedTouches' in event;
23
+
24
+ export const isMouseEvent = (event?: EventType): event is MouseEvent =>
25
+ !!event && 'clientX' in event;
26
+
27
+ const getXAndYFromEvent = (event?: EventType): PointCoords => {
28
+ if (!event) return { ...DEFAULT_POINT };
29
+
30
+ if (isTouchEvent(event)) {
31
+ return event.changedTouches.length > 0
32
+ ? {
33
+ x: event.changedTouches[0].clientX,
34
+ y: event.changedTouches[0].clientY
35
+ }
36
+ : { ...DEFAULT_POINT };
37
+ }
38
+
39
+ if (isMouseEvent(event)) {
40
+ return {
41
+ x: event.clientX,
42
+ y: event.clientY
43
+ };
44
+ }
45
+
46
+ return { ...DEFAULT_POINT };
47
+ };
48
+
49
+ export const localPoint = (event: EventType): PointCoords | null => {
50
+ return getXAndYFromEvent(event);
51
+ };
@@ -0,0 +1,25 @@
1
+ export interface ZoomState {
2
+ transformMatrix: {
3
+ scaleX: number;
4
+ scaleY: number;
5
+ skewX: number;
6
+ skewY: number;
7
+ translateX: number;
8
+ translateY: number;
9
+ };
10
+ }
11
+
12
+ export type MinimapPosition =
13
+ | 'top-left'
14
+ | 'top-right'
15
+ | 'bottom-left'
16
+ | 'bottom-right';
17
+
18
+ export interface ChildrenProps extends ZoomState {
19
+ contentClientRect: {
20
+ height: number;
21
+ width: number;
22
+ } | null;
23
+ height: number;
24
+ width: number;
25
+ }
@@ -0,0 +1,156 @@
1
+ import { useCallback, useState } from 'react';
2
+
3
+ import { ProvidedZoom, Translate } from '@visx/zoom/lib/types';
4
+ import { equals, gt, isNil, pick } from 'ramda';
5
+ import { Point } from '@visx/point';
6
+
7
+ import { ZoomState } from './models';
8
+
9
+ export interface UseMinimapProps {
10
+ height: number;
11
+ isDraggingFromContainer: boolean;
12
+ minimapScale: number;
13
+ scale: number;
14
+ width: number;
15
+ zoom: ProvidedZoom<SVGSVGElement> & ZoomState;
16
+ }
17
+
18
+ interface UseMinimapState {
19
+ dragEnd: (e) => void;
20
+ dragStart: (e) => void;
21
+ move: (e) => void;
22
+ transformTo: (e) => void;
23
+ zoomInOut: (e) => void;
24
+ }
25
+
26
+ export const useMinimap = ({
27
+ width,
28
+ height,
29
+ zoom,
30
+ minimapScale,
31
+ isDraggingFromContainer,
32
+ scale
33
+ }: UseMinimapProps): UseMinimapState => {
34
+ const [startPoint, setStartPoint] = useState<Pick<Point, 'x' | 'y'> | null>(
35
+ null
36
+ );
37
+ const [startTranslate, setStartTranslate] = useState<Translate | null>(null);
38
+
39
+ const getMatrixPoint = useCallback(
40
+ (event, newScale?: number): { x: number; y: number } => {
41
+ const hasScale = scale > 1;
42
+ const point = {
43
+ x: event.nativeEvent.offsetX * (1 / minimapScale),
44
+ y: event.nativeEvent.offsetY * (1 / minimapScale)
45
+ };
46
+
47
+ const dx = -(
48
+ point.x * (newScale || zoom.transformMatrix.scaleX) -
49
+ width / 2
50
+ );
51
+ const dy = -(
52
+ point.y * (newScale || zoom.transformMatrix.scaleY) -
53
+ height / 2
54
+ );
55
+
56
+ return {
57
+ x: !hasScale ? dx : dx * scale - width / 2,
58
+ y: !hasScale ? dy : dy * scale - height / 2
59
+ };
60
+ },
61
+ [zoom.transformMatrix, scale, width, height, minimapScale]
62
+ );
63
+
64
+ const transformTo = useCallback(
65
+ (e): void => {
66
+ if (!isNil(e.nativeEvent.which) && !equals(e.nativeEvent.which, 1)) {
67
+ return;
68
+ }
69
+ const { x, y } = getMatrixPoint(e);
70
+ zoom.setTransformMatrix({
71
+ ...zoom.transformMatrix,
72
+ translateX: x,
73
+ translateY: y
74
+ });
75
+ },
76
+ [zoom.transformMatrix, scale]
77
+ );
78
+
79
+ const dragStart = (e): void => {
80
+ if (
81
+ (!isNil(e.nativeEvent.which) && !equals(e.nativeEvent.which, 1)) ||
82
+ isDraggingFromContainer
83
+ ) {
84
+ return;
85
+ }
86
+ setStartPoint(getMatrixPoint(e));
87
+ setStartTranslate(pick(['translateX', 'translateY'], zoom.transformMatrix));
88
+ };
89
+
90
+ const dragEnd = (): void => {
91
+ setStartPoint(null);
92
+ setStartTranslate(null);
93
+ };
94
+
95
+ const move = useCallback(
96
+ (e): void => {
97
+ if (!startPoint || !startTranslate) {
98
+ return;
99
+ }
100
+ const { x, y } = getMatrixPoint(e);
101
+
102
+ const diffX = startPoint.x - x;
103
+ const diffY = startPoint.y - y;
104
+
105
+ zoom.setTransformMatrix({
106
+ ...zoom.transformMatrix,
107
+ translateX: startTranslate.translateX - diffX,
108
+ translateY: startTranslate.translateY - diffY
109
+ });
110
+ },
111
+
112
+ [zoom.transformMatrix, isDraggingFromContainer, scale, startPoint]
113
+ );
114
+
115
+ const zoomInOut = useCallback(
116
+ (e): void => {
117
+ const isZoomIn = gt(0, e.deltaY);
118
+
119
+ const newScaleX = isZoomIn
120
+ ? zoom.transformMatrix.scaleX + 0.1
121
+ : zoom.transformMatrix.scaleX - 0.1;
122
+
123
+ const newScaleY = isZoomIn
124
+ ? zoom.transformMatrix.scaleX + 0.1
125
+ : zoom.transformMatrix.scaleX - 0.1;
126
+ const { x, y } = getMatrixPoint(e, newScaleX);
127
+
128
+ const diffX = x - zoom.transformMatrix.translateX;
129
+ const diffY = y - zoom.transformMatrix.translateY;
130
+
131
+ zoom.setTransformMatrix({
132
+ ...zoom.transformMatrix,
133
+ scaleX: newScaleX,
134
+ scaleY: newScaleY,
135
+ translateX: zoom.transformMatrix.translateX + diffX / 4,
136
+ translateY: zoom.transformMatrix.translateY + diffY / 4
137
+ });
138
+ },
139
+ [
140
+ zoom.transformMatrix,
141
+ width,
142
+ height,
143
+ isDraggingFromContainer,
144
+ scale,
145
+ startPoint
146
+ ]
147
+ );
148
+
149
+ return {
150
+ dragEnd,
151
+ dragStart,
152
+ move,
153
+ transformTo,
154
+ zoomInOut
155
+ };
156
+ };
@@ -0,0 +1,70 @@
1
+ import { useCallback, useState } from 'react';
2
+
3
+ import { Point, ProvidedZoom, Translate } from '@visx/zoom/lib/types';
4
+ import { equals, isNil } from 'ramda';
5
+
6
+ import { localPoint } from './localPoint';
7
+ import { ZoomState } from './models';
8
+
9
+ const isLeftMouseButtonClicked = (e): boolean =>
10
+ !isNil(e.nativeEvent.which) && equals(e.nativeEvent.which, 1);
11
+
12
+ interface UseZoomState {
13
+ dragEnd: () => void;
14
+ dragStart: (zoom: ProvidedZoom<SVGSVGElement> & ZoomState) => (e) => void;
15
+ isDragging: boolean;
16
+ move: (zoom: ProvidedZoom<SVGSVGElement> & ZoomState) => (e) => void;
17
+ }
18
+
19
+ export const useZoom = (): UseZoomState => {
20
+ const [startTranslate, setStartTranslate] = useState<Translate | null>(null);
21
+ const [startPoint, setStartPoint] = useState<Point | null>(null);
22
+
23
+ const dragStart = useCallback(
24
+ (zoom: ProvidedZoom<SVGSVGElement> & ZoomState) =>
25
+ (e): void => {
26
+ if (!isLeftMouseButtonClicked(e)) {
27
+ return;
28
+ }
29
+ const { translateX, translateY } = zoom.transformMatrix;
30
+ setStartPoint(localPoint(e) || null);
31
+ setStartTranslate({ translateX, translateY });
32
+ },
33
+ []
34
+ );
35
+
36
+ const move = useCallback(
37
+ (zoom: ProvidedZoom<SVGSVGElement> & ZoomState) =>
38
+ (e): void => {
39
+ if (!startPoint || !startTranslate) {
40
+ return;
41
+ }
42
+ const currentPoint = localPoint(e);
43
+ const dx = currentPoint
44
+ ? -(startPoint.x - currentPoint.x)
45
+ : -startPoint.x;
46
+ const dy = currentPoint
47
+ ? -(startPoint.y - currentPoint.y)
48
+ : -startPoint.y;
49
+
50
+ const translateX = startTranslate.translateX + dx;
51
+ const translateY = startTranslate.translateY + dy;
52
+ zoom.setTranslate({
53
+ translateX,
54
+ translateY
55
+ });
56
+ },
57
+ [startPoint, startTranslate]
58
+ );
59
+ const dragEnd = useCallback((): void => {
60
+ setStartPoint(null);
61
+ setStartTranslate(null);
62
+ }, []);
63
+
64
+ return {
65
+ dragEnd,
66
+ dragStart,
67
+ isDragging: Boolean(startPoint && startTranslate),
68
+ move
69
+ };
70
+ };
@@ -0,0 +1,55 @@
1
+ import { CSSProperties } from 'react';
2
+
3
+ interface Props {
4
+ contentClientRect: {
5
+ height: number;
6
+ width: number;
7
+ } | null;
8
+ }
9
+
10
+ export const applyTranformStylesForZoom = ({
11
+ contentClientRect
12
+ }: Props): CSSProperties => {
13
+ const contentRect = {
14
+ height: contentClientRect?.height || 1,
15
+ width: contentClientRect?.width || 1
16
+ };
17
+ const isPortrait = contentRect.height > contentRect.width;
18
+ const sizes = isPortrait ? ['width', 'height'] : ['height', 'width'];
19
+ const sizeScale = contentRect[sizes[0]] / contentRect[sizes[1]];
20
+
21
+ const lengthToUse = isPortrait
22
+ ? contentRect[sizes[1]] - contentRect[sizes[0]]
23
+ : contentRect[sizes[0]];
24
+
25
+ const t = sizeScale > 0.85 && isPortrait ? sizeScale * 4 : sizeScale / 2;
26
+ const xScaleFactor = sizeScale > 0.7 && !isPortrait ? 10 : 6;
27
+
28
+ return {
29
+ transform: `translate(-${isPortrait ? 0 : contentRect.width * (sizeScale / xScaleFactor)}px, -${lengthToUse * (isPortrait ? t + 0.08 : t / 2)}px)`
30
+ };
31
+ };
32
+
33
+ // DO NOT REMOVE: As the component is in work in progress, please this code in case we need
34
+ // const getAdditionalPadding = (): number => {
35
+ // if (additionalScale > 0.05) {
36
+ // return 0;
37
+ // }
38
+
39
+ // const padding =
40
+ // additionalScale > 0.012
41
+ // ? (1 / additionalScale) * (1 / zoom.transformMatrix.scaleY)
42
+ // : 1 / additionalScale / zoom.transformMatrix.scaleY;
43
+
44
+ // if (additionalScale < 0.009) {
45
+ // const tweakScale = scaleLinear({
46
+ // clamp: true,
47
+ // domain: [0.009, 0.002],
48
+ // range: [1, 8]
49
+ // });
50
+
51
+ // return padding - padding / tweakScale(additionalScale);
52
+ // }
53
+
54
+ // return padding;
55
+ // };
@@ -11,3 +11,4 @@ export * from './ItemComposition';
11
11
  export * from './Avatar';
12
12
  export * from './CollapsibleItem';
13
13
  export * from './Inputs';
14
+ export { default as Zoom } from './Zoom/Zoom';
package/src/index.ts CHANGED
@@ -23,6 +23,7 @@ export { default as RegexpHelpTooltip } from './InputField/Search/RegexpHelpTool
23
23
 
24
24
  export { default as TextField } from './InputField/Text';
25
25
  export type { Props as TextFieldProps } from './InputField/Text';
26
+ export { default as NumberField } from './InputField/Number/Number';
26
27
 
27
28
  export type { SelectEntry } from './InputField/Select';
28
29
  export { default as SelectField } from './InputField/Select';
@@ -20,3 +20,5 @@ export * from './useLicenseExpirationWarning';
20
20
  export * from './useRefreshInterval';
21
21
  export * from './centreonBaseURL';
22
22
  export * from './usePluralizedTranslation';
23
+ export * from './useResizeObserver';
24
+ export * from './useFullscreen';
@@ -0,0 +1,130 @@
1
+ import { Provider, createStore } from 'jotai';
2
+ import { BrowserRouter } from 'react-router-dom';
3
+
4
+ import { Button } from '@mui/material';
5
+
6
+ import { useFullscreen } from './useFullscreen';
7
+ import { router, useFullscreenListener } from './useFullscreenListener';
8
+
9
+ const labelEnterFullscreen = 'Enter fullscreen';
10
+ const labelExitFullscreen = 'Exit fullscreen';
11
+
12
+ const ChildComponent = (): JSX.Element => {
13
+ const { toggleFullscreen, fullscreenEnabled, isFullscreenActivated } =
14
+ useFullscreen();
15
+
16
+ return (
17
+ <div
18
+ data-fullscreenActivated={isFullscreenActivated}
19
+ data-fullscreenEnabled={fullscreenEnabled}
20
+ id="test"
21
+ >
22
+ <Button onClick={() => toggleFullscreen(document.body)}>
23
+ {isFullscreenActivated ? labelExitFullscreen : labelEnterFullscreen}
24
+ </Button>
25
+ <input id="input" />
26
+ <textarea id="textarea" />
27
+ </div>
28
+ );
29
+ };
30
+
31
+ const TestComponent = (): JSX.Element => {
32
+ useFullscreenListener();
33
+
34
+ return <ChildComponent />;
35
+ };
36
+
37
+ const initialize = (): void => {
38
+ const store = createStore();
39
+
40
+ const queryParameters = new Map();
41
+
42
+ cy.stub(router, 'useSearchParams', () => queryParameters);
43
+
44
+ cy.mount({
45
+ Component: (
46
+ <BrowserRouter>
47
+ <Provider store={store}>
48
+ <TestComponent />
49
+ </Provider>
50
+ </BrowserRouter>
51
+ )
52
+ });
53
+ };
54
+
55
+ describe('Fullscreen', () => {
56
+ it('enters fullscreen mode when the button is clicked', () => {
57
+ initialize();
58
+
59
+ cy.get('#test')
60
+ .should('have.attr', 'data-fullscreenActivated', 'false')
61
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
62
+
63
+ cy.contains(labelEnterFullscreen).realClick();
64
+
65
+ cy.get('#test')
66
+ .should('have.attr', 'data-fullscreenActivated', 'true')
67
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
68
+
69
+ cy.contains(labelExitFullscreen).realClick();
70
+ });
71
+
72
+ it('exits fullscreen mode when the button is clicked', () => {
73
+ initialize();
74
+
75
+ cy.get('#test')
76
+ .should('have.attr', 'data-fullscreenActivated', 'false')
77
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
78
+
79
+ cy.contains(labelEnterFullscreen).realClick();
80
+
81
+ cy.get('#test')
82
+ .should('have.attr', 'data-fullscreenActivated', 'true')
83
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
84
+
85
+ cy.contains(labelExitFullscreen).realClick();
86
+
87
+ cy.get('#test')
88
+ .should('have.attr', 'data-fullscreenActivated', 'false')
89
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
90
+ });
91
+
92
+ it('toggles fullscreen mode when the corresponding shortcut is clicked', () => {
93
+ initialize();
94
+
95
+ cy.get('#test')
96
+ .should('have.attr', 'data-fullscreenActivated', 'false')
97
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
98
+
99
+ cy.get('#test').realPress(['F']);
100
+
101
+ cy.get('#test')
102
+ .should('have.attr', 'data-fullscreenActivated', 'true')
103
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
104
+
105
+ cy.get('#test').realPress(['F']);
106
+
107
+ cy.get('#test')
108
+ .should('have.attr', 'data-fullscreenActivated', 'false')
109
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
110
+ });
111
+
112
+ ['input', 'textarea'].forEach((tag) => {
113
+ it(`cannot toggle fullscreen feature using the shortcut when ${tag === 'input' ? 'an' : 'a'} ${tag} is focused`, () => {
114
+ initialize();
115
+
116
+ cy.get('#test')
117
+ .should('have.attr', 'data-fullscreenActivated', 'false')
118
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
119
+
120
+ cy.get(`#${tag}`).focus();
121
+
122
+ cy.get('#test').realPress(['F']);
123
+
124
+ cy.get('#test')
125
+ .should('have.attr', 'data-fullscreenActivated', 'false')
126
+ .should('have.attr', 'data-fullscreenEnabled', 'true');
127
+ cy.get(`#${tag}`).should('have.value', 'F');
128
+ });
129
+ });
130
+ });
@@ -0,0 +1,3 @@
1
+ import { atom } from 'jotai';
2
+
3
+ export const isFullscreenActivatedAtom = atom(false);
@@ -0,0 +1,2 @@
1
+ export * from './useFullscreen';
2
+ export * from './useFullscreenListener';
@@ -0,0 +1 @@
1
+ export const labelCannotEnterInFullscreen = 'Cannot enter fullscreen mode';