@centreon/ui 24.4.21 → 24.4.22
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/README.md +44 -14
- package/package.json +109 -34
- package/public/README.md +39 -0
- package/public/mockServiceWorker.js +303 -0
- package/src/@assets/README.md +5 -0
- package/src/@assets/brand/centreon-logo-one-line-dark.svg +1 -0
- package/src/@assets/brand/centreon-logo-one-line-light.svg +1 -0
- package/src/@assets/icons/downtime.icon.svg +1 -0
- package/src/@types/aria-attributes.d.ts +10 -0
- package/src/@types/data-attributes.d.ts +3 -0
- package/src/@types/globals.d.ts +9 -0
- package/src/@types/vite-env.d.ts +2 -0
- package/src/ActionsList/ActionsList.styles.ts +116 -0
- package/src/ActionsList/index.stories.tsx +74 -0
- package/src/ActionsList/index.tsx +58 -21
- package/src/ActionsList/models.ts +8 -0
- package/src/Button/Icon/index.tsx +12 -3
- package/src/Button/Save/Content.tsx +26 -9
- package/src/Button/Save/StartIcon.tsx +3 -3
- package/src/Button/Save/index.stories.tsx +10 -5
- package/src/Button/Save/index.tsx +11 -4
- package/src/Checkbox/Checkbox.tsx +109 -0
- package/src/Checkbox/CheckboxGroup/index.stories.tsx +41 -0
- package/src/Checkbox/CheckboxGroup/index.tsx +75 -0
- package/src/Checkbox/index.stories.tsx +39 -0
- package/src/Checkbox/index.tsx +2 -0
- package/src/Dashboard/Dashboard.styles.ts +108 -0
- package/src/Dashboard/DashboardLayout.stories.tsx +104 -0
- package/src/Dashboard/Grid.tsx +70 -0
- package/src/Dashboard/Item.tsx +100 -0
- package/src/Dashboard/Layout.tsx +79 -0
- package/src/Dashboard/index.tsx +9 -0
- package/src/Dashboard/utils.ts +28 -0
- package/src/Dialog/Confirm/index.tsx +17 -4
- package/src/Dialog/Duplicate/index.test.tsx +1 -1
- package/src/Dialog/index.tsx +14 -2
- package/src/FallbackPage/FallbackPage.tsx +5 -5
- package/src/FileDropZone/index.tsx +4 -2
- package/src/Form/CollapsibleGroup.tsx +15 -5
- package/src/Form/Form.cypress.spec.tsx +133 -0
- package/src/Form/{index.stories.tsx → Form.stories.tsx} +2 -3
- package/src/Form/Form.styles.ts +11 -0
- package/src/Form/{index.tsx → Form.tsx} +38 -16
- package/src/Form/FormButtons.tsx +2 -4
- package/src/Form/Inputs/Autocomplete.tsx +1 -1
- package/src/Form/Inputs/Checkbox.tsx +57 -0
- package/src/Form/Inputs/CheckboxGroup.tsx +73 -0
- package/src/Form/Inputs/ConnectedAutocomplete.tsx +3 -1
- package/src/Form/Inputs/Grid.tsx +4 -2
- package/src/Form/Inputs/List/Content.tsx +62 -0
- package/src/Form/Inputs/List/List.styles.ts +29 -0
- package/src/Form/Inputs/List/List.tsx +58 -0
- package/src/Form/Inputs/List/useList.ts +81 -0
- package/src/Form/Inputs/Radio.tsx +16 -5
- package/src/Form/Inputs/Switch.tsx +1 -1
- package/src/Form/Inputs/Text.tsx +18 -7
- package/src/Form/Inputs/index.tsx +34 -16
- package/src/Form/Inputs/models.ts +28 -4
- package/src/Form/index.ts +1 -0
- package/src/Form/storiesData.tsx +50 -3
- package/src/Graph/Gauge/AnimatedPie.tsx +102 -0
- package/src/Graph/Gauge/Gauge.stories.tsx +159 -0
- package/src/Graph/Gauge/Gauge.tsx +41 -0
- package/src/Graph/Gauge/PieData.tsx +63 -0
- package/src/Graph/Gauge/ResponsiveGauge.tsx +148 -0
- package/src/Graph/Gauge/Thresholds.tsx +117 -0
- package/src/Graph/Gauge/index.ts +1 -0
- package/src/Graph/Gauge/models.ts +20 -0
- package/src/Graph/HeatMap/HeatMap.stories.tsx +105 -0
- package/src/Graph/HeatMap/HeatMap.styles.tsx +29 -0
- package/src/Graph/HeatMap/HeatMap.tsx +12 -0
- package/src/Graph/HeatMap/HeatMapData.json +137 -0
- package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +98 -0
- package/src/Graph/HeatMap/index.ts +1 -0
- package/src/Graph/HeatMap/model.ts +33 -0
- package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +20 -0
- package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +88 -0
- package/src/Graph/LineChart/BasicComponents/Axes/models.ts +26 -0
- package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +100 -0
- package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +20 -0
- package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +99 -0
- package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +15 -0
- package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +81 -0
- package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +39 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +53 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +43 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +78 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +63 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +69 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +143 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +105 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +46 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +171 -0
- package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +189 -0
- package/src/Graph/LineChart/BasicComponents/Lines/models.ts +45 -0
- package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +46 -0
- package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +64 -0
- package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +77 -0
- package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +60 -0
- package/src/Graph/LineChart/Header/index.tsx +65 -0
- package/src/Graph/LineChart/Icons/Downtime.tsx +9 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +45 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +66 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +76 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +96 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +20 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +62 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +94 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +107 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +114 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +103 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +80 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +27 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +61 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +27 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +25 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +183 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +49 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +25 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +56 -0
- package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +21 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +62 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +74 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +85 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +12 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +72 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +59 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +9 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +67 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +38 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +9 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +107 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +3 -0
- package/src/Graph/LineChart/InteractiveComponents/index.tsx +168 -0
- package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +52 -0
- package/src/Graph/LineChart/Legend/InteractiveValue.tsx +22 -0
- package/src/Graph/LineChart/Legend/Legend.styles.ts +117 -0
- package/src/Graph/LineChart/Legend/LegendContent.tsx +33 -0
- package/src/Graph/LineChart/Legend/LegendHeader.tsx +93 -0
- package/src/Graph/LineChart/Legend/index.tsx +201 -0
- package/src/Graph/LineChart/Legend/models.ts +16 -0
- package/src/Graph/LineChart/Legend/useInteractiveValues.ts +99 -0
- package/src/Graph/LineChart/Legend/useLegend.ts +104 -0
- package/src/Graph/LineChart/LineChart.styles.ts +45 -0
- package/src/Graph/LineChart/LineChart.tsx +317 -0
- package/src/Graph/LineChart/LoadingSkeleton.tsx +44 -0
- package/src/Graph/LineChart/common/index.ts +35 -0
- package/src/Graph/LineChart/graphAtoms.ts +3 -0
- package/src/Graph/LineChart/helpers/doc.ts +563 -0
- package/src/Graph/LineChart/helpers/index.ts +63 -0
- package/src/Graph/LineChart/index.stories.tsx +480 -0
- package/src/Graph/LineChart/index.tsx +115 -0
- package/src/Graph/LineChart/mockedData/annotationData.json +326 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +588 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +588 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +581 -0
- package/src/Graph/LineChart/mockedData/lastDay.json +1326 -0
- package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +3106 -0
- package/src/Graph/LineChart/mockedData/lastDayForward.json +1338 -0
- package/src/Graph/LineChart/mockedData/lastDayThreshold.json +2352 -0
- package/src/Graph/LineChart/mockedData/lastMonth.json +1674 -0
- package/src/Graph/LineChart/mockedData/lastWeek.json +2202 -0
- package/src/Graph/LineChart/mockedData/zoomPreview.json +742 -0
- package/src/Graph/LineChart/models.ts +146 -0
- package/src/Graph/LineChart/translatedLabels.ts +9 -0
- package/src/Graph/LineChart/useLineChartData.ts +49 -0
- package/src/Graph/LineChart/useLineChartIntersection.ts +36 -0
- package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +197 -0
- package/src/Graph/SingleBar/SingleBar.stories.tsx +204 -0
- package/src/Graph/SingleBar/SingleBar.tsx +25 -0
- package/src/Graph/SingleBar/ThresholdLine.tsx +103 -0
- package/src/Graph/SingleBar/Thresholds.tsx +50 -0
- package/src/Graph/SingleBar/index.ts +1 -0
- package/src/Graph/SingleBar/models.ts +10 -0
- package/src/Graph/Text/Text.stories.tsx +123 -0
- package/src/Graph/Text/Text.styles.ts +17 -0
- package/src/Graph/Text/Text.tsx +91 -0
- package/src/Graph/Text/index.ts +1 -0
- package/src/Graph/common/margins.ts +1 -0
- package/src/Graph/common/models.ts +19 -0
- package/src/Graph/common/timeSeries/index.test.ts +624 -0
- package/src/Graph/common/timeSeries/index.ts +626 -0
- package/src/Graph/common/timeSeries/models.ts +129 -0
- package/src/Graph/common/utils.ts +75 -0
- package/src/Graph/index.ts +5 -0
- package/src/Home.stories.mdx +1 -84
- package/src/Image/Image.tsx +11 -1
- package/src/Image/index.stories.tsx +2 -2
- package/src/Image/index.test.tsx +3 -3
- package/src/InputField/Search/PersistentTooltip.tsx +10 -6
- package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +127 -0
- package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +4 -22
- package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +22 -0
- package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +0 -3
- package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +4 -7
- package/src/InputField/Select/Autocomplete/Connected/index.tsx +56 -15
- package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +1 -1
- package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +1 -1
- package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +0 -2
- package/src/InputField/Select/Autocomplete/Draggable/index.tsx +1 -1
- package/src/InputField/Select/Autocomplete/Multi/index.tsx +32 -15
- package/src/InputField/Select/Autocomplete/index.stories.tsx +1 -10
- package/src/InputField/Select/Autocomplete/index.tsx +5 -2
- package/src/InputField/Select/IconPopover/index.tsx +2 -2
- package/src/InputField/Select/index.tsx +3 -2
- package/src/InputField/Text/index.tsx +19 -9
- package/src/Listing/ActionBar/index.tsx +15 -8
- package/src/Listing/Cell/DataCell.styles.ts +24 -0
- package/src/Listing/Cell/DataCell.tsx +58 -69
- package/src/Listing/Cell/index.tsx +88 -8
- package/src/Listing/EmptyResult/EmptyResult.tsx +13 -0
- package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +71 -0
- package/src/Listing/Header/{SortableCell/Content.tsx → Cell/ListingHeaderCell.tsx} +18 -83
- package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +26 -0
- package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +70 -0
- package/src/Listing/Header/ListingHeader.styles.ts +16 -0
- package/src/Listing/Header/{index.tsx → ListingHeader.tsx} +29 -106
- package/src/Listing/Header/_internals/DraggableIconButton.tsx +35 -0
- package/src/Listing/Header/{PredefinedSelectionList.tsx → _internals/PredefinedSelectionList.tsx} +1 -1
- package/src/Listing/Header/index.ts +1 -0
- package/src/Listing/Listing.cypress.spec.tsx +122 -0
- package/src/Listing/Listing.styles.ts +80 -0
- package/src/Listing/ListingDocs.mdx +61 -0
- package/src/Listing/Row/EmptyRow.styles.ts +14 -0
- package/src/Listing/Row/EmptyRow.tsx +30 -0
- package/src/Listing/{Row.tsx → Row/Row.tsx} +12 -11
- package/src/Listing/Row/SkeletonLoaderRows.tsx +23 -0
- package/src/Listing/index.stories.tsx +155 -40
- package/src/Listing/index.test.tsx +1 -1
- package/src/Listing/index.tsx +217 -263
- package/src/Listing/models.ts +1 -0
- package/src/Listing/tableAtoms.ts +15 -10
- package/src/Listing/useStyleTable.ts +9 -9
- package/src/ListingPage/index.stories.tsx +21 -8
- package/src/ListingPage/index.tsx +20 -38
- package/src/Logo/CentreonLogo.tsx +2 -2
- package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +0 -2
- package/src/Module/LicensedModule/LicenseCheck/index.tsx +24 -9
- package/src/Module/LicensedModule/index.tsx +7 -1
- package/src/Module/Module.cypress.spec.tsx +129 -0
- package/src/Module/index.tsx +2 -4
- package/src/Panel/Memoized.tsx +1 -1
- package/src/Panel/Section/index.test.tsx +1 -1
- package/src/Panel/Section/index.tsx +1 -1
- package/src/Panel/index.tsx +10 -6
- package/src/ParentSize/ParentSize.tsx +24 -0
- package/src/ParentSize/index.ts +1 -0
- package/src/PopoverMenu/index.tsx +18 -4
- package/src/RichTextEditor/ContentEditable.tsx +70 -24
- package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +408 -0
- package/src/RichTextEditor/RichTextEditor.tsx +172 -47
- package/src/RichTextEditor/index.stories.tsx +14 -0
- package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +53 -5
- package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +54 -16
- package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +116 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +155 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +31 -92
- package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +106 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +155 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +75 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +32 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +13 -3
- package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +35 -10
- package/src/RichTextEditor/translatedLabels.ts +3 -0
- package/src/Snackbar/index.tsx +14 -4
- package/src/Snackbar/useSnackbar.tsx +5 -1
- package/src/SortableItems/SortableItem.tsx +3 -2
- package/src/SortableItems/index.tsx +2 -7
- package/src/ThemeProvider/index.tsx +42 -10
- package/src/ThemeProvider/palettes.ts +422 -201
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +51 -0
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +95 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +14 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +171 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +76 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +59 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +82 -0
- package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +28 -0
- package/src/TimePeriods/CustomTimePeriod/index.tsx +66 -0
- package/src/TimePeriods/DateTimePickerInput.tsx +77 -0
- package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +65 -0
- package/src/TimePeriods/SelectedTimePeriod.tsx +102 -0
- package/src/TimePeriods/TimePeriods.cypress.spec.tsx +486 -0
- package/src/TimePeriods/TimePeriods.styles.ts +22 -0
- package/src/TimePeriods/helpers/index.ts +26 -0
- package/src/TimePeriods/index.stories.tsx +121 -0
- package/src/TimePeriods/index.tsx +79 -0
- package/src/TimePeriods/mockedData.ts +12 -0
- package/src/TimePeriods/models.ts +97 -0
- package/src/TimePeriods/timePeriodsAtoms.ts +102 -0
- package/src/TimePeriods/translatedLabels.ts +9 -0
- package/src/TimePeriods/useSortTimePeriods.ts +31 -0
- package/src/TimePeriods/useTimePeriod.ts +49 -0
- package/src/Typography/EllipsisTypography.tsx +18 -0
- package/src/Typography/FluidTypography/index.stories.tsx +63 -0
- package/src/Typography/FluidTypography/index.tsx +51 -0
- package/src/Typography/FluidTypography/useFluidResizeObserver.ts +56 -0
- package/src/Typography/Subtitle.tsx +55 -0
- package/src/Typography/{index.stories.tsx → Typography.stories.tsx} +5 -5
- package/src/WallpaperPage/index.stories.tsx +1 -1
- package/src/Wizard/ActionsBar.test.tsx +1 -1
- package/src/Wizard/WizardContent.tsx +2 -3
- package/src/Wizard/index.stories.tsx +5 -18
- package/src/Wizard/index.test.tsx +1 -1
- package/src/Wizard/index.tsx +20 -5
- package/src/Wizard/models.ts +7 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
- package/src/api/QueryProvider.tsx +1 -1
- package/src/api/TestQueryProvider.tsx +2 -1
- package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +35 -26
- package/src/api/buildListingEndpoint/index.test.ts +2 -2
- package/src/api/buildListingEndpoint/index.ts +1 -1
- package/src/api/buildListingEndpoint/models.ts +2 -2
- package/src/api/customFetch.ts +22 -3
- package/src/api/useFetchQuery/index.ts +56 -37
- package/src/api/useGraphQuery/index.ts +166 -0
- package/src/api/useGraphQuery/models.ts +15 -0
- package/src/api/useMutationQuery/index.ts +77 -22
- package/src/api/useRequest/index.ts +9 -6
- package/src/base/tokens/README.md +3 -0
- package/src/base/tokens/source/$metadata.json +5 -0
- package/src/base/tokens/source/base.json +142 -0
- package/src/base/tokens/themes/base.tokens.d.ts +38 -0
- package/src/base/tokens/themes/base.tokens.json +695 -0
- package/src/base/tokens/themes/base.tokens.ts +38 -0
- package/src/base/tokens/themes/ui-dark.tokens.d.ts +38 -0
- package/src/base/tokens/themes/ui-dark.tokens.json +695 -0
- package/src/base/tokens/themes/ui-dark.tokens.ts +38 -0
- package/src/base/tokens/themes/ui-light.tokens.d.ts +38 -0
- package/src/base/tokens/themes/ui-light.tokens.json +695 -0
- package/src/base/tokens/themes/ui-light.tokens.ts +38 -0
- package/src/components/Avatar/Avatar.stories.tsx +23 -0
- package/src/components/Avatar/Avatar.styles.ts +11 -0
- package/src/components/Avatar/Avatar.tsx +32 -0
- package/src/components/Avatar/index.ts +1 -0
- package/src/components/Button/Button.stories.tsx +34 -0
- package/src/components/Button/Button.styles.ts +44 -0
- package/src/components/Button/Button.tsx +78 -0
- package/src/components/Button/Icon/IconButton.stories.tsx +18 -0
- package/src/components/Button/Icon/IconButton.styles.ts +14 -0
- package/src/components/Button/Icon/IconButton.tsx +62 -0
- package/src/components/Button/Icon/index.tsx +1 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +25 -0
- package/src/components/CollapsibleItem/CollapsibleItem.tsx +47 -0
- package/src/components/CollapsibleItem/index.ts +1 -0
- package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +15 -0
- package/src/components/DataTable/DataListing.tsx +6 -0
- package/src/components/DataTable/DataTable.cypress.spec.tsx +193 -0
- package/src/components/DataTable/DataTable.stories.tsx +91 -0
- package/src/components/DataTable/DataTable.styles.ts +30 -0
- package/src/components/DataTable/DataTable.tsx +35 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +21 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +26 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +53 -0
- package/src/components/DataTable/Item/DataTableItem.stories.tsx +25 -0
- package/src/components/DataTable/Item/DataTableItem.styles.ts +38 -0
- package/src/components/DataTable/Item/DataTableItem.tsx +123 -0
- package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +13 -0
- package/src/components/DataTable/index.ts +12 -0
- package/src/components/Form/AccessRights/AccessRights.resource.ts +45 -0
- package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +59 -0
- package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +21 -0
- package/src/components/Form/AccessRights/AccessRightsForm.tsx +67 -0
- package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +80 -0
- package/src/components/Form/AccessRights/Input/AddAction.tsx +31 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +54 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +72 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +22 -0
- package/src/components/Form/AccessRights/Input/ContactInputField.tsx +105 -0
- package/src/components/Form/AccessRights/Input/RoleInputField.tsx +29 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +97 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +71 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +51 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +116 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +118 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +26 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +28 -0
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +18 -0
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +41 -0
- package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +54 -0
- package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +18 -0
- package/src/components/Form/AccessRights/common/GroupLabel.tsx +15 -0
- package/src/components/Form/AccessRights/common/Input.styles.ts +48 -0
- package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +11 -0
- package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +57 -0
- package/src/components/Form/AccessRights/index.ts +3 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +531 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.tsx +282 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +41 -0
- package/src/components/Form/AccessRightsV2/AccessRights.cypress.spec.tsx +350 -0
- package/src/components/Form/AccessRightsV2/AccessRights.stories.tsx +119 -0
- package/src/components/Form/AccessRightsV2/AccessRights.styles.ts +10 -0
- package/src/components/Form/AccessRightsV2/AccessRights.tsx +60 -0
- package/src/components/Form/AccessRightsV2/Actions/Actions.styles.ts +14 -0
- package/src/components/Form/AccessRightsV2/Actions/Actions.tsx +81 -0
- package/src/components/Form/AccessRightsV2/Actions/useActions.ts +79 -0
- package/src/components/Form/AccessRightsV2/List/Item.tsx +90 -0
- package/src/components/Form/AccessRightsV2/List/List.styles.tsx +45 -0
- package/src/components/Form/AccessRightsV2/List/List.tsx +52 -0
- package/src/components/Form/AccessRightsV2/List/ListItemSkeleton.tsx +18 -0
- package/src/components/Form/AccessRightsV2/List/ListSkeleton.tsx +22 -0
- package/src/components/Form/AccessRightsV2/List/RemoveAccessRight.tsx +38 -0
- package/src/components/Form/AccessRightsV2/List/StateChip.tsx +28 -0
- package/src/components/Form/AccessRightsV2/List/useItem.ts +64 -0
- package/src/components/Form/AccessRightsV2/Provider.tsx +15 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ContactSwitch.tsx +42 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.styles.ts +9 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.tsx +77 -0
- package/src/components/Form/AccessRightsV2/ShareInput/useShareInput.tsx +109 -0
- package/src/components/Form/AccessRightsV2/Stats/Stats.tsx +36 -0
- package/src/components/Form/AccessRightsV2/atoms.ts +97 -0
- package/src/components/Form/AccessRightsV2/common/RoleSelectField.styles.tsx +7 -0
- package/src/components/Form/AccessRightsV2/common/RoleSelectField.tsx +45 -0
- package/src/components/Form/AccessRightsV2/models.ts +54 -0
- package/src/components/Form/AccessRightsV2/storiesData.ts +221 -0
- package/src/components/Form/AccessRightsV2/useAccessRightsInitValues.ts +51 -0
- package/src/components/Form/Dashboard/Dashboard.resource.ts +9 -0
- package/src/components/Form/Dashboard/DashboardForm.stories.ts +39 -0
- package/src/components/Form/Dashboard/DashboardForm.styles.ts +21 -0
- package/src/components/Form/Dashboard/DashboardForm.tsx +137 -0
- package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +59 -0
- package/src/components/Form/Dashboard/index.ts +2 -0
- package/src/components/Form/Dashboard/translatedLabels.ts +9 -0
- package/src/components/Form/Form.models.ts +1 -0
- package/src/components/Form/Form.resource.ts +1 -0
- package/src/components/Form/Form.styles.ts +17 -0
- package/src/components/Form/FormActions.tsx +57 -0
- package/src/components/Form/index.ts +4 -0
- package/src/components/Header/PageHeader/PageHeader.stories.tsx +97 -0
- package/src/components/Header/PageHeader/PageHeader.styles.ts +126 -0
- package/src/components/Header/PageHeader/PageHeader.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderActions.tsx +17 -0
- package/src/components/Header/PageHeader/PageHeaderMain.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderMenu.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderMessage.tsx +32 -0
- package/src/components/Header/PageHeader/PageHeaderTitle.tsx +47 -0
- package/src/components/Header/PageHeader/index.ts +14 -0
- package/src/components/Header/index.ts +1 -0
- package/src/components/Icon/Icon.styles.ts +0 -0
- package/src/components/Icon/Icon.tsx +2 -0
- package/src/components/Icon/index.ts +0 -0
- package/src/components/Inputs/Switch/Switch.stories.tsx +22 -0
- package/src/components/Inputs/Switch/Switch.styles.ts +13 -0
- package/src/components/Inputs/Switch/Switch.tsx +18 -0
- package/src/components/Inputs/index.ts +1 -0
- package/src/components/ItemComposition/Item.tsx +41 -0
- package/src/components/ItemComposition/ItemComposition.stories.tsx +78 -0
- package/src/components/ItemComposition/ItemComposition.styles.ts +29 -0
- package/src/components/ItemComposition/ItemComposition.tsx +47 -0
- package/src/components/ItemComposition/index.ts +6 -0
- package/src/components/Layout/AreaIndicator.styles.ts +33 -0
- package/src/components/Layout/AreaIndicator.tsx +35 -0
- package/src/components/Layout/PageLayout/PageLayout.stories.tsx +81 -0
- package/src/components/Layout/PageLayout/PageLayout.styles.ts +41 -0
- package/src/components/Layout/PageLayout/PageLayout.tsx +21 -0
- package/src/components/Layout/PageLayout/PageLayoutActions.tsx +25 -0
- package/src/components/Layout/PageLayout/PageLayoutBody.tsx +25 -0
- package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +19 -0
- package/src/components/Layout/PageLayout/PageQuickAccess.tsx +76 -0
- package/src/components/Layout/PageLayout/index.ts +12 -0
- package/src/components/Layout/PageLayout.cypress.spec.tsx +66 -0
- package/src/components/Layout/index.ts +1 -0
- package/src/components/List/Item/Avatar.tsx +21 -0
- package/src/components/List/Item/AvatarSkeleton.tsx +17 -0
- package/src/components/List/Item/ListItem.stories.tsx +41 -0
- package/src/components/List/Item/ListItem.styles.ts +63 -0
- package/src/components/List/Item/ListItem.tsx +34 -0
- package/src/components/List/Item/Text.tsx +27 -0
- package/src/components/List/Item/TextSkeleton.tsx +22 -0
- package/src/components/List/Item/index.ts +14 -0
- package/src/components/List/List.stories.tsx +70 -0
- package/src/components/List/List.styles.ts +8 -0
- package/src/components/List/List.tsx +19 -0
- package/src/components/List/index.ts +6 -0
- package/src/components/Menu/Button/MenuButton.stories.tsx +16 -0
- package/src/components/Menu/Button/MenuButton.styles.ts +27 -0
- package/src/components/Menu/Button/MenuButton.tsx +67 -0
- package/src/components/Menu/Button/index.ts +1 -0
- package/src/components/Menu/Menu.stories.tsx +71 -0
- package/src/components/Menu/Menu.styles.ts +68 -0
- package/src/components/Menu/Menu.tsx +25 -0
- package/src/components/Menu/MenuDivider.tsx +13 -0
- package/src/components/Menu/MenuItem.tsx +38 -0
- package/src/components/Menu/MenuItems.tsx +36 -0
- package/src/components/Menu/index.ts +12 -0
- package/src/components/Menu/useMenu.tsx +79 -0
- package/src/components/Modal/Modal.stories.tsx +142 -0
- package/src/components/Modal/Modal.styles.ts +91 -0
- package/src/components/Modal/Modal.tsx +79 -0
- package/src/components/Modal/ModalActions.tsx +64 -0
- package/src/components/Modal/ModalBody.tsx +15 -0
- package/src/components/Modal/ModalHeader.tsx +21 -0
- package/src/components/Modal/index.ts +12 -0
- package/src/components/README.md +3 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +62 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +22 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +68 -0
- package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +31 -0
- package/src/components/Tooltip/ConfirmationTooltip/index.ts +1 -0
- package/src/components/Tooltip/ConfirmationTooltip/models.ts +18 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +70 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +5 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +115 -0
- package/src/components/Tooltip/TextOverflowTooltip/index.tsx +1 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +41 -0
- package/src/components/Tooltip/Tooltip.tsx +57 -0
- package/src/components/Tooltip/index.ts +2 -0
- package/src/components/index.ts +13 -0
- package/src/index.ts +31 -21
- package/src/queryParameters/url/index.ts +5 -1
- package/src/styles/tokens/themes/_ui-dark.tokens.json +695 -0
- package/src/styles/tokens/themes/_ui-light.tokens.json +695 -0
- package/src/utils/centreonBaseURL.ts +4 -0
- package/src/utils/docsURL.ts +31 -0
- package/src/utils/getNormalizedId.ts +1 -3
- package/src/utils/index.ts +22 -0
- package/src/utils/panelSize.ts +15 -0
- package/src/utils/sanitizedHTML.ts +18 -0
- package/src/utils/translatedLabel.ts +2 -0
- package/src/utils/useCopyToClipboard.ts +2 -3
- package/src/utils/useDebounce.ts +8 -5
- package/src/utils/useDeepCallback.ts +1 -3
- package/src/utils/useDeepMemo.ts +1 -3
- package/src/utils/useInfiniteScrollListing.ts +121 -0
- package/src/utils/useIntersectionObserver.ts +5 -5
- package/src/utils/useKeyObserver.tsx +1 -3
- package/src/utils/useLicenseExpirationWarning.test.tsx +148 -0
- package/src/utils/useLicenseExpirationWarning.ts +52 -0
- package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
- package/src/utils/useLocaleDateTimeFormat/index.ts +4 -2
- package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
- package/src/utils/useMemoComponent.ts +1 -1
- package/src/utils/usePluralizedTranslation.ts +21 -0
- package/src/utils/useRefreshInterval.ts +39 -0
- package/src/utils/useResizeObserver.ts +6 -0
- package/src/utils/useThresholds.ts +0 -0
- package/{setupTests.js → test/setupTests.js} +1 -1
- package/{src → test}/testRenderer.tsx +1 -1
- package/.storybook/main.js +0 -82
- package/.storybook/preview.tsx +0 -21
- package/jest.config.js +0 -20
- package/src/Listing/Header/SortableCell/DraggableIcon.tsx +0 -41
- package/src/Listing/Skeleton.tsx +0 -11
- package/src/storyshots.test.js +0 -52
- package/testRunner.js +0 -36
- package/tsconfig.json +0 -29
- package/types/declarations.d.ts +0 -9
- /package/{assets → public/brand}/centreon-logo-one-line-dark.svg +0 -0
- /package/{assets → public/brand}/centreon-logo-one-line-light.svg +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff2 +0 -0
- /package/{assets → src/@assets/images}/not-authorized-template-background-dark.svg +0 -0
- /package/{assets → src/@assets/images}/not-authorized-template-background-light.svg +0 -0
- /package/src/Listing/Header/{Label.tsx → _internals/Label.tsx} +0 -0
- /package/src/Typography/{index.tsx → story.utils.tsx} +0 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { useRef } from 'react';
|
|
2
|
+
|
|
3
|
+
import { equals, has, isEmpty, pluck } from 'ramda';
|
|
4
|
+
import dayjs from 'dayjs';
|
|
5
|
+
|
|
6
|
+
import { LineChartData, buildListingEndpoint, useFetchQuery } from '../..';
|
|
7
|
+
|
|
8
|
+
import { Resource, WidgetResourceType } from './models';
|
|
9
|
+
|
|
10
|
+
interface CustomTimePeriod {
|
|
11
|
+
end: string;
|
|
12
|
+
start: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface UseMetricsQueryProps {
|
|
16
|
+
baseEndpoint: string;
|
|
17
|
+
metrics: Array<string>;
|
|
18
|
+
refreshCount?: number;
|
|
19
|
+
refreshInterval?: number | false;
|
|
20
|
+
resources?: Array<Resource>;
|
|
21
|
+
timePeriod?: {
|
|
22
|
+
end?: string | null;
|
|
23
|
+
start?: string | null;
|
|
24
|
+
timePeriodType: number;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
interface UseMetricsQueryState {
|
|
29
|
+
end: string;
|
|
30
|
+
graphData: LineChartData | undefined;
|
|
31
|
+
isGraphLoading: boolean;
|
|
32
|
+
isMetricsEmpty: boolean;
|
|
33
|
+
start: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const getStartEndFromTimePeriod = (
|
|
37
|
+
timePeriod: number
|
|
38
|
+
): { end: string; start: string } => {
|
|
39
|
+
return {
|
|
40
|
+
end: dayjs().toISOString(),
|
|
41
|
+
start: dayjs().subtract(timePeriod, 'hour').toISOString()
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const isCustomTimePeriod = (
|
|
46
|
+
timePeriod:
|
|
47
|
+
| number
|
|
48
|
+
| {
|
|
49
|
+
end?: string | null;
|
|
50
|
+
start?: string | null;
|
|
51
|
+
}
|
|
52
|
+
): boolean => has('end', timePeriod) && has('start', timePeriod);
|
|
53
|
+
|
|
54
|
+
interface PerformanceGraphData extends Omit<LineChartData, 'global'> {
|
|
55
|
+
base: number;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export const resourceTypeQueryParameter = {
|
|
59
|
+
[WidgetResourceType.host]: 'host.id',
|
|
60
|
+
[WidgetResourceType.hostCategory]: 'hostcategory.id',
|
|
61
|
+
[WidgetResourceType.hostGroup]: 'hostgroup.id',
|
|
62
|
+
[WidgetResourceType.serviceCategory]: 'servicecategory.id',
|
|
63
|
+
[WidgetResourceType.serviceGroup]: 'servicegroup.id',
|
|
64
|
+
[WidgetResourceType.service]: 'service.name'
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
const areResourcesFullfilled = (value: Array<Resource>): boolean =>
|
|
68
|
+
value?.every(
|
|
69
|
+
({ resourceType, resources }) =>
|
|
70
|
+
!isEmpty(resourceType) && !isEmpty(resources)
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
const useGraphQuery = ({
|
|
74
|
+
metrics,
|
|
75
|
+
resources = [],
|
|
76
|
+
baseEndpoint,
|
|
77
|
+
timePeriod = {
|
|
78
|
+
timePeriodType: 1
|
|
79
|
+
},
|
|
80
|
+
refreshInterval = false,
|
|
81
|
+
refreshCount
|
|
82
|
+
}: UseMetricsQueryProps): UseMetricsQueryState => {
|
|
83
|
+
const timePeriodToUse = equals(timePeriod?.timePeriodType, -1)
|
|
84
|
+
? {
|
|
85
|
+
end: timePeriod.end,
|
|
86
|
+
start: timePeriod.start
|
|
87
|
+
}
|
|
88
|
+
: timePeriod?.timePeriodType;
|
|
89
|
+
|
|
90
|
+
const startAndEnd = isCustomTimePeriod(timePeriodToUse)
|
|
91
|
+
? (timePeriodToUse as CustomTimePeriod)
|
|
92
|
+
: getStartEndFromTimePeriod(timePeriodToUse as number);
|
|
93
|
+
|
|
94
|
+
const definedMetrics = metrics.filter((metric) => metric);
|
|
95
|
+
const formattedDefinedMetrics = definedMetrics.map((metric) =>
|
|
96
|
+
encodeURIComponent(metric)
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
const {
|
|
100
|
+
data: graphData,
|
|
101
|
+
isFetching,
|
|
102
|
+
isLoading
|
|
103
|
+
} = useFetchQuery<PerformanceGraphData>({
|
|
104
|
+
getEndpoint: () => {
|
|
105
|
+
const endpoint = buildListingEndpoint({
|
|
106
|
+
baseEndpoint,
|
|
107
|
+
parameters: {
|
|
108
|
+
search: {
|
|
109
|
+
lists: resources.map((resource) => ({
|
|
110
|
+
field: resourceTypeQueryParameter[resource.resourceType],
|
|
111
|
+
values: equals(resource.resourceType, 'service')
|
|
112
|
+
? pluck('name', resource.resources)
|
|
113
|
+
: pluck('id', resource.resources)
|
|
114
|
+
}))
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
return `${endpoint}&start=${startAndEnd.start}&end=${
|
|
120
|
+
startAndEnd.end
|
|
121
|
+
}&metric_names=[${formattedDefinedMetrics.join(',')}]`;
|
|
122
|
+
},
|
|
123
|
+
getQueryKey: () => [
|
|
124
|
+
'graph',
|
|
125
|
+
JSON.stringify(definedMetrics),
|
|
126
|
+
JSON.stringify(resources),
|
|
127
|
+
timePeriod,
|
|
128
|
+
refreshCount || 0
|
|
129
|
+
],
|
|
130
|
+
queryOptions: {
|
|
131
|
+
enabled: areResourcesFullfilled(resources) && !isEmpty(definedMetrics),
|
|
132
|
+
refetchInterval: refreshInterval,
|
|
133
|
+
suspense: false
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
const data = useRef<PerformanceGraphData | undefined>(undefined);
|
|
138
|
+
if (graphData) {
|
|
139
|
+
data.current = graphData;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const formattedGraphData = data.current
|
|
143
|
+
? {
|
|
144
|
+
global: {
|
|
145
|
+
base: data.current.base,
|
|
146
|
+
title: ''
|
|
147
|
+
},
|
|
148
|
+
metrics: data.current.metrics,
|
|
149
|
+
times: data.current.times
|
|
150
|
+
}
|
|
151
|
+
: undefined;
|
|
152
|
+
|
|
153
|
+
const { end, start } = isCustomTimePeriod(timePeriodToUse)
|
|
154
|
+
? (timePeriodToUse as CustomTimePeriod)
|
|
155
|
+
: getStartEndFromTimePeriod(timePeriodToUse as number);
|
|
156
|
+
|
|
157
|
+
return {
|
|
158
|
+
end,
|
|
159
|
+
graphData: formattedGraphData,
|
|
160
|
+
isGraphLoading: isFetching || (isLoading && !isEmpty(definedMetrics)),
|
|
161
|
+
isMetricsEmpty: isEmpty(definedMetrics),
|
|
162
|
+
start
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
export default useGraphQuery;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { SelectEntry } from '../..';
|
|
2
|
+
|
|
3
|
+
export interface Resource {
|
|
4
|
+
resourceType: string;
|
|
5
|
+
resources: Array<SelectEntry>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export enum WidgetResourceType {
|
|
9
|
+
host = 'host',
|
|
10
|
+
hostCategory = 'host-category',
|
|
11
|
+
hostGroup = 'host-group',
|
|
12
|
+
service = 'service',
|
|
13
|
+
serviceCategory = 'service-category',
|
|
14
|
+
serviceGroup = 'service-group'
|
|
15
|
+
}
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import 'ulog';
|
|
2
|
-
import {
|
|
2
|
+
import { useEffect } from 'react';
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
useMutation,
|
|
6
|
+
UseMutationOptions,
|
|
7
|
+
UseMutationResult
|
|
8
|
+
} from '@tanstack/react-query';
|
|
3
9
|
import { JsonDecoder } from 'ts.data.json';
|
|
4
10
|
import anylogger from 'anylogger';
|
|
5
|
-
import { includes } from 'ramda';
|
|
11
|
+
import { includes, omit } from 'ramda';
|
|
6
12
|
|
|
7
13
|
import { CatchErrorProps, customFetch, ResponseError } from '../customFetch';
|
|
8
14
|
import useSnackbar from '../../Snackbar/useSnackbar';
|
|
15
|
+
import { useDeepCompare } from '../../utils';
|
|
9
16
|
|
|
10
17
|
export enum Method {
|
|
11
18
|
DELETE = 'DELETE',
|
|
@@ -15,43 +22,75 @@ export enum Method {
|
|
|
15
22
|
PUT = 'PUT'
|
|
16
23
|
}
|
|
17
24
|
|
|
18
|
-
export
|
|
25
|
+
export type UseMutationQueryProps<T, TMeta> = {
|
|
26
|
+
baseEndpoint?: string;
|
|
19
27
|
catchError?: (props: CatchErrorProps) => void;
|
|
20
28
|
decoder?: JsonDecoder.Decoder<T>;
|
|
21
29
|
defaultFailureMessage?: string;
|
|
22
30
|
fetchHeaders?: HeadersInit;
|
|
23
|
-
getEndpoint: () => string;
|
|
31
|
+
getEndpoint: (_meta: TMeta) => string;
|
|
24
32
|
httpCodesBypassErrorSnackbar?: Array<number>;
|
|
25
33
|
method: Method;
|
|
26
|
-
|
|
34
|
+
onError?: (
|
|
35
|
+
error: ResponseError,
|
|
36
|
+
variables: T & { _meta: TMeta },
|
|
37
|
+
context: unknown
|
|
38
|
+
) => unknown;
|
|
39
|
+
onMutate?: (variables: T & { _meta: TMeta }) => Promise<unknown> | unknown;
|
|
40
|
+
onSuccess?: (
|
|
41
|
+
data: ResponseError | T,
|
|
42
|
+
variables: T & {
|
|
43
|
+
_meta: TMeta;
|
|
44
|
+
},
|
|
45
|
+
context: unknown
|
|
46
|
+
) => unknown;
|
|
47
|
+
} & Omit<
|
|
48
|
+
UseMutationOptions<T & { _meta?: TMeta }>,
|
|
49
|
+
'mutationFn' | 'onError' | 'onMutate' | 'onSuccess'
|
|
50
|
+
>;
|
|
27
51
|
|
|
28
52
|
const log = anylogger('API Request');
|
|
29
53
|
|
|
30
|
-
export
|
|
54
|
+
export type UseMutationQueryState<T> = Omit<
|
|
55
|
+
UseMutationResult<T | ResponseError>,
|
|
56
|
+
'isError'
|
|
57
|
+
> & {
|
|
31
58
|
isError: boolean;
|
|
32
59
|
isMutating: boolean;
|
|
33
|
-
|
|
34
|
-
mutateAsync: (payload) => Promise<T | ResponseError>;
|
|
35
|
-
}
|
|
60
|
+
};
|
|
36
61
|
|
|
37
|
-
const useMutationQuery = <T extends object>({
|
|
62
|
+
const useMutationQuery = <T extends object, TMeta>({
|
|
38
63
|
getEndpoint,
|
|
39
64
|
catchError,
|
|
40
65
|
decoder,
|
|
41
66
|
defaultFailureMessage,
|
|
42
67
|
fetchHeaders,
|
|
43
68
|
httpCodesBypassErrorSnackbar = [],
|
|
44
|
-
method
|
|
45
|
-
|
|
69
|
+
method,
|
|
70
|
+
onMutate,
|
|
71
|
+
onError,
|
|
72
|
+
onSuccess,
|
|
73
|
+
onSettled,
|
|
74
|
+
baseEndpoint
|
|
75
|
+
}: UseMutationQueryProps<T, TMeta>): UseMutationQueryState<T> => {
|
|
46
76
|
const { showErrorMessage } = useSnackbar();
|
|
47
77
|
|
|
48
|
-
const queryData = useMutation<
|
|
49
|
-
|
|
50
|
-
|
|
78
|
+
const queryData = useMutation<
|
|
79
|
+
T | ResponseError,
|
|
80
|
+
ResponseError,
|
|
81
|
+
T & { _meta: TMeta }
|
|
82
|
+
>({
|
|
83
|
+
mutationFn: (
|
|
84
|
+
_payload: T & { _meta: TMeta }
|
|
85
|
+
): Promise<T | ResponseError> => {
|
|
86
|
+
const { _meta, ...payload } = _payload || {};
|
|
87
|
+
|
|
88
|
+
return customFetch<T>({
|
|
89
|
+
baseEndpoint,
|
|
51
90
|
catchError,
|
|
52
91
|
decoder,
|
|
53
92
|
defaultFailureMessage,
|
|
54
|
-
endpoint: getEndpoint(),
|
|
93
|
+
endpoint: getEndpoint(_meta as TMeta),
|
|
55
94
|
headers: new Headers({
|
|
56
95
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
57
96
|
...fetchHeaders
|
|
@@ -59,8 +98,20 @@ const useMutationQuery = <T extends object>({
|
|
|
59
98
|
isMutation: true,
|
|
60
99
|
method,
|
|
61
100
|
payload
|
|
62
|
-
})
|
|
63
|
-
|
|
101
|
+
});
|
|
102
|
+
},
|
|
103
|
+
onError,
|
|
104
|
+
onMutate,
|
|
105
|
+
onSettled,
|
|
106
|
+
onSuccess: (data, variables, context) => {
|
|
107
|
+
if (data?.isError) {
|
|
108
|
+
onError?.(data, variables, context);
|
|
109
|
+
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
112
|
+
onSuccess?.(data, variables, context);
|
|
113
|
+
}
|
|
114
|
+
});
|
|
64
115
|
|
|
65
116
|
const manageError = (): void => {
|
|
66
117
|
const data = queryData.data as ResponseError | undefined;
|
|
@@ -77,13 +128,17 @@ const useMutationQuery = <T extends object>({
|
|
|
77
128
|
}
|
|
78
129
|
};
|
|
79
130
|
|
|
80
|
-
|
|
131
|
+
useEffect(
|
|
132
|
+
() => {
|
|
133
|
+
manageError();
|
|
134
|
+
},
|
|
135
|
+
useDeepCompare([queryData.data])
|
|
136
|
+
);
|
|
81
137
|
|
|
82
138
|
return {
|
|
139
|
+
...omit(['isError'], queryData),
|
|
83
140
|
isError: (queryData.data as ResponseError | undefined)?.isError || false,
|
|
84
|
-
isMutating: queryData.
|
|
85
|
-
mutate: queryData.mutate,
|
|
86
|
-
mutateAsync: queryData.mutateAsync
|
|
141
|
+
isMutating: queryData.isPending
|
|
87
142
|
};
|
|
88
143
|
};
|
|
89
144
|
|
|
@@ -2,7 +2,7 @@ import { useState, useEffect } from 'react';
|
|
|
2
2
|
|
|
3
3
|
import 'ulog';
|
|
4
4
|
import axios from 'axios';
|
|
5
|
-
import { pathOr, defaultTo, path, includes } from 'ramda';
|
|
5
|
+
import { pathOr, defaultTo, path, includes, or } from 'ramda';
|
|
6
6
|
import anylogger from 'anylogger';
|
|
7
7
|
import { JsonDecoder } from 'ts.data.json';
|
|
8
8
|
|
|
@@ -42,12 +42,15 @@ const useRequest = <TResult>({
|
|
|
42
42
|
|
|
43
43
|
const showRequestErrorMessage = (error): void => {
|
|
44
44
|
log.error(error);
|
|
45
|
-
const message = defaultTo(
|
|
46
|
-
pathOr(defaultFailureMessage, ['response', 'data', 'message']),
|
|
47
|
-
getErrorMessage
|
|
48
|
-
)(error);
|
|
49
45
|
|
|
50
|
-
|
|
46
|
+
const message = or(
|
|
47
|
+
pathOr(undefined, ['response', 'data', 'message'], error),
|
|
48
|
+
pathOr(defaultFailureMessage, ['response', 'data'], error)
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
const errorMessage = defaultTo(message, getErrorMessage?.(error));
|
|
52
|
+
|
|
53
|
+
showErrorMessage(errorMessage as string);
|
|
51
54
|
};
|
|
52
55
|
|
|
53
56
|
const sendRequest = (params): Promise<TResult> => {
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"blue": {
|
|
4
|
+
"50": {
|
|
5
|
+
"value": "#ECF4FD",
|
|
6
|
+
"type": "color"
|
|
7
|
+
},
|
|
8
|
+
"100": {
|
|
9
|
+
"value": "#D2E4F9",
|
|
10
|
+
"type": "color"
|
|
11
|
+
},
|
|
12
|
+
"200": {
|
|
13
|
+
"value": "#9EC4F0",
|
|
14
|
+
"type": "color"
|
|
15
|
+
},
|
|
16
|
+
"300": {
|
|
17
|
+
"value": "#6DA4E4",
|
|
18
|
+
"type": "color"
|
|
19
|
+
},
|
|
20
|
+
"400": {
|
|
21
|
+
"value": "#3e85d5",
|
|
22
|
+
"type": "color"
|
|
23
|
+
},
|
|
24
|
+
"500": {
|
|
25
|
+
"value": "#2e68aa",
|
|
26
|
+
"type": "color"
|
|
27
|
+
},
|
|
28
|
+
"600": {
|
|
29
|
+
"value": "#205593",
|
|
30
|
+
"type": "color"
|
|
31
|
+
},
|
|
32
|
+
"700": {
|
|
33
|
+
"value": "#164274",
|
|
34
|
+
"type": "color"
|
|
35
|
+
},
|
|
36
|
+
"800": {
|
|
37
|
+
"value": "#0d2e54",
|
|
38
|
+
"type": "color"
|
|
39
|
+
},
|
|
40
|
+
"900": {
|
|
41
|
+
"value": "#071d37",
|
|
42
|
+
"type": "color"
|
|
43
|
+
},
|
|
44
|
+
"950": {
|
|
45
|
+
"value": "#031326",
|
|
46
|
+
"type": "color"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"purple": {
|
|
50
|
+
"50": {
|
|
51
|
+
"value": "#F8F1F9",
|
|
52
|
+
"type": "color"
|
|
53
|
+
},
|
|
54
|
+
"100": {
|
|
55
|
+
"value": "#F0DEF2",
|
|
56
|
+
"type": "color"
|
|
57
|
+
},
|
|
58
|
+
"200": {
|
|
59
|
+
"value": "#DDAFE4",
|
|
60
|
+
"type": "color"
|
|
61
|
+
},
|
|
62
|
+
"300": {
|
|
63
|
+
"value": "#CE81DA",
|
|
64
|
+
"type": "color"
|
|
65
|
+
},
|
|
66
|
+
"400": {
|
|
67
|
+
"value": "#c151d2",
|
|
68
|
+
"type": "color"
|
|
69
|
+
},
|
|
70
|
+
"500": {
|
|
71
|
+
"value": "#ac28c1",
|
|
72
|
+
"type": "color"
|
|
73
|
+
},
|
|
74
|
+
"600": {
|
|
75
|
+
"value": "#872796",
|
|
76
|
+
"type": "color"
|
|
77
|
+
},
|
|
78
|
+
"700": {
|
|
79
|
+
"value": "#682172",
|
|
80
|
+
"type": "color"
|
|
81
|
+
},
|
|
82
|
+
"800": {
|
|
83
|
+
"value": "#491b50",
|
|
84
|
+
"type": "color"
|
|
85
|
+
},
|
|
86
|
+
"900": {
|
|
87
|
+
"value": "#29112c",
|
|
88
|
+
"type": "color"
|
|
89
|
+
},
|
|
90
|
+
"950": {
|
|
91
|
+
"value": "#1a0d1c",
|
|
92
|
+
"type": "color"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"grey": {
|
|
96
|
+
"50": {
|
|
97
|
+
"value": "#f9fafb",
|
|
98
|
+
"type": "color"
|
|
99
|
+
},
|
|
100
|
+
"100": {
|
|
101
|
+
"value": "#eaedf0",
|
|
102
|
+
"type": "color"
|
|
103
|
+
},
|
|
104
|
+
"200": {
|
|
105
|
+
"value": "#cad0d8",
|
|
106
|
+
"type": "color"
|
|
107
|
+
},
|
|
108
|
+
"300": {
|
|
109
|
+
"value": "#aab4c0",
|
|
110
|
+
"type": "color"
|
|
111
|
+
},
|
|
112
|
+
"400": {
|
|
113
|
+
"value": "#8c98a6",
|
|
114
|
+
"type": "color"
|
|
115
|
+
},
|
|
116
|
+
"500": {
|
|
117
|
+
"value": "#6f7b8a",
|
|
118
|
+
"type": "color"
|
|
119
|
+
},
|
|
120
|
+
"600": {
|
|
121
|
+
"value": "#596573",
|
|
122
|
+
"type": "color"
|
|
123
|
+
},
|
|
124
|
+
"700": {
|
|
125
|
+
"value": "#434e5b",
|
|
126
|
+
"type": "color"
|
|
127
|
+
},
|
|
128
|
+
"800": {
|
|
129
|
+
"value": "#2f3741",
|
|
130
|
+
"type": "color"
|
|
131
|
+
},
|
|
132
|
+
"900": {
|
|
133
|
+
"value": "#1b2127",
|
|
134
|
+
"type": "color"
|
|
135
|
+
},
|
|
136
|
+
"950": {
|
|
137
|
+
"value": "#101418",
|
|
138
|
+
"type": "color"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Sun, 04 Jun 2023 10:14:22 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export const colorBlue50: string;
|
|
7
|
+
export const colorBlue100: string;
|
|
8
|
+
export const colorBlue200: string;
|
|
9
|
+
export const colorBlue300: string;
|
|
10
|
+
export const colorBlue400: string;
|
|
11
|
+
export const colorBlue500: string;
|
|
12
|
+
export const colorBlue600: string;
|
|
13
|
+
export const colorBlue700: string;
|
|
14
|
+
export const colorBlue800: string;
|
|
15
|
+
export const colorBlue900: string;
|
|
16
|
+
export const colorBlue950: string;
|
|
17
|
+
export const colorPurple50: string;
|
|
18
|
+
export const colorPurple100: string;
|
|
19
|
+
export const colorPurple200: string;
|
|
20
|
+
export const colorPurple300: string;
|
|
21
|
+
export const colorPurple400: string;
|
|
22
|
+
export const colorPurple500: string;
|
|
23
|
+
export const colorPurple600: string;
|
|
24
|
+
export const colorPurple700: string;
|
|
25
|
+
export const colorPurple800: string;
|
|
26
|
+
export const colorPurple900: string;
|
|
27
|
+
export const colorPurple950: string;
|
|
28
|
+
export const colorGrey50: string;
|
|
29
|
+
export const colorGrey100: string;
|
|
30
|
+
export const colorGrey200: string;
|
|
31
|
+
export const colorGrey300: string;
|
|
32
|
+
export const colorGrey400: string;
|
|
33
|
+
export const colorGrey500: string;
|
|
34
|
+
export const colorGrey600: string;
|
|
35
|
+
export const colorGrey700: string;
|
|
36
|
+
export const colorGrey800: string;
|
|
37
|
+
export const colorGrey900: string;
|
|
38
|
+
export const colorGrey950: string;
|