@pagamio/frontend-commons-lib 0.8.175 → 0.8.183
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/lib/api/client.d.ts +88 -0
- package/lib/api/client.js +339 -0
- package/lib/api/context.d.ts +112 -0
- package/lib/api/context.js +105 -0
- package/lib/api/index.d.ts +4 -0
- package/lib/api/index.js +4 -0
- package/lib/api/swr.d.ts +46 -0
- package/lib/api/swr.js +124 -0
- package/lib/api/types.d.ts +145 -0
- package/lib/api/types.js +10 -0
- package/lib/auth/authenticators/AuthenticatorFactory.d.ts +25 -0
- package/lib/auth/authenticators/AuthenticatorFactory.js +32 -0
- package/lib/auth/authenticators/index.d.ts +7 -0
- package/lib/auth/authenticators/index.js +7 -0
- package/lib/auth/authenticators/processors/DefaultAuthenticatorProcessor.d.ts +21 -0
- package/lib/auth/authenticators/processors/DefaultAuthenticatorProcessor.js +26 -0
- package/lib/auth/authenticators/processors/StrapiAuthenticatorProcessor.d.ts +74 -0
- package/lib/auth/authenticators/processors/StrapiAuthenticatorProcessor.js +99 -0
- package/lib/auth/authenticators/types.d.ts +26 -0
- package/lib/auth/authenticators/types.js +9 -0
- package/lib/auth/components/AppBanner.d.ts +7 -0
- package/lib/auth/components/AppBanner.js +9 -0
- package/lib/auth/components/AuthCard.d.ts +8 -0
- package/lib/auth/components/AuthCard.js +14 -0
- package/lib/auth/components/AuthFormUtils.d.ts +58 -0
- package/lib/auth/components/AuthFormUtils.js +52 -0
- package/lib/auth/components/AuthPageLayout.d.ts +45 -0
- package/lib/auth/components/AuthPageLayout.js +12 -0
- package/lib/auth/components/ChangePasswordPage.d.ts +12 -0
- package/lib/auth/components/ChangePasswordPage.js +59 -0
- package/lib/auth/components/CustomerRegistrationPage.d.ts +50 -0
- package/lib/auth/components/CustomerRegistrationPage.js +140 -0
- package/lib/auth/components/ForgotPasswordPage.d.ts +38 -0
- package/lib/auth/components/ForgotPasswordPage.js +76 -0
- package/lib/auth/components/LoginPage.d.ts +73 -0
- package/lib/auth/components/LoginPage.js +115 -0
- package/lib/auth/components/LogoutButton.d.ts +30 -0
- package/lib/auth/components/LogoutButton.js +47 -0
- package/lib/auth/components/ResetPasswordPage.d.ts +42 -0
- package/lib/auth/components/ResetPasswordPage.js +88 -0
- package/lib/auth/components/hooks/useChangeUserPassword.d.ts +26 -0
- package/lib/auth/components/hooks/useChangeUserPassword.js +63 -0
- package/lib/auth/components/index.d.ts +8 -0
- package/lib/auth/components/index.js +7 -0
- package/lib/auth/context/AuthContext.d.ts +65 -0
- package/lib/auth/context/AuthContext.js +150 -0
- package/lib/auth/context/index.d.ts +1 -0
- package/lib/auth/context/index.js +1 -0
- package/lib/auth/index.d.ts +7 -0
- package/lib/auth/index.js +7 -0
- package/lib/auth/services/AuthService.d.ts +230 -0
- package/lib/auth/services/AuthService.js +475 -0
- package/lib/auth/services/LogoutService.d.ts +27 -0
- package/lib/auth/services/LogoutService.js +98 -0
- package/lib/auth/services/index.d.ts +2 -0
- package/lib/auth/services/index.js +2 -0
- package/lib/auth/shared/index.d.ts +1 -0
- package/lib/auth/shared/index.js +1 -0
- package/lib/auth/shared/layout/AuthPageLayout.d.ts +10 -0
- package/lib/auth/shared/layout/AuthPageLayout.js +16 -0
- package/lib/auth/shared/layout/index.d.ts +1 -0
- package/lib/auth/shared/layout/index.js +1 -0
- package/lib/auth/types/auth.types.d.ts +234 -0
- package/lib/auth/types/auth.types.js +14 -0
- package/lib/auth/types/index.d.ts +1 -0
- package/lib/auth/types/index.js +1 -0
- package/lib/auth/utils/TokenManager.d.ts +43 -0
- package/lib/auth/utils/TokenManager.js +171 -0
- package/lib/auth/utils/Transformers.d.ts +158 -0
- package/lib/auth/utils/Transformers.js +263 -0
- package/lib/auth/utils/errorDetection.d.ts +22 -0
- package/lib/auth/utils/errorDetection.js +190 -0
- package/lib/auth/utils/index.d.ts +3 -0
- package/lib/auth/utils/index.js +3 -0
- package/lib/components/charts/LineGraph.d.ts +15 -0
- package/lib/components/charts/LineGraph.js +131 -0
- package/lib/components/icons/Icon.d.ts +8 -0
- package/lib/components/icons/Icon.js +13 -0
- package/lib/components/icons/index.d.ts +2 -0
- package/lib/components/icons/index.js +2 -0
- package/lib/components/icons/types.d.ts +26 -0
- package/lib/components/icons/types.js +33 -0
- package/lib/components/index.d.ts +3 -0
- package/lib/components/index.js +3 -0
- package/lib/components/layout/AppLayout.d.ts +34 -0
- package/lib/components/layout/AppLayout.js +19 -0
- package/lib/components/layout/AuthPageLayout.d.ts +13 -0
- package/lib/components/layout/AuthPageLayout.js +15 -0
- package/lib/components/layout/BreadcrumbNav.d.ts +2 -0
- package/lib/components/layout/BreadcrumbNav.js +10 -0
- package/lib/components/layout/LayoutContent.d.ts +6 -0
- package/lib/components/layout/LayoutContent.js +10 -0
- package/lib/components/layout/Navbar.d.ts +106 -0
- package/lib/components/layout/Navbar.js +66 -0
- package/lib/components/layout/PageHeader.d.ts +8 -0
- package/lib/components/layout/PageHeader.js +7 -0
- package/lib/components/layout/SessionExpiryModal.d.ts +10 -0
- package/lib/components/layout/SessionExpiryModal.js +9 -0
- package/lib/components/layout/Sidebar.d.ts +6 -0
- package/lib/components/layout/Sidebar.js +87 -0
- package/lib/components/layout/VerticalTabsLayout.d.ts +12 -0
- package/lib/components/layout/VerticalTabsLayout.js +14 -0
- package/lib/components/layout/index.d.ts +9 -0
- package/lib/components/layout/index.js +9 -0
- package/lib/components/ui/Avatar.d.ts +6 -0
- package/lib/components/ui/Avatar.js +11 -0
- package/lib/components/ui/AvatarIcon.d.ts +4 -0
- package/lib/components/ui/AvatarIcon.js +6 -0
- package/lib/components/ui/Button.d.ts +14 -0
- package/lib/components/ui/Button.js +30 -0
- package/lib/components/ui/Calendar.d.ts +9 -0
- package/lib/components/ui/Calendar.js +35 -0
- package/lib/components/ui/Card.d.ts +16 -0
- package/lib/components/ui/Card.js +6 -0
- package/lib/components/ui/Chart.d.ts +2 -0
- package/lib/components/ui/Chart.js +16 -0
- package/lib/components/ui/Checkbox.d.ts +4 -0
- package/lib/components/ui/Checkbox.js +8 -0
- package/lib/components/ui/Command.d.ts +80 -0
- package/lib/components/ui/Command.js +28 -0
- package/lib/components/ui/ContainedTab.d.ts +21 -0
- package/lib/components/ui/ContainedTab.js +37 -0
- package/lib/components/ui/DateFormat.d.ts +6 -0
- package/lib/components/ui/DateFormat.js +8 -0
- package/lib/components/ui/DatePicker.d.ts +14 -0
- package/lib/components/ui/DatePicker.js +91 -0
- package/lib/components/ui/DateRangeModal.d.ts +38 -0
- package/lib/components/ui/DateRangeModal.js +89 -0
- package/lib/components/ui/DetailsCard.d.ts +16 -0
- package/lib/components/ui/DetailsCard.js +14 -0
- package/lib/components/ui/DetailsPage.d.ts +36 -0
- package/lib/components/ui/DetailsPage.js +50 -0
- package/lib/components/ui/Dialog.d.ts +19 -0
- package/lib/components/ui/Dialog.js +22 -0
- package/lib/components/ui/EmptyState.d.ts +6 -0
- package/lib/components/ui/EmptyState.js +6 -0
- package/lib/components/ui/FilterComponent.d.ts +30 -0
- package/lib/components/ui/FilterComponent.js +80 -0
- package/lib/components/ui/FilterList.d.ts +52 -0
- package/lib/components/ui/FilterList.js +62 -0
- package/lib/components/ui/FilterSection.d.ts +31 -0
- package/lib/components/ui/FilterSection.js +21 -0
- package/lib/components/ui/FilterWrapper.d.ts +6 -0
- package/lib/components/ui/FilterWrapper.js +7 -0
- package/lib/components/ui/Form.d.ts +23 -0
- package/lib/components/ui/Form.js +62 -0
- package/lib/components/ui/HoverableValue.d.ts +7 -0
- package/lib/components/ui/HoverableValue.js +8 -0
- package/lib/components/ui/IconButton.d.ts +10 -0
- package/lib/components/ui/IconButton.js +10 -0
- package/lib/components/ui/ImageComponent.d.ts +8 -0
- package/lib/components/ui/ImageComponent.js +5 -0
- package/lib/components/ui/ImageUploader.d.ts +17 -0
- package/lib/components/ui/ImageUploader.js +144 -0
- package/lib/components/ui/Input.d.ts +4 -0
- package/lib/components/ui/Input.js +8 -0
- package/lib/components/ui/Label.d.ts +5 -0
- package/lib/components/ui/Label.js +9 -0
- package/lib/components/ui/Loader.d.ts +10 -0
- package/lib/components/ui/Loader.js +7 -0
- package/lib/components/ui/Modal.d.ts +72 -0
- package/lib/components/ui/Modal.js +31 -0
- package/lib/components/ui/MultiSelect.d.ts +16 -0
- package/lib/components/ui/MultiSelect.js +59 -0
- package/lib/components/ui/NotificationModal.d.ts +18 -0
- package/lib/components/ui/NotificationModal.js +40 -0
- package/lib/components/ui/PhoneInput.d.ts +12 -0
- package/lib/components/ui/PhoneInput.js +58 -0
- package/lib/components/ui/Popover.d.ts +7 -0
- package/lib/components/ui/Popover.js +10 -0
- package/lib/components/ui/Progress.d.ts +7 -0
- package/lib/components/ui/Progress.js +7 -0
- package/lib/components/ui/Radio.d.ts +5 -0
- package/lib/components/ui/Radio.js +14 -0
- package/lib/components/ui/RangeDatePicker.d.ts +78 -0
- package/lib/components/ui/RangeDatePicker.js +68 -0
- package/lib/components/ui/Select.d.ts +13 -0
- package/lib/components/ui/Select.js +57 -0
- package/lib/components/ui/Separator.d.ts +4 -0
- package/lib/components/ui/Separator.js +7 -0
- package/lib/components/ui/Sheet.d.ts +26 -0
- package/lib/components/ui/Sheet.js +37 -0
- package/lib/components/ui/StatusCell.d.ts +9 -0
- package/lib/components/ui/StatusCell.js +6 -0
- package/lib/components/ui/Switch.d.ts +10 -0
- package/lib/components/ui/Switch.js +22 -0
- package/lib/components/ui/Tab.d.ts +15 -0
- package/lib/components/ui/Tab.js +13 -0
- package/lib/components/ui/TableDownload.d.ts +11 -0
- package/lib/components/ui/TableDownload.js +82 -0
- package/lib/components/ui/TailwindIndicator.d.ts +1 -0
- package/lib/components/ui/TailwindIndicator.js +6 -0
- package/lib/components/ui/TextField.d.ts +60 -0
- package/lib/components/ui/TextField.js +42 -0
- package/lib/components/ui/Textarea.d.ts +5 -0
- package/lib/components/ui/Textarea.js +8 -0
- package/lib/components/ui/Toast.d.ts +12 -0
- package/lib/components/ui/Toast.js +25 -0
- package/lib/components/ui/UploadField.d.ts +15 -0
- package/lib/components/ui/UploadField.js +45 -0
- package/lib/components/ui/VerticalTab.d.ts +16 -0
- package/lib/components/ui/VerticalTab.js +13 -0
- package/lib/components/ui/index.d.ts +49 -0
- package/lib/components/ui/index.js +47 -0
- package/lib/context/BreadcrumbContext.d.ts +28 -0
- package/lib/context/BreadcrumbContext.js +238 -0
- package/lib/context/FormEngineDrawerProvider.d.ts +21 -0
- package/lib/context/FormEngineDrawerProvider.js +38 -0
- package/lib/context/MultiFormEngineDrawerProvider.d.ts +25 -0
- package/lib/context/MultiFormEngineDrawerProvider.js +89 -0
- package/lib/context/SidebarContext.d.ts +65 -0
- package/lib/context/SidebarContext.js +47 -0
- package/lib/context/ToastContext.d.ts +17 -0
- package/lib/context/ToastContext.js +29 -0
- package/lib/context/index.d.ts +5 -0
- package/lib/context/index.js +5 -0
- package/lib/dashboard-visuals/components/BaseChart.d.ts +55 -0
- package/lib/dashboard-visuals/components/BaseChart.js +201 -0
- package/lib/dashboard-visuals/components/CardWrapper.d.ts +10 -0
- package/lib/dashboard-visuals/components/CardWrapper.js +13 -0
- package/lib/dashboard-visuals/components/ChartDetailsModal.d.ts +57 -0
- package/lib/dashboard-visuals/components/ChartDetailsModal.js +27 -0
- package/lib/dashboard-visuals/components/ChartDetailsModalWrapper.d.ts +29 -0
- package/lib/dashboard-visuals/components/ChartDetailsModalWrapper.js +4 -0
- package/lib/dashboard-visuals/components/ChartFormatter.d.ts +22 -0
- package/lib/dashboard-visuals/components/ChartFormatter.js +46 -0
- package/lib/dashboard-visuals/components/ChartWrapper.d.ts +11 -0
- package/lib/dashboard-visuals/components/ChartWrapper.js +14 -0
- package/lib/dashboard-visuals/components/DashboardFilter.d.ts +8 -0
- package/lib/dashboard-visuals/components/DashboardFilter.js +17 -0
- package/lib/dashboard-visuals/components/DataTable.d.ts +3 -0
- package/lib/dashboard-visuals/components/DataTable.js +57 -0
- package/lib/dashboard-visuals/components/EmptyState.d.ts +6 -0
- package/lib/dashboard-visuals/components/EmptyState.js +6 -0
- package/lib/dashboard-visuals/components/ErrorState.d.ts +7 -0
- package/lib/dashboard-visuals/components/ErrorState.js +5 -0
- package/lib/dashboard-visuals/components/FilterComponentSkeleton.d.ts +3 -0
- package/lib/dashboard-visuals/components/FilterComponentSkeleton.js +11 -0
- package/lib/dashboard-visuals/components/Pagination.d.ts +10 -0
- package/lib/dashboard-visuals/components/Pagination.js +7 -0
- package/lib/dashboard-visuals/components/Switch.d.ts +8 -0
- package/lib/dashboard-visuals/components/Switch.js +10 -0
- package/lib/dashboard-visuals/components/TileSkeleton.d.ts +2 -0
- package/lib/dashboard-visuals/components/TileSkeleton.js +5 -0
- package/lib/dashboard-visuals/components/molecules/Analytics.d.ts +11 -0
- package/lib/dashboard-visuals/components/molecules/Analytics.js +9 -0
- package/lib/dashboard-visuals/components/molecules/DataGrid.d.ts +15 -0
- package/lib/dashboard-visuals/components/molecules/DataGrid.js +124 -0
- package/lib/dashboard-visuals/components/molecules/NoChartData.d.ts +6 -0
- package/lib/dashboard-visuals/components/molecules/NoChartData.js +6 -0
- package/lib/dashboard-visuals/components/molecules/VisualChart.d.ts +16 -0
- package/lib/dashboard-visuals/components/molecules/VisualChart.js +8 -0
- package/lib/dashboard-visuals/components/types.d.ts +62 -0
- package/lib/dashboard-visuals/components/types.js +1 -0
- package/lib/dashboard-visuals/hooks/useChartData.d.ts +15 -0
- package/lib/dashboard-visuals/hooks/useChartData.js +82 -0
- package/lib/dashboard-visuals/hooks/useTooltipFormatter.d.ts +13 -0
- package/lib/dashboard-visuals/hooks/useTooltipFormatter.js +10 -0
- package/lib/dashboard-visuals/index.d.ts +39 -0
- package/lib/dashboard-visuals/index.js +168 -0
- package/lib/dashboard-visuals/types/index.d.ts +83 -0
- package/lib/dashboard-visuals/types/index.js +1 -0
- package/lib/dashboard-visuals/types/metricDetailData.d.ts +25 -0
- package/lib/dashboard-visuals/types/metricDetailData.js +1 -0
- package/lib/dashboard-visuals/utils/api.d.ts +5 -0
- package/lib/dashboard-visuals/utils/api.js +6 -0
- package/lib/dashboard-visuals/utils/chartOptions.d.ts +481 -0
- package/lib/dashboard-visuals/utils/chartOptions.js +393 -0
- package/lib/dashboard-visuals/utils/chunkArray.d.ts +1 -0
- package/lib/dashboard-visuals/utils/chunkArray.js +7 -0
- package/lib/dashboard-visuals/utils/defaultColors.d.ts +1 -0
- package/lib/dashboard-visuals/utils/defaultColors.js +1 -0
- package/lib/dashboard-visuals/utils/formatUtil.d.ts +203 -0
- package/lib/dashboard-visuals/utils/formatUtil.js +472 -0
- package/lib/dashboard-visuals/utils/gridUtil.d.ts +11 -0
- package/lib/dashboard-visuals/utils/gridUtil.js +32 -0
- package/lib/dashboard-visuals/utils/index.d.ts +6 -0
- package/lib/dashboard-visuals/utils/index.js +6 -0
- package/lib/dashboard-visuals/utils/tooltipUtils.d.ts +11 -0
- package/lib/dashboard-visuals/utils/tooltipUtils.js +180 -0
- package/lib/dashboard-visuals/visualRegistry.d.ts +4 -0
- package/lib/dashboard-visuals/visualRegistry.js +41 -0
- package/lib/dashboard-visuals/visuals/BarChart.d.ts +58 -0
- package/lib/dashboard-visuals/visuals/BarChart.js +95 -0
- package/lib/dashboard-visuals/visuals/BarLineHybridChart.d.ts +33 -0
- package/lib/dashboard-visuals/visuals/BarLineHybridChart.js +60 -0
- package/lib/dashboard-visuals/visuals/BubbleChart.d.ts +25 -0
- package/lib/dashboard-visuals/visuals/BubbleChart.js +101 -0
- package/lib/dashboard-visuals/visuals/DistributionChart.d.ts +11 -0
- package/lib/dashboard-visuals/visuals/DistributionChart.js +48 -0
- package/lib/dashboard-visuals/visuals/DonutChart.d.ts +50 -0
- package/lib/dashboard-visuals/visuals/DonutChart.js +105 -0
- package/lib/dashboard-visuals/visuals/GaugeChart.d.ts +32 -0
- package/lib/dashboard-visuals/visuals/GaugeChart.js +53 -0
- package/lib/dashboard-visuals/visuals/GroupedBarChart.d.ts +47 -0
- package/lib/dashboard-visuals/visuals/GroupedBarChart.js +131 -0
- package/lib/dashboard-visuals/visuals/HeatmapChart.d.ts +79 -0
- package/lib/dashboard-visuals/visuals/HeatmapChart.js +146 -0
- package/lib/dashboard-visuals/visuals/HorizontalBarChart.d.ts +50 -0
- package/lib/dashboard-visuals/visuals/HorizontalBarChart.js +131 -0
- package/lib/dashboard-visuals/visuals/ItemPerformanceCard.d.ts +30 -0
- package/lib/dashboard-visuals/visuals/ItemPerformanceCard.js +31 -0
- package/lib/dashboard-visuals/visuals/LineChart.d.ts +56 -0
- package/lib/dashboard-visuals/visuals/LineChart.js +80 -0
- package/lib/dashboard-visuals/visuals/LineGraph.d.ts +50 -0
- package/lib/dashboard-visuals/visuals/LineGraph.js +189 -0
- package/lib/dashboard-visuals/visuals/MetricSummaryCard.d.ts +14 -0
- package/lib/dashboard-visuals/visuals/MetricSummaryCard.js +8 -0
- package/lib/dashboard-visuals/visuals/MultiGaugeChart.d.ts +39 -0
- package/lib/dashboard-visuals/visuals/MultiGaugeChart.js +119 -0
- package/lib/dashboard-visuals/visuals/PieChart.d.ts +59 -0
- package/lib/dashboard-visuals/visuals/PieChart.js +194 -0
- package/lib/dashboard-visuals/visuals/SelectedEventTile.d.ts +14 -0
- package/lib/dashboard-visuals/visuals/SelectedEventTile.js +35 -0
- package/lib/dashboard-visuals/visuals/SpeedometerChart.d.ts +53 -0
- package/lib/dashboard-visuals/visuals/SpeedometerChart.js +94 -0
- package/lib/dashboard-visuals/visuals/Table.d.ts +26 -0
- package/lib/dashboard-visuals/visuals/Table.js +113 -0
- package/lib/dashboard-visuals/visuals/Tile.d.ts +16 -0
- package/lib/dashboard-visuals/visuals/Tile.js +16 -0
- package/lib/dashboard-visuals/visuals/TreeMap.d.ts +25 -0
- package/lib/dashboard-visuals/visuals/TreeMap.js +45 -0
- package/lib/dashboard-visuals/visuals/WaterfallChart.d.ts +52 -0
- package/lib/dashboard-visuals/visuals/WaterfallChart.js +266 -0
- package/lib/form-engine/Form.d.ts +4 -0
- package/lib/form-engine/Form.js +14 -0
- package/lib/form-engine/FormEngine.d.ts +3 -0
- package/lib/form-engine/FormEngine.js +121 -0
- package/lib/form-engine/components/FieldWrapper.d.ts +18 -0
- package/lib/form-engine/components/FieldWrapper.js +63 -0
- package/lib/form-engine/components/index.d.ts +2 -0
- package/lib/form-engine/components/index.js +2 -0
- package/lib/form-engine/components/inputs/card-expiry-input/CardExpiryInput.d.ts +16 -0
- package/lib/form-engine/components/inputs/card-expiry-input/CardExpiryInput.js +48 -0
- package/lib/form-engine/components/inputs/checkbox-input/CheckboxInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/checkbox-input/CheckboxInput.js +5 -0
- package/lib/form-engine/components/inputs/credit-card-input/CreditCardInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/credit-card-input/CreditCardInput.js +82 -0
- package/lib/form-engine/components/inputs/date-input/DateInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/date-input/DateInput.js +7 -0
- package/lib/form-engine/components/inputs/date-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/date-input/index.js +1 -0
- package/lib/form-engine/components/inputs/email-input/EmailInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/email-input/EmailInput.js +5 -0
- package/lib/form-engine/components/inputs/email-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/email-input/index.js +1 -0
- package/lib/form-engine/components/inputs/index.d.ts +13 -0
- package/lib/form-engine/components/inputs/index.js +13 -0
- package/lib/form-engine/components/inputs/label-input/LabelInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/label-input/LabelInput.js +7 -0
- package/lib/form-engine/components/inputs/label-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/label-input/index.js +1 -0
- package/lib/form-engine/components/inputs/multi-select-input/MultiSelectInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/multi-select-input/MultiSelectInput.js +5 -0
- package/lib/form-engine/components/inputs/number-input/NumberInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/number-input/NumberInput.js +5 -0
- package/lib/form-engine/components/inputs/number-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/number-input/index.js +1 -0
- package/lib/form-engine/components/inputs/password-input/PasswordInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/password-input/PasswordInput.js +9 -0
- package/lib/form-engine/components/inputs/password-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/password-input/index.js +1 -0
- package/lib/form-engine/components/inputs/radio-button/RadioInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/radio-button/RadioInput.js +6 -0
- package/lib/form-engine/components/inputs/radio-button/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/radio-button/index.js +1 -0
- package/lib/form-engine/components/inputs/select/SelectInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/select/SelectInput.js +6 -0
- package/lib/form-engine/components/inputs/select/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/select/index.js +1 -0
- package/lib/form-engine/components/inputs/textarea-input/TextareaInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/textarea-input/TextareaInput.js +5 -0
- package/lib/form-engine/components/inputs/textarea-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/textarea-input/index.js +1 -0
- package/lib/form-engine/components/inputs/time-input/TimeInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/time-input/TimeInput.js +5 -0
- package/lib/form-engine/components/inputs/time-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/time-input/index.js +1 -0
- package/lib/form-engine/components/inputs/toggle-switch-input/ToggleSwitchInput.d.ts +4 -0
- package/lib/form-engine/components/inputs/toggle-switch-input/ToggleSwitchInput.js +7 -0
- package/lib/form-engine/components/inputs/toggle-switch-input/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/toggle-switch-input/index.js +1 -0
- package/lib/form-engine/components/inputs/upload-field/UploadFieldForm.d.ts +4 -0
- package/lib/form-engine/components/inputs/upload-field/UploadFieldForm.js +59 -0
- package/lib/form-engine/components/inputs/upload-field/index.d.ts +1 -0
- package/lib/form-engine/components/inputs/upload-field/index.js +1 -0
- package/lib/form-engine/hooks/useFormPersistence.d.ts +11 -0
- package/lib/form-engine/hooks/useFormPersistence.js +46 -0
- package/lib/form-engine/index.d.ts +5 -0
- package/lib/form-engine/index.js +5 -0
- package/lib/form-engine/registry/RegisterComponents.d.ts +1 -0
- package/lib/form-engine/registry/RegisterComponents.js +35 -0
- package/lib/form-engine/registry/Registry.d.ts +5 -0
- package/lib/form-engine/registry/Registry.js +13 -0
- package/lib/form-engine/registry/index.d.ts +2 -0
- package/lib/form-engine/registry/index.js +2 -0
- package/lib/form-engine/types/index.d.ts +311 -0
- package/lib/form-engine/types/index.js +1 -0
- package/lib/helpers/index.d.ts +2 -0
- package/lib/helpers/index.js +2 -0
- package/lib/helpers/utils.d.ts +37 -0
- package/lib/helpers/utils.js +77 -0
- package/lib/helpers/validations.d.ts +80 -0
- package/lib/helpers/validations.js +39 -0
- package/lib/index.d.ts +21 -0
- package/lib/index.js +30 -0
- package/lib/mocks/mockApiRequestsConfig.d.ts +2 -0
- package/lib/mocks/mockApiRequestsConfig.js +343 -0
- package/lib/pagamio-drawer/TopUpWalletDrawer/TopUpWalletContent.d.ts +14 -0
- package/lib/pagamio-drawer/TopUpWalletDrawer/TopUpWalletContent.js +40 -0
- package/lib/pagamio-drawer/TopUpWalletDrawer/index.d.ts +11 -0
- package/lib/pagamio-drawer/TopUpWalletDrawer/index.js +7 -0
- package/lib/pagamio-drawer/components/BaseDrawer.d.ts +11 -0
- package/lib/pagamio-drawer/components/BaseDrawer.js +10 -0
- package/lib/pagamio-drawer/components/DrawerContent.d.ts +27 -0
- package/lib/pagamio-drawer/components/DrawerContent.js +237 -0
- package/lib/pagamio-drawer/index.d.ts +22 -0
- package/lib/pagamio-drawer/index.js +133 -0
- package/lib/pagamio-table/data-table/ExportButton.d.ts +57 -0
- package/lib/pagamio-table/data-table/ExportButton.js +96 -0
- package/lib/pagamio-table/data-table/MantineCoreTable.d.ts +44 -0
- package/lib/pagamio-table/data-table/MantineCoreTable.js +129 -0
- package/lib/pagamio-table/data-table/Pagination.d.ts +10 -0
- package/lib/pagamio-table/data-table/Pagination.js +5 -0
- package/lib/pagamio-table/data-table/TableDownload.d.ts +8 -0
- package/lib/pagamio-table/data-table/TableDownload.js +81 -0
- package/lib/pagamio-table/data-table/TableToolbar.d.ts +3 -0
- package/lib/pagamio-table/data-table/TableToolbar.js +16 -0
- package/lib/pagamio-table/data-table/exportUtils.d.ts +42 -0
- package/lib/pagamio-table/data-table/exportUtils.js +782 -0
- package/lib/pagamio-table/data-table/index.d.ts +5 -0
- package/lib/pagamio-table/data-table/index.js +11 -0
- package/lib/pagamio-table/data-table/pdfExportUtils.d.ts +111 -0
- package/lib/pagamio-table/data-table/pdfExportUtils.js +113 -0
- package/lib/pagamio-table/data-table/types.d.ts +169 -0
- package/lib/pagamio-table/data-table/types.js +1 -0
- package/lib/pagamio-table/index.d.ts +4 -0
- package/lib/pagamio-table/index.js +4 -0
- package/lib/pagamio-table/utils/functionHelper.d.ts +12 -0
- package/lib/pagamio-table/utils/functionHelper.js +24 -0
- package/lib/pagamio-table/utils/index.d.ts +1 -0
- package/lib/pagamio-table/utils/index.js +1 -0
- package/lib/rbac/hooks.d.ts +39 -0
- package/lib/rbac/hooks.js +51 -0
- package/lib/rbac/index.d.ts +8 -0
- package/lib/rbac/index.js +11 -0
- package/lib/rbac/store.d.ts +24 -0
- package/lib/rbac/store.js +37 -0
- package/lib/rbac/types.d.ts +39 -0
- package/lib/rbac/types.js +4 -0
- package/lib/rbac/utils.d.ts +44 -0
- package/lib/rbac/utils.js +117 -0
- package/lib/shared/constants/index.d.ts +2 -0
- package/lib/shared/constants/index.js +2 -0
- package/lib/shared/hooks/index.d.ts +4 -0
- package/lib/shared/hooks/index.js +4 -0
- package/lib/shared/hooks/useAnyDrawerOpen.d.ts +4 -0
- package/lib/shared/hooks/useAnyDrawerOpen.js +18 -0
- package/lib/shared/hooks/useContainerWidth.d.ts +2 -0
- package/lib/shared/hooks/useContainerWidth.js +18 -0
- package/lib/shared/hooks/useImageUpload.d.ts +15 -0
- package/lib/shared/hooks/useImageUpload.js +66 -0
- package/lib/shared/hooks/useMediaQueries.d.ts +5 -0
- package/lib/shared/hooks/useMediaQueries.js +35 -0
- package/lib/shared/hooks/usePagamioTable.d.ts +158 -0
- package/lib/shared/hooks/usePagamioTable.js +475 -0
- package/lib/shared/hooks/useSessionTimer.d.ts +33 -0
- package/lib/shared/hooks/useSessionTimer.js +96 -0
- package/lib/shared/index.d.ts +4 -0
- package/lib/shared/index.js +4 -0
- package/lib/shared/types/index.d.ts +1 -0
- package/lib/shared/types/index.js +1 -0
- package/lib/shared/url/index.d.ts +9 -0
- package/lib/shared/url/index.js +20 -0
- package/lib/shared/utils/filterUtils.d.ts +5 -0
- package/lib/shared/utils/filterUtils.js +31 -0
- package/lib/shared/utils/functionHelper.d.ts +27 -0
- package/lib/shared/utils/functionHelper.js +124 -0
- package/lib/shared/utils/index.d.ts +2 -0
- package/lib/shared/utils/index.js +2 -0
- package/lib/shared/utils/localStorage.d.ts +53 -0
- package/lib/shared/utils/localStorage.js +139 -0
- package/lib/styles.css +6247 -0
- package/lib/translations/components/LocaleSwitcher.d.ts +7 -0
- package/lib/translations/components/LocaleSwitcher.js +18 -0
- package/lib/translations/components/index.d.ts +1 -0
- package/lib/translations/components/index.js +1 -0
- package/lib/translations/context/TranslationContext.d.ts +5 -0
- package/lib/translations/context/TranslationContext.js +151 -0
- package/lib/translations/context/index.d.ts +1 -0
- package/lib/translations/context/index.js +1 -0
- package/lib/translations/hooks/index.d.ts +2 -0
- package/lib/translations/hooks/index.js +2 -0
- package/lib/translations/hooks/useLibTranslations.d.ts +7 -0
- package/lib/translations/hooks/useLibTranslations.js +46 -0
- package/lib/translations/hooks/useTranslation.d.ts +7 -0
- package/lib/translations/hooks/useTranslation.js +11 -0
- package/lib/translations/index.d.ts +91 -0
- package/lib/translations/index.js +11 -0
- package/lib/translations/locales/en.json +21 -0
- package/lib/translations/locales/es.json +21 -0
- package/lib/translations/locales/fr.json +21 -0
- package/lib/translations/locales/pt.json +21 -0
- package/lib/translations/types/index.d.ts +24 -0
- package/lib/translations/types/index.js +1 -0
- package/lib/translations/utils/index.d.ts +6 -0
- package/lib/translations/utils/index.js +25 -0
- package/package.json +9 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { QueryProps } from 'src/shared/types';
|
|
2
|
+
import type { ChartToolTipProps, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types';
|
|
3
|
+
interface MultiGaugeChartProps<TData extends {
|
|
4
|
+
id: string | number;
|
|
5
|
+
}> {
|
|
6
|
+
title?: string;
|
|
7
|
+
url?: string;
|
|
8
|
+
query: QueryProps;
|
|
9
|
+
nameKey: string;
|
|
10
|
+
valueKey: string;
|
|
11
|
+
limit?: number;
|
|
12
|
+
colors?: string[];
|
|
13
|
+
chartDetails?: {
|
|
14
|
+
columns?: any[];
|
|
15
|
+
data?: any[];
|
|
16
|
+
};
|
|
17
|
+
showScaleLabels?: boolean;
|
|
18
|
+
tooltipTitle?: string;
|
|
19
|
+
tooltipUnit?: string;
|
|
20
|
+
tooltipAdditionalFields?: (string | TooltipField)[];
|
|
21
|
+
metricDetailData?: {
|
|
22
|
+
statisticsUrl?: string;
|
|
23
|
+
itemStatisticsQuery: StatisticsQueryProps;
|
|
24
|
+
valueMetricsQuery: StatisticsQueryProps;
|
|
25
|
+
averageMetricsQuery: StatisticsQueryProps;
|
|
26
|
+
distributionMetricsQuery: DistributionQueryProps;
|
|
27
|
+
nameKey: string;
|
|
28
|
+
valueKey: string;
|
|
29
|
+
dataGridSearchKey: string;
|
|
30
|
+
dataGridColumns: TableColumn<TData>[];
|
|
31
|
+
dataSearchInputPlaceHolder: string;
|
|
32
|
+
chartToolTip?: ChartToolTipProps;
|
|
33
|
+
detailsTableTitle?: string;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
declare const MultiGaugeChart: <TData extends {
|
|
37
|
+
id: string | number;
|
|
38
|
+
}>({ title, url, query, nameKey, valueKey, limit, colors, chartDetails, showScaleLabels, metricDetailData, ...props }: MultiGaugeChartProps<TData>) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export default MultiGaugeChart;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import ReactECharts from 'echarts-for-react';
|
|
3
|
+
import { useMemo } from 'react';
|
|
4
|
+
import Card from '../components/CardWrapper';
|
|
5
|
+
import ChartWrapper from '../components/ChartWrapper';
|
|
6
|
+
import { useChartData } from '../hooks/useChartData';
|
|
7
|
+
import { DashboardPaths } from '../utils';
|
|
8
|
+
// Default colors match your image
|
|
9
|
+
const defaultColors = ['#6E7CF9', '#FFD572', '#8ADE89']; // Blue, Yellow, Green
|
|
10
|
+
const MultiGaugeChart = ({ title, url = DashboardPaths.QUERY, query, nameKey, valueKey, limit = 3, colors = defaultColors, chartDetails, showScaleLabels = true, metricDetailData, ...props }) => {
|
|
11
|
+
const { data: metricData = [], error, isEmpty, loading, refresh } = useChartData(url, query);
|
|
12
|
+
const chartOptions = useMemo(() => {
|
|
13
|
+
if (!metricData || metricData.length === 0)
|
|
14
|
+
return {};
|
|
15
|
+
// Transform data into gauge data format
|
|
16
|
+
const gaugeData = metricData.map((item, index) => {
|
|
17
|
+
const value = item[valueKey];
|
|
18
|
+
const name = item[nameKey];
|
|
19
|
+
// Calculate vertical positioning
|
|
20
|
+
const basePosition = -30 + index * 30; // -30%, 0%, 30%
|
|
21
|
+
const detailPosition = -20 + index * 30; // -20%, 10%, 40%
|
|
22
|
+
return {
|
|
23
|
+
value: value,
|
|
24
|
+
name: name,
|
|
25
|
+
title: {
|
|
26
|
+
offsetCenter: ['0%', `${basePosition}%`],
|
|
27
|
+
},
|
|
28
|
+
detail: {
|
|
29
|
+
valueAnimation: true,
|
|
30
|
+
offsetCenter: ['0%', `${detailPosition}%`],
|
|
31
|
+
formatter: '{value}%',
|
|
32
|
+
color: colors[index % colors.length],
|
|
33
|
+
backgroundColor: '#fff',
|
|
34
|
+
borderRadius: 10,
|
|
35
|
+
padding: [2, 4],
|
|
36
|
+
borderColor: colors[index % colors.length],
|
|
37
|
+
borderWidth: 1,
|
|
38
|
+
},
|
|
39
|
+
itemStyle: {
|
|
40
|
+
color: colors[index % colors.length],
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
});
|
|
44
|
+
return {
|
|
45
|
+
backgroundColor: 'transparent',
|
|
46
|
+
series: [
|
|
47
|
+
{
|
|
48
|
+
type: 'gauge',
|
|
49
|
+
startAngle: 90,
|
|
50
|
+
endAngle: -270,
|
|
51
|
+
pointer: {
|
|
52
|
+
show: false,
|
|
53
|
+
},
|
|
54
|
+
progress: {
|
|
55
|
+
show: true,
|
|
56
|
+
overlap: false,
|
|
57
|
+
roundCap: true,
|
|
58
|
+
clip: false,
|
|
59
|
+
itemStyle: {
|
|
60
|
+
borderWidth: 1,
|
|
61
|
+
borderColor: '#464646',
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
axisLine: {
|
|
65
|
+
lineStyle: {
|
|
66
|
+
width: 40,
|
|
67
|
+
color: [[1, 'rgba(220, 226, 240, 0.6)']], // Light blue/gray background
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
splitLine: {
|
|
71
|
+
show: showScaleLabels,
|
|
72
|
+
distance: 0,
|
|
73
|
+
length: 10,
|
|
74
|
+
lineStyle: {
|
|
75
|
+
width: 1,
|
|
76
|
+
color: 'rgba(100, 100, 100, 0.4)',
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
axisTick: {
|
|
80
|
+
show: showScaleLabels,
|
|
81
|
+
distance: 0,
|
|
82
|
+
length: 5,
|
|
83
|
+
lineStyle: {
|
|
84
|
+
width: 1,
|
|
85
|
+
color: 'rgba(100, 100, 100, 0.4)',
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
axisLabel: {
|
|
89
|
+
show: showScaleLabels,
|
|
90
|
+
distance: 15,
|
|
91
|
+
fontSize: 10,
|
|
92
|
+
color: '#999',
|
|
93
|
+
formatter: function (value) {
|
|
94
|
+
return value + '%';
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
data: gaugeData,
|
|
98
|
+
title: {
|
|
99
|
+
fontSize: 14,
|
|
100
|
+
color: '#333',
|
|
101
|
+
},
|
|
102
|
+
detail: {
|
|
103
|
+
width: 50,
|
|
104
|
+
height: 14,
|
|
105
|
+
fontSize: 14,
|
|
106
|
+
color: 'inherit',
|
|
107
|
+
borderColor: 'inherit',
|
|
108
|
+
borderRadius: 20,
|
|
109
|
+
borderWidth: 1,
|
|
110
|
+
formatter: '{value}%',
|
|
111
|
+
},
|
|
112
|
+
radius: '90%',
|
|
113
|
+
},
|
|
114
|
+
],
|
|
115
|
+
};
|
|
116
|
+
}, [colors, metricData, nameKey, showScaleLabels, valueKey]);
|
|
117
|
+
return (_jsx(Card, { title: title, ...props, children: _jsx(ChartWrapper, { loading: loading, error: error, isEmpty: isEmpty, onRetry: refresh, children: _jsx("div", { className: "mt-[12px] flex justify-center", children: _jsx(ReactECharts, { option: chartOptions, style: { height: '400px', width: '100%' } }) }) }) }));
|
|
118
|
+
};
|
|
119
|
+
export default MultiGaugeChart;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import type { QueryProps } from 'src/shared/types';
|
|
2
|
+
import type { ColumnProps } from '../components/ChartDetailsModal';
|
|
3
|
+
import type { ChartToolTipProps, DistributionChartTooltip, DistributionQueryProps, TableColumn, TooltipField } from '../types';
|
|
4
|
+
interface StatisticsQueryData {
|
|
5
|
+
query: QueryProps;
|
|
6
|
+
valueKey: string;
|
|
7
|
+
previousValueKey?: string;
|
|
8
|
+
changeKey: string;
|
|
9
|
+
title: string;
|
|
10
|
+
format?: string;
|
|
11
|
+
}
|
|
12
|
+
interface PieChartProps<TData extends {
|
|
13
|
+
id: string | number;
|
|
14
|
+
}> {
|
|
15
|
+
options?: Record<string, unknown>;
|
|
16
|
+
title: string;
|
|
17
|
+
colors?: string[];
|
|
18
|
+
chartDetails?: {
|
|
19
|
+
columns: ColumnProps[];
|
|
20
|
+
data: Record<string, unknown>[];
|
|
21
|
+
};
|
|
22
|
+
url?: string;
|
|
23
|
+
query: QueryProps;
|
|
24
|
+
nameKey: string;
|
|
25
|
+
valueKey: string;
|
|
26
|
+
otherKey?: string;
|
|
27
|
+
chartToolTip?: ChartToolTipProps;
|
|
28
|
+
tooltipValueFormat: string;
|
|
29
|
+
tooltipTitle?: string;
|
|
30
|
+
tooltipUnit?: string;
|
|
31
|
+
tooltipAdditionalFields?: (string | TooltipField)[];
|
|
32
|
+
currencyDisplaySymbol?: string;
|
|
33
|
+
metricDetailData: {
|
|
34
|
+
title: string;
|
|
35
|
+
statisticsUrl?: string;
|
|
36
|
+
topFiveChartTitle: string;
|
|
37
|
+
bottomFiveChartTitle: string;
|
|
38
|
+
itemStatisticsQuery: StatisticsQueryData;
|
|
39
|
+
valueMetricsQuery: StatisticsQueryData;
|
|
40
|
+
averageMetricsQuery: StatisticsQueryData;
|
|
41
|
+
distributionMetricsQuery: DistributionQueryProps;
|
|
42
|
+
yAxisDataNameKey: string;
|
|
43
|
+
xAxisNameKey: string;
|
|
44
|
+
xAxisLabel: string;
|
|
45
|
+
yAxisLabel: string;
|
|
46
|
+
nameKey: string;
|
|
47
|
+
valueKey: string;
|
|
48
|
+
dataGridSearchKey: string;
|
|
49
|
+
dataGridColumns: TableColumn<TData>[];
|
|
50
|
+
dataSearchInputPlaceHolder: string;
|
|
51
|
+
detailsTableTitle?: string;
|
|
52
|
+
distributionChartTooltip: DistributionChartTooltip;
|
|
53
|
+
};
|
|
54
|
+
showDetailsModal?: boolean;
|
|
55
|
+
}
|
|
56
|
+
declare const PieChart: <TData extends {
|
|
57
|
+
id: string | number;
|
|
58
|
+
}>({ url, metricDetailData, nameKey, valueKey, query, otherKey, options, title, colors, tooltipValueFormat, tooltipTitle, tooltipUnit, tooltipAdditionalFields, currencyDisplaySymbol, chartToolTip, showDetailsModal, ...props }: PieChartProps<TData>) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
+
export default PieChart;
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import ReactECharts from 'echarts-for-react';
|
|
3
|
+
import { useMemo, useState } from 'react';
|
|
4
|
+
import Card from '../components/CardWrapper';
|
|
5
|
+
import ChartDetailsModal from '../components/ChartDetailsModal';
|
|
6
|
+
import ChartWrapper from '../components/ChartWrapper';
|
|
7
|
+
import { useChartData } from '../hooks/useChartData';
|
|
8
|
+
import { DashboardPaths, defaultColors, getPieChartData } from '../utils';
|
|
9
|
+
import { createDistributionMetricOptions } from '../utils/chartOptions';
|
|
10
|
+
import { createTooltipFormatter, processTooltipFields } from '../utils/tooltipUtils';
|
|
11
|
+
const useMetricData = (url, query) => {
|
|
12
|
+
const { data = [], error, isEmpty, loading, refresh } = useChartData(url, query);
|
|
13
|
+
return { data, error, isEmpty, loading, refresh };
|
|
14
|
+
};
|
|
15
|
+
const sumByKey = (array, key) => {
|
|
16
|
+
return array.reduce((total, item) => {
|
|
17
|
+
return total + (item[key] ?? 0); // fallback to 0 if key is missing
|
|
18
|
+
}, 0);
|
|
19
|
+
};
|
|
20
|
+
const useItemMetricState = (url, queryData) => {
|
|
21
|
+
const { data, error, isEmpty, loading, refresh } = useMetricData(url, queryData.query);
|
|
22
|
+
const firstResult = Array.isArray(data) && data.length > 0 ? data[0] : {};
|
|
23
|
+
const totalNumberOfItems = sumByKey(data, queryData.valueKey);
|
|
24
|
+
return {
|
|
25
|
+
value: totalNumberOfItems ?? 0,
|
|
26
|
+
previousValue: queryData.previousValueKey ? (firstResult[queryData.previousValueKey] ?? 0) : undefined,
|
|
27
|
+
change: firstResult[queryData.changeKey] ?? 0,
|
|
28
|
+
title: queryData.title,
|
|
29
|
+
format: queryData.format ?? '',
|
|
30
|
+
isEmpty,
|
|
31
|
+
loading,
|
|
32
|
+
error,
|
|
33
|
+
currency: firstResult?.currency,
|
|
34
|
+
refresh: () => refresh().catch(() => { }),
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
const useMetricState = (url, queryData) => {
|
|
38
|
+
const { data, error, isEmpty, loading, refresh } = useMetricData(url, queryData.query);
|
|
39
|
+
const valueMetricData = data;
|
|
40
|
+
return {
|
|
41
|
+
value: (valueMetricData && valueMetricData[queryData.valueKey]) ?? 0,
|
|
42
|
+
previousValue: queryData.previousValueKey
|
|
43
|
+
? (valueMetricData?.[queryData.previousValueKey] ?? 0)
|
|
44
|
+
: undefined,
|
|
45
|
+
change: (valueMetricData && valueMetricData[queryData.changeKey]) ?? 0,
|
|
46
|
+
title: queryData.title,
|
|
47
|
+
format: queryData.format ?? '',
|
|
48
|
+
isEmpty,
|
|
49
|
+
loading,
|
|
50
|
+
error,
|
|
51
|
+
currency: (typeof valueMetricData === 'object' && valueMetricData?.additionalData?.currency) ?? undefined,
|
|
52
|
+
refresh: () => refresh().catch(() => { }),
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
const usePieChartOptions = (data, config) => {
|
|
56
|
+
const tooltipFormatterFn = useMemo(() => {
|
|
57
|
+
const currency = data?.[0]?.currency;
|
|
58
|
+
return createTooltipFormatter(config.tooltipValueFormat, config.tooltipTitle ?? 'Value', config.tooltipUnit ?? '', config.tooltipFields.map((field) => ({
|
|
59
|
+
toolTipkey: field.toolTipkey ?? '',
|
|
60
|
+
valueKey: field.valueKey ?? '',
|
|
61
|
+
nameKey: field.nameKey ?? '',
|
|
62
|
+
label: field.label ?? '',
|
|
63
|
+
suffix: field.suffix ?? '',
|
|
64
|
+
format: field.format ?? 'number',
|
|
65
|
+
formatter: field.formatter ?? ((value) => String(value)),
|
|
66
|
+
})), data, currency, config.currencyDisplaySymbol);
|
|
67
|
+
}, [config, data]);
|
|
68
|
+
return useMemo(() => {
|
|
69
|
+
const chartData = data.length > 0 ? getPieChartData(data, config.nameKey, config.valueKey, config.otherKey) : undefined;
|
|
70
|
+
return {
|
|
71
|
+
tooltip: {
|
|
72
|
+
trigger: 'item',
|
|
73
|
+
formatter: tooltipFormatterFn,
|
|
74
|
+
...config.chartToolTip,
|
|
75
|
+
},
|
|
76
|
+
legend: {
|
|
77
|
+
orient: 'horizontal',
|
|
78
|
+
top: 0,
|
|
79
|
+
left: 'center',
|
|
80
|
+
padding: [0, 0, 20, 0],
|
|
81
|
+
type: 'plain',
|
|
82
|
+
textStyle: { fontSize: 12 },
|
|
83
|
+
},
|
|
84
|
+
color: config.colors,
|
|
85
|
+
series: [
|
|
86
|
+
{
|
|
87
|
+
name: config.title,
|
|
88
|
+
type: 'pie',
|
|
89
|
+
radius: ['0%', '65%'],
|
|
90
|
+
center: ['50%', '60%'],
|
|
91
|
+
data: chartData?.seriesData ?? [],
|
|
92
|
+
emphasis: {
|
|
93
|
+
itemStyle: {
|
|
94
|
+
shadowBlur: 10,
|
|
95
|
+
shadowOffsetX: 0,
|
|
96
|
+
shadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
grid: { containLabel: true },
|
|
102
|
+
...config.options,
|
|
103
|
+
};
|
|
104
|
+
}, [data, config, tooltipFormatterFn]);
|
|
105
|
+
};
|
|
106
|
+
const PieChart = ({ url = DashboardPaths.QUERY, metricDetailData, nameKey, valueKey, query, otherKey, options = {}, title, colors = defaultColors, tooltipValueFormat, tooltipTitle = 'Value', tooltipUnit = '%', tooltipAdditionalFields = [], currencyDisplaySymbol, chartToolTip, showDetailsModal = true, ...props }) => {
|
|
107
|
+
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
108
|
+
const statisticsUrl = metricDetailData?.statisticsUrl ?? DashboardPaths.METRICS;
|
|
109
|
+
// Base chart data
|
|
110
|
+
const { data: chartMetricData = [], error, isEmpty, loading, refresh } = useMetricData(url, query);
|
|
111
|
+
// Full metric data for expanded view
|
|
112
|
+
const fullMetricState = useMetricData(url, { ...query, limit: undefined });
|
|
113
|
+
// Statistics data
|
|
114
|
+
const itemMetrics = useItemMetricState(url, metricDetailData.itemStatisticsQuery);
|
|
115
|
+
const valueMetrics = useMetricState(statisticsUrl, metricDetailData.valueMetricsQuery);
|
|
116
|
+
const averageMetrics = useMetricState(statisticsUrl, metricDetailData.averageMetricsQuery);
|
|
117
|
+
// Distribution data
|
|
118
|
+
const distributionState = useMetricData(url, metricDetailData.distributionMetricsQuery.query);
|
|
119
|
+
const processedTooltipFields = useMemo(() => processTooltipFields(tooltipAdditionalFields), [tooltipAdditionalFields]);
|
|
120
|
+
const processedDistributionTooltipFields = useMemo(() => processTooltipFields(metricDetailData.distributionChartTooltip.tooltipAdditionalFields), [metricDetailData.distributionChartTooltip.tooltipAdditionalFields]);
|
|
121
|
+
const baseChartConfig = {
|
|
122
|
+
tooltipValueFormat,
|
|
123
|
+
tooltipTitle,
|
|
124
|
+
tooltipUnit,
|
|
125
|
+
tooltipFields: processedTooltipFields,
|
|
126
|
+
currencyDisplaySymbol,
|
|
127
|
+
colors,
|
|
128
|
+
nameKey,
|
|
129
|
+
valueKey,
|
|
130
|
+
otherKey,
|
|
131
|
+
chartToolTip: {
|
|
132
|
+
trigger: 'item',
|
|
133
|
+
...chartToolTip,
|
|
134
|
+
},
|
|
135
|
+
options,
|
|
136
|
+
};
|
|
137
|
+
// Chart options for different views
|
|
138
|
+
const chartOptions = usePieChartOptions(chartMetricData, { ...baseChartConfig, title });
|
|
139
|
+
const fullChartOptions = usePieChartOptions(fullMetricState.data, baseChartConfig);
|
|
140
|
+
const topFiveChartOptions = usePieChartOptions(fullMetricState.data?.slice(0, 5) ?? [], {
|
|
141
|
+
...baseChartConfig,
|
|
142
|
+
tooltipTitle: metricDetailData.topFiveChartTitle,
|
|
143
|
+
});
|
|
144
|
+
const bottomFiveChartOptions = usePieChartOptions((fullMetricState.data?.slice(-5) ?? []).reverse(), {
|
|
145
|
+
...baseChartConfig,
|
|
146
|
+
tooltipTitle: metricDetailData.bottomFiveChartTitle,
|
|
147
|
+
});
|
|
148
|
+
const { topFiveItems, bottomFiveItems } = useMemo(() => {
|
|
149
|
+
if (!fullMetricState.data?.length) {
|
|
150
|
+
return {
|
|
151
|
+
topFiveItems: {},
|
|
152
|
+
bottomFiveItems: {},
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
return {
|
|
156
|
+
topFiveItems: topFiveChartOptions,
|
|
157
|
+
bottomFiveItems: bottomFiveChartOptions,
|
|
158
|
+
};
|
|
159
|
+
}, [fullMetricState.data, topFiveChartOptions, bottomFiveChartOptions]);
|
|
160
|
+
const distributionMetricData = useMemo(() => {
|
|
161
|
+
return createDistributionMetricOptions({
|
|
162
|
+
distributionChartTooltip: metricDetailData.distributionChartTooltip,
|
|
163
|
+
distributionData: distributionState.data ?? [],
|
|
164
|
+
processedTooltipFields: processedDistributionTooltipFields,
|
|
165
|
+
xAxisDataValueKey: metricDetailData.distributionMetricsQuery.xAxisDataValueKey,
|
|
166
|
+
seriesDataValueKey: metricDetailData.distributionMetricsQuery.seriesDataValueKey,
|
|
167
|
+
});
|
|
168
|
+
}, [
|
|
169
|
+
distributionState.data,
|
|
170
|
+
metricDetailData.distributionMetricsQuery.seriesDataValueKey,
|
|
171
|
+
metricDetailData.distributionMetricsQuery.xAxisDataValueKey,
|
|
172
|
+
metricDetailData.distributionChartTooltip,
|
|
173
|
+
processedDistributionTooltipFields,
|
|
174
|
+
]);
|
|
175
|
+
return (_jsxs(_Fragment, { children: [_jsx(Card, { title: title, ...props, showDetailsModal: showDetailsModal, onOpenDetails: showDetailsModal && chartMetricData ? () => setIsModalOpen(true) : undefined, children: _jsx(ChartWrapper, { loading: loading, error: error, isEmpty: isEmpty, onRetry: refresh, children: _jsx("div", { children: _jsx(ReactECharts, { option: chartOptions, style: { height: '350px' } }) }) }) }), showDetailsModal && (_jsx(ChartDetailsModal, { title: metricDetailData.title, isOpen: isModalOpen, onClose: () => setIsModalOpen(false), data: fullMetricState.data, columns: metricDetailData.dataGridColumns, error: fullMetricState.error, isEmpty: fullMetricState.isEmpty, loading: fullMetricState.loading, detailsTableTitle: metricDetailData.detailsTableTitle, refresh: fullMetricState.refresh, renderDetailsChart: fullMetricState.data?.length <= 40, topFivePerformingChartTitle: metricDetailData.topFiveChartTitle, bottomFivePerformingChartTitle: metricDetailData.bottomFiveChartTitle, top5PerformingItems: topFiveItems, bottom5NonPerformingItems: bottomFiveItems, chartData: fullChartOptions, valueKey: metricDetailData.valueKey, dataGridQuery: query, searchKey: metricDetailData.dataGridSearchKey, searchInputPlaceHolder: metricDetailData.dataSearchInputPlaceHolder, itemMetricsData: {
|
|
176
|
+
...itemMetrics,
|
|
177
|
+
error: itemMetrics.error,
|
|
178
|
+
}, valueMetricsData: {
|
|
179
|
+
...valueMetrics,
|
|
180
|
+
error: valueMetrics.error,
|
|
181
|
+
}, averageMetricsData: {
|
|
182
|
+
...averageMetrics,
|
|
183
|
+
error: averageMetrics.error,
|
|
184
|
+
}, distributionMetricsData: {
|
|
185
|
+
data: distributionMetricData,
|
|
186
|
+
title: metricDetailData.distributionMetricsQuery.title,
|
|
187
|
+
isEmpty: distributionState.isEmpty,
|
|
188
|
+
loading: distributionState.loading,
|
|
189
|
+
error: distributionState.error,
|
|
190
|
+
refresh: () => distributionState.refresh().catch(() => { }),
|
|
191
|
+
chartToolTip: metricDetailData.distributionMetricsQuery.chartToolTip,
|
|
192
|
+
} }))] }));
|
|
193
|
+
};
|
|
194
|
+
export default PieChart;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { QueryProps } from 'src/shared/types';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
interface SelectedEventTileProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
format?: string;
|
|
6
|
+
url: string;
|
|
7
|
+
valueKey: string;
|
|
8
|
+
previousValueKey: string;
|
|
9
|
+
changeKey: string;
|
|
10
|
+
details?: any[];
|
|
11
|
+
query: QueryProps;
|
|
12
|
+
}
|
|
13
|
+
declare const SelectedEventTile: React.FC<SelectedEventTileProps>;
|
|
14
|
+
export default SelectedEventTile;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect, useState } from 'react';
|
|
3
|
+
import { useApi } from '../../api';
|
|
4
|
+
import Card from '../components/CardWrapper';
|
|
5
|
+
import ChartWrapper from '../components/ChartWrapper';
|
|
6
|
+
const SelectedEventTile = ({ query, title, format, url, details, valueKey, previousValueKey, changeKey, ...props }) => {
|
|
7
|
+
const [loading, setLoading] = useState(false);
|
|
8
|
+
const [error, setError] = useState();
|
|
9
|
+
const [eventDetails, setEventDetails] = useState(null);
|
|
10
|
+
const apiClient = useApi();
|
|
11
|
+
const getEventDetails = async () => {
|
|
12
|
+
setLoading(true);
|
|
13
|
+
try {
|
|
14
|
+
const response = await apiClient.get(url);
|
|
15
|
+
setEventDetails(response.event);
|
|
16
|
+
}
|
|
17
|
+
catch (error) {
|
|
18
|
+
console.error('Error fetching event details:', error);
|
|
19
|
+
// Convert Error to ApiErrorResponse format
|
|
20
|
+
setError(error instanceof Error
|
|
21
|
+
? { message: error.message, status: 500 }
|
|
22
|
+
: { message: 'Failed to fetch event details', status: 500 });
|
|
23
|
+
}
|
|
24
|
+
finally {
|
|
25
|
+
setLoading(false);
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
getEventDetails();
|
|
30
|
+
}, [url]);
|
|
31
|
+
// Safe default values with optional chaining
|
|
32
|
+
const { name = 'Event information unavailable', venueName = 'Venue unavailable', cityName = 'City unavailable', countryName = 'Country unavailable', } = eventDetails ?? {};
|
|
33
|
+
return (_jsx(Card, { title: title, className: "bg-core-add/5", children: _jsx(ChartWrapper, { loading: loading, error: error, isEmpty: !eventDetails, onRetry: getEventDetails, children: _jsx("div", { className: "space-y-4", children: _jsxs("div", { className: "pb-3", children: [_jsx("h3", { className: "text-xl font-semibold text-gray-900 mb-1", children: name }), _jsxs("div", { className: "flex items-center text-gray-600 text-sm", children: [_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: "h-4 w-4 mr-1", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", children: [_jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" }), _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 11a3 3 0 11-6 0 3 3 0 016 0z" })] }), _jsxs("span", { children: [venueName, ", ", cityName, ", ", countryName] })] })] }) }) }) }));
|
|
34
|
+
};
|
|
35
|
+
export default SelectedEventTile;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { QueryProps } from 'src/shared/types';
|
|
2
|
+
import type { ChartToolTipProps, DistributionChartTooltip, DistributionQueryProps, StatisticsQueryProps, TableColumn, TooltipField } from '../types';
|
|
3
|
+
interface SpeedometerProps<TData extends {
|
|
4
|
+
id: string | number;
|
|
5
|
+
}> {
|
|
6
|
+
title?: string;
|
|
7
|
+
url?: string;
|
|
8
|
+
query: QueryProps;
|
|
9
|
+
colors?: {
|
|
10
|
+
low: string;
|
|
11
|
+
medium: string;
|
|
12
|
+
high: string;
|
|
13
|
+
};
|
|
14
|
+
thresholds?: {
|
|
15
|
+
low: number;
|
|
16
|
+
medium: number;
|
|
17
|
+
};
|
|
18
|
+
chartDetails?: {
|
|
19
|
+
columns?: any[];
|
|
20
|
+
data?: any[];
|
|
21
|
+
};
|
|
22
|
+
tooltipValueFormat: string;
|
|
23
|
+
tooltipTitle?: string;
|
|
24
|
+
tooltipUnit?: string;
|
|
25
|
+
tooltipAdditionalFields?: (string | TooltipField)[];
|
|
26
|
+
currencyDisplaySymbol?: string;
|
|
27
|
+
metricDetailData: {
|
|
28
|
+
statisticsUrl?: string;
|
|
29
|
+
title: string;
|
|
30
|
+
topFiveChartTitle?: string;
|
|
31
|
+
bottomFiveChartTitle?: string;
|
|
32
|
+
itemStatisticsQuery: StatisticsQueryProps;
|
|
33
|
+
valueMetricsQuery: StatisticsQueryProps;
|
|
34
|
+
averageMetricsQuery: StatisticsQueryProps;
|
|
35
|
+
distributionMetricsQuery: DistributionQueryProps;
|
|
36
|
+
yAxisDataNameKey: string;
|
|
37
|
+
xAxisNameKey: string;
|
|
38
|
+
xAxisLabel: string;
|
|
39
|
+
yAxisLabel: string;
|
|
40
|
+
nameKey: string;
|
|
41
|
+
valueKey: string;
|
|
42
|
+
dataGridSearchKey: string;
|
|
43
|
+
dataGridColumns: TableColumn<TData>[];
|
|
44
|
+
dataSearchInputPlaceHolder: string;
|
|
45
|
+
chartToolTip?: ChartToolTipProps;
|
|
46
|
+
detailsTableTitle?: string;
|
|
47
|
+
distributionChartTooltip: DistributionChartTooltip;
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
declare const SpeedometerChart: <TData extends {
|
|
51
|
+
id: string | number;
|
|
52
|
+
}>({ title, url, query, colors, thresholds, chartDetails, tooltipValueFormat, tooltipTitle, tooltipUnit, tooltipAdditionalFields, metricDetailData, ...props }: SpeedometerProps<TData>) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
+
export default SpeedometerChart;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import ReactECharts from 'echarts-for-react';
|
|
3
|
+
import { useCallback } from 'react';
|
|
4
|
+
import BaseChart from '../components/BaseChart';
|
|
5
|
+
import { DashboardPaths } from '../utils';
|
|
6
|
+
const defaultSpeedometerColors = {
|
|
7
|
+
low: '#4CAF50', // Green
|
|
8
|
+
medium: '#FFC107', // Amber
|
|
9
|
+
high: '#F44336', // Red
|
|
10
|
+
};
|
|
11
|
+
const SpeedometerChart = ({ title, url = DashboardPaths.QUERY, query, colors = defaultSpeedometerColors, thresholds = { low: 30, medium: 70 }, chartDetails, tooltipValueFormat, tooltipTitle = 'Value', tooltipUnit = '%', tooltipAdditionalFields = [], metricDetailData, ...props }) => {
|
|
12
|
+
const getSpeedometerOptions = useCallback((data) => {
|
|
13
|
+
if (!data || data.length === 0)
|
|
14
|
+
return {};
|
|
15
|
+
// Extract the first item for single gauge display
|
|
16
|
+
const firstItem = data[0];
|
|
17
|
+
const name = firstItem[metricDetailData.nameKey];
|
|
18
|
+
const value = firstItem[metricDetailData.valueKey];
|
|
19
|
+
return {
|
|
20
|
+
tooltip: {
|
|
21
|
+
formatter: '{a} <br/>{b} : {c}%',
|
|
22
|
+
},
|
|
23
|
+
series: [
|
|
24
|
+
{
|
|
25
|
+
name: title,
|
|
26
|
+
type: 'gauge',
|
|
27
|
+
progress: {
|
|
28
|
+
show: true,
|
|
29
|
+
width: 18,
|
|
30
|
+
},
|
|
31
|
+
axisLine: {
|
|
32
|
+
lineStyle: {
|
|
33
|
+
width: 18,
|
|
34
|
+
color: [
|
|
35
|
+
[thresholds.low / 100, colors.low],
|
|
36
|
+
[thresholds.medium / 100, colors.medium],
|
|
37
|
+
[1, colors.high],
|
|
38
|
+
],
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
axisTick: {
|
|
42
|
+
show: false,
|
|
43
|
+
},
|
|
44
|
+
splitLine: {
|
|
45
|
+
length: 15,
|
|
46
|
+
lineStyle: {
|
|
47
|
+
width: 2,
|
|
48
|
+
color: '#999',
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
axisLabel: {
|
|
52
|
+
distance: 25,
|
|
53
|
+
color: '#999',
|
|
54
|
+
fontSize: 12,
|
|
55
|
+
},
|
|
56
|
+
anchor: {
|
|
57
|
+
show: true,
|
|
58
|
+
showAbove: true,
|
|
59
|
+
size: 25,
|
|
60
|
+
itemStyle: {
|
|
61
|
+
borderWidth: 10,
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
title: {
|
|
65
|
+
show: true,
|
|
66
|
+
fontSize: 14,
|
|
67
|
+
},
|
|
68
|
+
detail: {
|
|
69
|
+
valueAnimation: true,
|
|
70
|
+
fontSize: 30,
|
|
71
|
+
offsetCenter: [0, '70%'],
|
|
72
|
+
formatter: '{value}%',
|
|
73
|
+
color: 'inherit',
|
|
74
|
+
},
|
|
75
|
+
data: [
|
|
76
|
+
{
|
|
77
|
+
value: value,
|
|
78
|
+
name: name,
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
};
|
|
84
|
+
}, [colors, metricDetailData.nameKey, thresholds.low, thresholds.medium, title, metricDetailData.valueKey]);
|
|
85
|
+
return (_jsx(BaseChart, { url: url, query: query, chartDetails: chartDetails, getChartOptions: getSpeedometerOptions, detailsModalTitle: title ?? 'Speedometer Chart', topFivePerformingChartTitle: metricDetailData.topFiveChartTitle, bottomFivePerformingChartTitle: metricDetailData.bottomFiveChartTitle, tooltipValueFormat: tooltipValueFormat, tooltipTitle: tooltipTitle, tooltipUnit: tooltipUnit, tooltipAdditionalFields: tooltipAdditionalFields, ...metricDetailData, ...props, children: ({ metricData, tooltipFormatterFn }) => {
|
|
86
|
+
const chartOptions = getSpeedometerOptions(metricData);
|
|
87
|
+
// Add tooltip formatter from BaseChart
|
|
88
|
+
if (tooltipFormatterFn && chartOptions.tooltip) {
|
|
89
|
+
chartOptions.tooltip.formatter = tooltipFormatterFn;
|
|
90
|
+
}
|
|
91
|
+
return (_jsx("div", { className: "mt-4", children: _jsx(ReactECharts, { option: chartOptions, style: { height: '350px' } }) }));
|
|
92
|
+
} }));
|
|
93
|
+
};
|
|
94
|
+
export default SpeedometerChart;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { QueryProps } from 'src/shared/types';
|
|
2
|
+
export interface TableColumn<TData extends {
|
|
3
|
+
id: string | number;
|
|
4
|
+
}> {
|
|
5
|
+
header: string;
|
|
6
|
+
accessor: keyof TData;
|
|
7
|
+
enableCopy?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export interface DataTableProps<TData extends {
|
|
10
|
+
id: string | number;
|
|
11
|
+
}> {
|
|
12
|
+
columns: TableColumn<TData>[];
|
|
13
|
+
title?: string;
|
|
14
|
+
searchKey: string;
|
|
15
|
+
url: string;
|
|
16
|
+
query: QueryProps;
|
|
17
|
+
searctInputPlaceHolder?: string;
|
|
18
|
+
expandable?: boolean;
|
|
19
|
+
renderExpandableComponent?: ({ row }: {
|
|
20
|
+
row: any;
|
|
21
|
+
}) => React.ReactNode;
|
|
22
|
+
}
|
|
23
|
+
declare const DataTable: <TData extends {
|
|
24
|
+
id: string | number;
|
|
25
|
+
}>({ columns, title, searchKey, url, query, searctInputPlaceHolder, expandable, renderExpandableComponent, }: DataTableProps<TData>) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export default DataTable;
|