npm-pkg-hook 1.12.7 → 1.12.8
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/.babelrc +0 -0
- package/.env +5 -0
- package/.github/pull_request_template.md +18 -0
- package/.github/workflows/pepeline.yaml +30 -0
- package/dist/index.js +47755 -10080
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +47071 -9610
- package/dist/index.mjs.map +1 -0
- package/eslint.config.mts +153 -0
- package/expire.json +1 -0
- package/jsconfig.json +28 -0
- package/package.json +24 -61
- package/script.txt +7 -0
- package/src/config/client/errors.ts +39 -0
- package/src/config/client/index.ts +1 -0
- package/src/config/content/en.json +5 -0
- package/src/config/content/es.json +5 -0
- package/src/config/content/index.ts +16 -0
- package/src/cookies/index.ts +3 -0
- package/src/hooks/addTenMinutes/index.ts +14 -0
- package/src/hooks/calculateLogLatHaversine/index.ts +41 -0
- package/src/hooks/completeSchedules/index.ts +22 -0
- package/src/hooks/convertToMilitaryTime/index.ts +18 -0
- package/src/hooks/generateStoreURL/index.ts +41 -0
- package/src/hooks/generateTemplate/index.ts +66 -0
- package/src/hooks/getCardType/index.ts +24 -0
- package/src/hooks/getCategoriesWithProduct/helpers/index.ts +7 -0
- package/src/hooks/getCategoriesWithProduct/index.ts +62 -0
- package/src/hooks/getGlobalSession/index.ts +69 -0
- package/src/hooks/getSession/index.ts +72 -0
- package/src/hooks/getTodayTimestamps/index.ts +70 -0
- package/src/hooks/getTotalHours/index.ts +76 -0
- package/src/hooks/handleLogin/index.ts +14 -0
- package/src/hooks/index.ts +153 -0
- package/src/hooks/isTokenExpired/index.ts +17 -0
- package/src/hooks/newMessageSubscription/index.ts +28 -0
- package/src/hooks/newStoreOrderSubscription/index.ts +26 -0
- package/src/hooks/statusOpenStores/helpers/index.ts +124 -0
- package/src/hooks/statusOpenStores/index.ts +221 -0
- package/src/hooks/updateExtProductFoodsOptional/index.ts +49 -0
- package/src/hooks/useAcumulateDate/index.ts +18 -0
- package/src/hooks/useAllStoresPendingToRegister/index.ts +37 -0
- package/src/hooks/useAmountInput/index.ts +127 -0
- package/src/hooks/useAnimationFrame/index.ts +45 -0
- package/src/hooks/useAnimationText/index.ts +31 -0
- package/src/hooks/useAsideCart/helpers/index.ts +22 -0
- package/src/hooks/useAsideCart/index.ts +217 -0
- package/src/hooks/useAsideCart/queries.ts +10 -0
- package/src/hooks/useBanner/index.ts +20 -0
- package/src/hooks/useCart/index.ts +2 -0
- package/src/hooks/useCart/queries.ts +174 -0
- package/src/hooks/useCart/useCart/helpers/index.ts +79 -0
- package/src/hooks/useCart/useCart/index.ts +424 -0
- package/src/hooks/useCart/useGetCart/index.ts +34 -0
- package/src/hooks/useCatWithProduct/index.ts +54 -0
- package/src/hooks/useCatWithProduct/queries.ts +200 -0
- package/src/hooks/useCatWithProduct/types/index.ts +104 -0
- package/src/hooks/useCatWithProductClient/index.ts +57 -0
- package/src/hooks/useCatWithProductClient/queries.ts +56 -0
- package/src/hooks/useCategoriesProduct/index.ts +14 -0
- package/src/hooks/useCategoriesProduct/queries.ts +16 -0
- package/src/hooks/useCategoryInStore/index.ts +167 -0
- package/src/hooks/useCategoryInStore/queries.ts +78 -0
- package/src/hooks/useCategoryStore/index.ts +8 -0
- package/src/hooks/useCategoryStore/queries.ts +16 -0
- package/src/hooks/useChartData/index.ts +171 -0
- package/src/hooks/useChartData/useChartData/index.ts +200 -0
- package/src/hooks/useChartData/useChartDataAllOrders/index.ts +94 -0
- package/src/hooks/useChatRoomSubscription/index.ts +28 -0
- package/src/hooks/useCheckbox/index.ts +115 -0
- package/src/hooks/useCities/index.ts +14 -0
- package/src/hooks/useCities/queries.ts +12 -0
- package/src/hooks/useClients/index.ts +97 -0
- package/src/hooks/useClients/queries.ts +215 -0
- package/src/hooks/useColorByLetters/helpers/alea.ts +73 -0
- package/src/hooks/useColorByLetters/helpers/colors.ts +45 -0
- package/src/hooks/useColorByLetters/helpers/index.ts +22 -0
- package/src/hooks/useColorByLetters/helpers/mersenne_twister.ts +118 -0
- package/src/hooks/useColorByLetters/index.ts +24 -0
- package/src/hooks/useConnection/index.ts +24 -0
- package/src/hooks/useCountries/index.ts +20 -0
- package/src/hooks/useCountries/queries.ts +12 -0
- package/src/hooks/useCreateDeliveryTime/index.ts +51 -0
- package/src/hooks/useCreateOrderStatusType/index.ts +134 -0
- package/src/hooks/useCreateProduct/helpers/index.ts +23 -0
- package/src/hooks/useCreateProduct/helpers/manageCacheDataCatProduct/index.ts +52 -0
- package/src/hooks/useCreateProduct/helpers/useEditImageProduct/index.ts +182 -0
- package/src/hooks/useCreateProduct/index.ts +337 -0
- package/src/hooks/useCreateStorePendingToRegister/index.ts +17 -0
- package/src/hooks/useCreateStorePendingToRegister/queries.ts +10 -0
- package/src/hooks/useDashboardComponents/index.ts +50 -0
- package/src/hooks/useDeleteExtraProductFoods/index.ts +13 -0
- package/src/hooks/useDeleteSubProductOptional/index.ts +32 -0
- package/src/hooks/useDeleteSubProductOptional/queries.ts +10 -0
- package/src/hooks/useDeliveryTime/index.ts +29 -0
- package/src/hooks/useDepartments/index.ts +14 -0
- package/src/hooks/useDepartments/queries.ts +13 -0
- package/src/hooks/useDessert/helpers/index.ts +51 -0
- package/src/hooks/useDessert/index.ts +529 -0
- package/src/hooks/useDessertWithPrice/helpers/index.ts +76 -0
- package/src/hooks/useDessertWithPrice/index.ts +381 -0
- package/src/hooks/useDessertWithPrice/queries.ts +18 -0
- package/src/hooks/useDevWS/index.ts +53 -0
- package/src/hooks/useDevices/index.ts +2 -0
- package/src/hooks/useDevices/queries.ts +28 -0
- package/src/hooks/useDevices/useGetDevices.ts +28 -0
- package/src/hooks/useDevices/useRegisterDevices.ts +75 -0
- package/src/hooks/useDownloadReports/helpers/downloadFileFromResponse.ts +21 -0
- package/src/hooks/useDownloadReports/index.ts +2 -0
- package/src/hooks/useDownloadReports/useDownloadReportByDay/index.ts +105 -0
- package/src/hooks/useDownloadReports/useGetReportByDateRange/index.ts +116 -0
- package/src/hooks/useDrag/index.ts +79 -0
- package/src/hooks/useDropzone/index.ts +94 -0
- package/src/hooks/useDynamicAuth/index.ts +14 -0
- package/src/hooks/useDynamicAuth/queries.ts +24 -0
- package/src/hooks/useEditCategory/index.ts +41 -0
- package/src/hooks/useEditOneExtProductFoodOptional/index.ts +28 -0
- package/src/hooks/useEditOneExtProductFoodOptional/queries.ts +16 -0
- package/src/hooks/useEditSubProductOptional/index.ts +12 -0
- package/src/hooks/useEditSubProductOptional/queries.ts +10 -0
- package/src/hooks/useEmployee/index.ts +18 -0
- package/src/hooks/useEmployee/queries.ts +85 -0
- package/src/hooks/useEmployee/useCreateEmployee.ts +90 -0
- package/src/hooks/useEvent/index.ts +34 -0
- package/src/hooks/useFavoriteStores/index.ts +31 -0
- package/src/hooks/useFavoriteStores/queries.ts +54 -0
- package/src/hooks/useFetchJson/index.ts +25 -0
- package/src/hooks/useFetchMoreInteractions/index.jsx +39 -0
- package/src/hooks/useFilterConfigs/index.ts +173 -0
- package/src/hooks/useFingerprintjs/index.ts +197 -0
- package/src/hooks/useFormTools/index.ts +143 -0
- package/src/hooks/useFormatDate/index.ts +91 -0
- package/src/hooks/useFormatNumberPhone/index.ts +23 -0
- package/src/hooks/useFullScreenMode/index.ts +61 -0
- package/src/hooks/useGenerateNumberArray/index.ts +17 -0
- package/src/hooks/useGetAllLocationUser/index.ts +13 -0
- package/src/hooks/useGetAllLocationUser/queries.ts +44 -0
- package/src/hooks/useGetAllSales/index.ts +26 -0
- package/src/hooks/useGetCookies/index.ts +43 -0
- package/src/hooks/useGetExtProductFoodsSubOptionalAll/index.ts +15 -0
- package/src/hooks/useGetFoodRecomended/index.ts +33 -0
- package/src/hooks/useGetFoodRecomended/queries.ts +47 -0
- package/src/hooks/useGetMessagesToRoom/index.ts +23 -0
- package/src/hooks/useGetMinPrice/index.ts +13 -0
- package/src/hooks/useGetMinPrice/queries.ts +7 -0
- package/src/hooks/useGetOneStoreRating/index.ts +41 -0
- package/src/hooks/useGetOneStoreRating/queries.ts +18 -0
- package/src/hooks/useGetSalesAmountToday/index.ts +31 -0
- package/src/hooks/useGetStoreCookie/index.ts +21 -0
- package/src/hooks/useGoogleLogin/index.ts +169 -0
- package/src/hooks/useGoogleLogin/loadScript.ts +15 -0
- package/src/hooks/useGoogleLogin/removeScript.ts +7 -0
- package/src/hooks/useHover/index.ts +32 -0
- package/src/hooks/useImageOptimization/index.ts +32 -0
- package/src/hooks/useImageUploaderProduct/helper/canvasUtils.ts +146 -0
- package/src/hooks/useImageUploaderProduct/helper/getOrientation.ts +54 -0
- package/src/hooks/useImageUploaderProduct/helper/index.ts +5 -0
- package/src/hooks/useImageUploaderProduct/index.ts +295 -0
- package/src/hooks/useImageWeight/index.ts +55 -0
- package/src/hooks/useImagesStore/index.ts +227 -0
- package/src/hooks/useImagesStore/queries.ts +193 -0
- package/src/hooks/useImagesStore/utils/index.ts +4 -0
- package/src/hooks/useIncomingOrders/index.ts +11 -0
- package/src/hooks/useIncomingOrders/queries.ts +87 -0
- package/src/hooks/useInnerHtml/index.ts +39 -0
- package/src/hooks/useIntersection/index.ts +84 -0
- package/src/hooks/useInventory/index.ts +2 -0
- package/src/hooks/useInventory/queries.ts +58 -0
- package/src/hooks/useInventory/useGetProductsInStock.ts +16 -0
- package/src/hooks/useInventory/useUpdateManageStock.ts +41 -0
- package/src/hooks/useKeypress/index.ts +28 -0
- package/src/hooks/useLazyScript/index.ts +74 -0
- package/src/hooks/useLocalBackendIp/index.ts +34 -0
- package/src/hooks/useLocalSorage/index.ts +36 -0
- package/src/hooks/useLocationManager/index.ts +63 -0
- package/src/hooks/useLocationNavigate/index.ts +54 -0
- package/src/hooks/useLoginEmployeeInStore/index.ts +38 -0
- package/src/hooks/useLogout/helpers/BroadcastChannel.ts +74 -0
- package/src/hooks/useLogout/helpers/apiBaseUrl.ts +12 -0
- package/src/hooks/useLogout/helpers/fetchData.ts +37 -0
- package/src/hooks/useLogout/helpers/getCsrfToken.ts +37 -0
- package/src/hooks/useLogout/helpers/index.ts +65 -0
- package/src/hooks/useLogout/helpers/logger.ts +88 -0
- package/src/hooks/useLogout/helpers/parseUrl.ts +39 -0
- package/src/hooks/useLogout/index.ts +105 -0
- package/src/hooks/useManageNewOrder/helpers/index.ts +45 -0
- package/src/hooks/useManageNewOrder/helpers/mock.ts +0 -0
- package/src/hooks/useManageNewOrder/index.ts +104 -0
- package/src/hooks/useManageQueryParams/index.ts +120 -0
- package/src/hooks/useMobile/index.ts +65 -0
- package/src/hooks/useModules/helpers/index.ts +1 -0
- package/src/hooks/useModules/helpers/validateModules.ts +29 -0
- package/src/hooks/useModules/index.ts +124 -0
- package/src/hooks/useMouse/index.ts +55 -0
- package/src/hooks/useMutateHeight/index.ts +36 -0
- package/src/hooks/useOrderClient/index.ts +5 -0
- package/src/hooks/useOrderStatusTypes/index.ts +2 -0
- package/src/hooks/useOrderStatusTypes/useOrderStatusTypes/index.ts +133 -0
- package/src/hooks/useOrderStatusTypes/useUpdateOrderStatusPriorities/index.ts +99 -0
- package/src/hooks/useOrders/index.ts +3 -0
- package/src/hooks/useOrders/queries.ts +99 -0
- package/src/hooks/useOrders/useChangeOrderState/index.ts +128 -0
- package/src/hooks/useOrders/useOrdersFromStore/index.ts +78 -0
- package/src/hooks/usePWAInstall/index.ts +38 -0
- package/src/hooks/usePaymentMethod/index.ts +3 -0
- package/src/hooks/usePaymentMethod/paymentMethod.gql.ts +62 -0
- package/src/hooks/usePaymentMethod/paymentMethod.types.ts +28 -0
- package/src/hooks/usePaymentMethod/useCreatePaymentMethod/index.ts +25 -0
- package/src/hooks/usePaymentMethod/useGetAllPaymentMethods/index.ts +19 -0
- package/src/hooks/usePaymentMethod/useGetPaymentMethod/index.ts +26 -0
- package/src/hooks/usePortFetcher/index.ts +33 -0
- package/src/hooks/usePrintSaleTicket/index.ts +68 -0
- package/src/hooks/useProductsFood/index.ts +341 -0
- package/src/hooks/useProductsFood/queriesStore.ts +964 -0
- package/src/hooks/useProductsFood/types/index.ts +0 -0
- package/src/hooks/useProductsFood/useEditProduct.ts +49 -0
- package/src/hooks/useProductsFood/usetagsProducts.ts +101 -0
- package/src/hooks/useProviders/index.ts +3 -0
- package/src/hooks/useProviders/queries.ts +31 -0
- package/src/hooks/useProviders/useProvidersCreateStore/index.ts +13 -0
- package/src/hooks/useProviders/useProvidersDataStore/index.ts +25 -0
- package/src/hooks/useProvidersStore/index.ts +25 -0
- package/src/hooks/useProvidersStore/queries.ts +31 -0
- package/src/hooks/usePushNotificationOrder/index.ts +52 -0
- package/src/hooks/usePushNotifications/helpers/index.ts +123 -0
- package/src/hooks/usePushNotifications/index.ts +150 -0
- package/src/hooks/useQueryLocationsMap/index.ts +20 -0
- package/src/hooks/useQueryLocationsMap/queries.ts +40 -0
- package/src/hooks/useRatingArrayData/index.ts +54 -0
- package/src/hooks/useRatingArrayData/queries.ts +19 -0
- package/src/hooks/useReactToPrint/index.txt +1223 -0
- package/src/hooks/useRemoveExtraProductFoodsOptional/index.ts +24 -0
- package/src/hooks/useRemoveExtraProductFoodsOptional/queries.ts +48 -0
- package/src/hooks/useReport/index.ts +48 -0
- package/src/hooks/useReport/queries.ts +72 -0
- package/src/hooks/useRestaurant/helpers/index.ts +28 -0
- package/src/hooks/useRestaurant/helpers/manageStatusOpen.ts +26 -0
- package/src/hooks/useRestaurant/index.ts +71 -0
- package/src/hooks/useRestaurant/queries.ts +81 -0
- package/src/hooks/useRoads/index.ts +20 -0
- package/src/hooks/useRoads/queries.ts +13 -0
- package/src/hooks/useRoles/index.ts +4 -0
- package/src/hooks/useRoles/queries.ts +70 -0
- package/src/hooks/useRoles/useCreateRole.ts +40 -0
- package/src/hooks/useRoles/useGetRoles.ts +37 -0
- package/src/hooks/useRoles/useRemoveRoles.ts +40 -0
- package/src/hooks/useRoles/useUpdateRolesPriority.ts +44 -0
- package/src/hooks/useSales/helpers/add-product.utils.ts +120 -0
- package/src/hooks/useSales/helpers/apply-discount-to-cart.utils.ts +292 -0
- package/src/hooks/useSales/helpers/comment-product.utils.ts +41 -0
- package/src/hooks/useSales/helpers/constants/index.ts +38 -0
- package/src/hooks/useSales/helpers/extras.utils.ts +42 -0
- package/src/hooks/useSales/helpers/filterProductsByCarProId.utils.ts +17 -0
- package/src/hooks/useSales/helpers/increment-product-quantity.utils.ts +76 -0
- package/src/hooks/useSales/helpers/index.ts +3 -0
- package/src/hooks/useSales/helpers/initializer.utils.ts +22 -0
- package/src/hooks/useSales/helpers/isStockInsufficient.ts +3 -0
- package/src/hooks/useSales/helpers/remove-product.utils.test.ts +49 -0
- package/src/hooks/useSales/helpers/remove-product.utils.ts +34 -0
- package/src/hooks/useSales/helpers/resolveProduct.ts +29 -0
- package/src/hooks/useSales/helpers/useAddToCart.ts +64 -0
- package/src/hooks/useSales/index.ts +1418 -0
- package/src/hooks/useSales/queries.ts +532 -0
- package/src/hooks/useSales/types/index.ts +206 -0
- package/src/hooks/useSales/types/use-sales.types.ts +8 -0
- package/src/hooks/useSales/useGetSale.ts +21 -0
- package/src/hooks/useSales/useTotalSales.ts +24 -0
- package/src/hooks/useSaveAvailableProduct/helpers/index.ts +38 -0
- package/src/hooks/useSaveAvailableProduct/index.ts +32 -0
- package/src/hooks/useSaveAvailableProduct/queries.ts +10 -0
- package/src/hooks/useSaveLocation/index.ts +17 -0
- package/src/hooks/useSaveLocation/queries.ts +19 -0
- package/src/hooks/useSchedule/index.ts +35 -0
- package/src/hooks/useSchedule/queries.ts +43 -0
- package/src/hooks/useSchedule/schedule.ts +79 -0
- package/src/hooks/useScheduleData/index.ts +135 -0
- package/src/hooks/useScroll/index.ts +56 -0
- package/src/hooks/useScrollRotate/index.ts +16 -0
- package/src/hooks/useSetImageProducts/index.ts +59 -0
- package/src/hooks/useSetImageProducts/queries.ts +18 -0
- package/src/hooks/useSetSession/index.ts +44 -0
- package/src/hooks/useSetState/index.ts +24 -0
- package/src/hooks/useSetupSchedule/helpers/index.ts +85 -0
- package/src/hooks/useSetupSchedule/index.ts +284 -0
- package/src/hooks/useStatusOpenStore/helpers/index.ts +124 -0
- package/src/hooks/useStatusOpenStore/index.ts +195 -0
- package/src/hooks/useStatusOrdersClient/helpers/index.ts +14 -0
- package/src/hooks/useStatusOrdersClient/index.ts +18 -0
- package/src/hooks/useStatusOrdersClient/queries.ts +80 -0
- package/src/hooks/useStock/index.ts +1 -0
- package/src/hooks/useStock/useStockUpdatedAllSubscription.ts +40 -0
- package/src/hooks/useStockMovements/helpers/index.ts +16 -0
- package/src/hooks/useStockMovements/index.ts +39 -0
- package/src/hooks/useStore/index.ts +83 -0
- package/src/hooks/useStore/queries.ts +163 -0
- package/src/hooks/useStoreCalendar/index.ts +5 -0
- package/src/hooks/useStoreContacts/index.ts +53 -0
- package/src/hooks/useStoreContacts/queries.ts +48 -0
- package/src/hooks/useStoreTable/index.ts +2 -0
- package/src/hooks/useStoreTable/queries.ts +47 -0
- package/src/hooks/useStoreTable/useStoreTableCreate.ts +77 -0
- package/src/hooks/useStoreTable/useStoreTables.ts +15 -0
- package/src/hooks/useSubscriptionValidation/index.ts +112 -0
- package/src/hooks/useTagProducts/index.ts +3 -0
- package/src/hooks/useTagProducts/useDeleteOneTag.ts +106 -0
- package/src/hooks/useTagProducts/useGetAllTags.ts +68 -0
- package/src/hooks/useTagProducts/useRegisterMultipleTags.ts +157 -0
- package/src/hooks/useTheme/index.ts +65 -0
- package/src/hooks/useTimeAgo/useTimeAgo.ts +39 -0
- package/src/hooks/useTokenCards/index.ts +45 -0
- package/src/hooks/useTopProductsMovements/index.ts +27 -0
- package/src/hooks/useTotalAllSales/index.ts +25 -0
- package/src/hooks/useTotalProductsInStock/index.ts +23 -0
- package/src/hooks/useTotalProductsSold/index.ts +23 -0
- package/src/hooks/useTotalProductsSolded/index.ts +20 -0
- package/src/hooks/useUpdateCart/index.ts +131 -0
- package/src/hooks/useUpdateCartCookie/index.ts +60 -0
- package/src/hooks/useUpdateDashboardComponent/index.ts +91 -0
- package/src/hooks/useUpdateExistingOrders/index.ts +85 -0
- package/src/hooks/useUpdateExtProductFoodsSubOptional/index.ts +61 -0
- package/src/hooks/useUpdateModuleOrder/index.ts +37 -0
- package/src/hooks/useUpdateMultipleExtProduct/index.ts +34 -0
- package/src/hooks/useUpdateMultipleExtProduct/queries.ts +33 -0
- package/src/hooks/useUpdateMultipleProducts/index.ts +117 -0
- package/src/hooks/useUpdateMultipleProducts/queries.ts +51 -0
- package/src/hooks/useUploadProducts/helpers/index.ts +1 -0
- package/src/hooks/useUploadProducts/helpers/parseNumber.ts +37 -0
- package/src/hooks/useUploadProducts/helpers/validateProductDataExcel.ts +73 -0
- package/src/hooks/useUploadProducts/index.ts +442 -0
- package/src/hooks/useUpsertGoal/index.ts +68 -0
- package/src/hooks/useUser/index.ts +24 -0
- package/src/hooks/useUser/queries.ts +131 -0
- package/src/hooks/useWeeklyStockMovement/helpers/index.ts +32 -0
- package/src/hooks/useWeeklyStockMovement/index.ts +52 -0
- package/src/hooks/useWindowSize/index.ts +45 -0
- package/src/index.ts +13 -0
- package/src/mock/dessert/index.ts +16 -0
- package/src/mock/index.ts +1 -0
- package/src/security/index.ts +1 -0
- package/src/services/index.ts +1 -0
- package/src/utils/UtilDateRange.ts +56 -0
- package/src/utils/generateCode.ts +222 -0
- package/src/utils/index.ts +2 -0
- package/src/utils/utils.ts +344 -0
- package/tsconfig.eslint.json +16 -0
- package/tsconfig.json +21 -0
- package/tsup.config.ts +24 -0
- package/dist/index.cjs +0 -20089
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
import { useQuery } from '@apollo/client'
|
|
2
|
+
import { useState } from 'react'
|
|
3
|
+
|
|
4
|
+
import { SPANISH_MONTHS } from '../../../utils/index'
|
|
5
|
+
import { GET_ALL_SALES } from '../../useReport/queries'
|
|
6
|
+
|
|
7
|
+
// Función para calcular el total de ventas por mes
|
|
8
|
+
const calculateSalesByMonth = (salesData) => {
|
|
9
|
+
try {
|
|
10
|
+
const result = Array.from({ length: 12 }, (_, mes) => {return {
|
|
11
|
+
Mes: mes,
|
|
12
|
+
Year: new Date().getFullYear(),
|
|
13
|
+
totalProductsPrice: 0
|
|
14
|
+
}})
|
|
15
|
+
|
|
16
|
+
salesData?.forEach((value) => {
|
|
17
|
+
const mes = new Date(value.pDatCre).getMonth()
|
|
18
|
+
result[mes].totalProductsPrice += value.totalProductsPrice
|
|
19
|
+
})
|
|
20
|
+
|
|
21
|
+
return result
|
|
22
|
+
} catch (error) {
|
|
23
|
+
return []
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Función para llenar los meses faltantes
|
|
28
|
+
const fillMissingMonths = (data) => {
|
|
29
|
+
try {
|
|
30
|
+
const allMonths = Array.from({ length: 12 }, (_, i) => {return i})
|
|
31
|
+
const missingMonths = allMonths.filter(month => {return !data.some(data => {return data.Mes === month})})
|
|
32
|
+
return data.concat(
|
|
33
|
+
missingMonths.map(element => {return {
|
|
34
|
+
Mes: element,
|
|
35
|
+
totalProductsPrice: 0,
|
|
36
|
+
Year: ''
|
|
37
|
+
}})
|
|
38
|
+
).sort((a, b) => {return a.Mes - b.Mes})
|
|
39
|
+
} catch (error) {
|
|
40
|
+
return []
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
// eslint-disable-next-line prefer-const
|
|
44
|
+
let chartTypeYear = ''
|
|
45
|
+
// Función para obtener los datos del gráfico
|
|
46
|
+
const getChartData = (asFilter, newResult, result, chartType) => {return {
|
|
47
|
+
labels: asFilter
|
|
48
|
+
? newResult.map(data => {return SPANISH_MONTHS[data.Mes]})
|
|
49
|
+
: result.map(data => {return SPANISH_MONTHS[data.Mes]}),
|
|
50
|
+
datasets: [
|
|
51
|
+
{
|
|
52
|
+
label: `Ventas por meses del año ${asFilter ? chartTypeYear : ''}`,
|
|
53
|
+
data: asFilter
|
|
54
|
+
? newResult.map(data => {return data.totalProductsPrice})
|
|
55
|
+
: result.map(data => {return data.totalProductsPrice}),
|
|
56
|
+
backgroundColor: [
|
|
57
|
+
'rgba(255, 99, 132, 0.2)',
|
|
58
|
+
'rgba(54, 162, 235, 0.2)',
|
|
59
|
+
'rgba(255, 206, 86, 0.2)',
|
|
60
|
+
'rgba(75, 192, 192, 0.2)',
|
|
61
|
+
'rgba(153, 102, 255, 0.2)',
|
|
62
|
+
'rgba(255, 159, 64, 0.2)'
|
|
63
|
+
],
|
|
64
|
+
borderColor: chartType === 'bar'
|
|
65
|
+
? [
|
|
66
|
+
'rgba(255, 99, 132, 1)',
|
|
67
|
+
'rgba(54, 162, 235, 1)',
|
|
68
|
+
'rgba(255, 206, 86, 1)',
|
|
69
|
+
'rgba(75, 192, 192, 1)',
|
|
70
|
+
'rgba(153, 102, 255, 1)',
|
|
71
|
+
'rgba(255, 159, 64, 1)'
|
|
72
|
+
]
|
|
73
|
+
: 'rgb(255 0 0)',
|
|
74
|
+
tension: 0.6,
|
|
75
|
+
fill: false,
|
|
76
|
+
borderWidth: 1,
|
|
77
|
+
barPercentage: 1,
|
|
78
|
+
barThickness: 50,
|
|
79
|
+
minBarLength: 3
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
}}
|
|
83
|
+
|
|
84
|
+
// Función para agrupar los datos por año
|
|
85
|
+
const groupSalesByYear = (salesData = []) => {
|
|
86
|
+
const groupedData = {}
|
|
87
|
+
try {
|
|
88
|
+
salesData?.forEach((item) => {
|
|
89
|
+
const year = new Date(item.pDatCre).getFullYear()
|
|
90
|
+
if (!groupedData[year]) {
|
|
91
|
+
groupedData[year] = []
|
|
92
|
+
}
|
|
93
|
+
groupedData[year].push(item)
|
|
94
|
+
})
|
|
95
|
+
return groupedData
|
|
96
|
+
} catch (error) {
|
|
97
|
+
return groupedData
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Función para obtener años únicos
|
|
102
|
+
const getUniqueYears = (salesData = []) => {
|
|
103
|
+
try {
|
|
104
|
+
const years = []
|
|
105
|
+
salesData?.forEach((item) => {
|
|
106
|
+
const y = new Date(item.pDatCre).getFullYear()
|
|
107
|
+
if (!years.includes(y)) {
|
|
108
|
+
years.push(y)
|
|
109
|
+
}
|
|
110
|
+
})
|
|
111
|
+
return years.sort((a, b) => {return b - a})
|
|
112
|
+
} catch (error) {
|
|
113
|
+
return []
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export const useChartData = ({ year }) => {
|
|
118
|
+
const { data, loading } = useQuery(GET_ALL_SALES)
|
|
119
|
+
const [chartType, setChartType] = useState('Line')
|
|
120
|
+
const [chartTypeYear, setChartTypeYear] = useState(new Date().getFullYear())
|
|
121
|
+
const [asFilter, setFilter] = useState(false)
|
|
122
|
+
const [newResult, setNewResult] = useState([])
|
|
123
|
+
|
|
124
|
+
const result = calculateSalesByMonth(data?.getAllSalesStore)
|
|
125
|
+
|
|
126
|
+
const filledResult = fillMissingMonths(result)
|
|
127
|
+
|
|
128
|
+
const dataChart = getChartData(asFilter, newResult, filledResult, chartType)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
const groupedData = groupSalesByYear(data?.getAllSalesStore)
|
|
132
|
+
const years = getUniqueYears(data?.getAllSalesStore)
|
|
133
|
+
|
|
134
|
+
const handleChangeYear = (value) => {
|
|
135
|
+
setFilter(true)
|
|
136
|
+
const currentYear = parseInt(value)
|
|
137
|
+
setChartTypeYear(currentYear || '')
|
|
138
|
+
|
|
139
|
+
if (filledResult?.length > 0) {
|
|
140
|
+
const filterToYear = filledResult.filter((elem) => {return elem?.Year === currentYear})
|
|
141
|
+
|
|
142
|
+
const missingNewMonths = allMonths?.filter(month => {return !filterToYear.some(data => {return data.Mes === month})})
|
|
143
|
+
|
|
144
|
+
const newFilteredResult = filterToYear.concat(
|
|
145
|
+
missingNewMonths.map(element => {return {
|
|
146
|
+
Mes: element,
|
|
147
|
+
totalProductsPrice: 0,
|
|
148
|
+
Year: ''
|
|
149
|
+
}})
|
|
150
|
+
).sort((a, b) => {return a.Mes - b.Mes})
|
|
151
|
+
|
|
152
|
+
setNewResult(newFilteredResult)
|
|
153
|
+
return newFilteredResult
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
const cleanFilter = () => {
|
|
158
|
+
setFilter(false)
|
|
159
|
+
setChartTypeYear(new Date().getFullYear())
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
const sortYear = () => {return years.sort((a, b) => {return b - a})}
|
|
163
|
+
const labelTitle = `Ventas por meses del año ${asFilter ? chartTypeYear : ''}`
|
|
164
|
+
const organiceYears = sortYear()
|
|
165
|
+
const options = {
|
|
166
|
+
interaction: {
|
|
167
|
+
mode: 'index',
|
|
168
|
+
intersect: false
|
|
169
|
+
},
|
|
170
|
+
scales: {
|
|
171
|
+
x: {
|
|
172
|
+
stacked: true
|
|
173
|
+
},
|
|
174
|
+
y: {
|
|
175
|
+
stacked: true
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
plugins: {
|
|
179
|
+
title: {
|
|
180
|
+
display: true,
|
|
181
|
+
text: labelTitle
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
return {
|
|
186
|
+
handleChangeYear,
|
|
187
|
+
setFilter,
|
|
188
|
+
cleanFilter,
|
|
189
|
+
setChartType,
|
|
190
|
+
years: organiceYears,
|
|
191
|
+
asFilter,
|
|
192
|
+
chartTypeYear,
|
|
193
|
+
options,
|
|
194
|
+
chartType,
|
|
195
|
+
labelTitle,
|
|
196
|
+
result: filledResult,
|
|
197
|
+
dataChart,
|
|
198
|
+
loading
|
|
199
|
+
}
|
|
200
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { useGetAllSales } from '../../useGetAllSales'
|
|
2
|
+
|
|
3
|
+
export const useChartDataAllOrders = ({
|
|
4
|
+
onScreen = false
|
|
5
|
+
} = {}) => {
|
|
6
|
+
const { data, loading } = useGetAllSales({
|
|
7
|
+
onScreen
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
// Objeto para mapear los códigos de estado a sus nombres
|
|
11
|
+
const statusMap = {
|
|
12
|
+
1: 'ACCEPT',
|
|
13
|
+
2: 'PROCESSING',
|
|
14
|
+
3: 'READY',
|
|
15
|
+
4: 'CONCLUDES',
|
|
16
|
+
5: 'REJECTED'
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// Objeto para almacenar los totales por estado
|
|
20
|
+
const totalsByStatus = {}
|
|
21
|
+
|
|
22
|
+
// Inicializar totales en 0 para todos los estados
|
|
23
|
+
for (const status in statusMap) {
|
|
24
|
+
totalsByStatus[status] = 0
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Procesar los datos y acumular los totales por estado
|
|
28
|
+
data?.forEach(item => {
|
|
29
|
+
const status = item.pSState
|
|
30
|
+
const totalPrice = item.totalProductsPrice
|
|
31
|
+
totalsByStatus[status] += totalPrice
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
// Preparar los datos en el formato requerido por Chart.js
|
|
35
|
+
const chartLabels = []
|
|
36
|
+
const chartData = []
|
|
37
|
+
|
|
38
|
+
// Iterar a través del statusMap para llenar los datos
|
|
39
|
+
for (const status in statusMap) {
|
|
40
|
+
const statusLabel = statusMap[status]
|
|
41
|
+
chartLabels?.push(statusLabel)
|
|
42
|
+
chartData?.push(totalsByStatus[status] || 0)
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const chartJsData = {
|
|
46
|
+
labels: chartLabels,
|
|
47
|
+
datasets: [{
|
|
48
|
+
tension: 2,
|
|
49
|
+
fill: false,
|
|
50
|
+
borderWidth: 1,
|
|
51
|
+
barPercentage: 1,
|
|
52
|
+
barThickness: 50,
|
|
53
|
+
minBarLength: 3,
|
|
54
|
+
label: '',
|
|
55
|
+
data: chartData,
|
|
56
|
+
backgroundColor: [
|
|
57
|
+
'#FF5733', // Reddish color
|
|
58
|
+
'#FFC300', // Yellowish color
|
|
59
|
+
'#FF8C42', // Orange color
|
|
60
|
+
'#138D75', // Gold color
|
|
61
|
+
'#ff0000' // Tomato color
|
|
62
|
+
]
|
|
63
|
+
}]
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
const defaultOptions = {
|
|
67
|
+
animation: {
|
|
68
|
+
animateRotate: true,
|
|
69
|
+
animateScale: true
|
|
70
|
+
},
|
|
71
|
+
responsive: true,
|
|
72
|
+
maintainAspectRatio: false,
|
|
73
|
+
legend: {
|
|
74
|
+
position: 'bottom'
|
|
75
|
+
},
|
|
76
|
+
tooltips: {
|
|
77
|
+
callbacks: {
|
|
78
|
+
label: (tooltipItem, data) => {
|
|
79
|
+
const dataset = data?.datasets[tooltipItem.datasetIndex]
|
|
80
|
+
const total = dataset?.data?.reduce((previousValue, currentValue) => {return previousValue + currentValue})
|
|
81
|
+
const currentValue = dataset?.data[tooltipItem?.index]
|
|
82
|
+
const percentage = ((currentValue / total) * 100).toFixed(2)
|
|
83
|
+
return `${data?.labels[tooltipItem?.index]}: ${currentValue} (${percentage}%)`
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return {
|
|
90
|
+
loading,
|
|
91
|
+
data: loading ? [] : chartJsData,
|
|
92
|
+
option: loading ? [] : defaultOptions
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { useSubscription, gql } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
const NEW_CHAT_ROOM_MESSAGE_SUBSCRIPTION = gql`
|
|
4
|
+
subscription NewChatRoomMessage($codeRoom: String!) {
|
|
5
|
+
newChatRoomMessage(codeRoom: $codeRoom) {
|
|
6
|
+
uuid
|
|
7
|
+
content
|
|
8
|
+
aDatCre
|
|
9
|
+
from
|
|
10
|
+
to
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
`
|
|
14
|
+
|
|
15
|
+
export const chatRoomSubscription = (codeRoom, onMessageReceived) => {
|
|
16
|
+
const subscription = useSubscription(NEW_CHAT_ROOM_MESSAGE_SUBSCRIPTION, {
|
|
17
|
+
variables: { codeRoom },
|
|
18
|
+
onSubscriptionData: ({ client, subscriptionData }) => {
|
|
19
|
+
if (subscriptionData.data && subscriptionData.data.newChatRoomMessage) {
|
|
20
|
+
// Llama a la función proporcionada cuando se recibe un nuevo mensaje
|
|
21
|
+
onMessageReceived(subscriptionData.data.newChatRoomMessage)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
// Puedes ajustar lo que devuelve el hook según tus necesidades
|
|
27
|
+
return subscription
|
|
28
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { useCallback, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Hook for managing multiple checkbox states
|
|
5
|
+
*
|
|
6
|
+
* @param {Array<String | Number>} elem - list of all elem
|
|
7
|
+
* @param {Array<String | Number>} selectedIds - list of selected elem (optional)
|
|
8
|
+
*
|
|
9
|
+
* @returns {Object}
|
|
10
|
+
* - checkboxStates (state object),
|
|
11
|
+
* - numSelectedItems (number),
|
|
12
|
+
* - handleChangeCheck (callback),
|
|
13
|
+
* - toggleAll (callback),
|
|
14
|
+
* - selectAll (callback),
|
|
15
|
+
* - clearAll (callback)
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
export const useCheckboxState = (elem, selectedIds = [], disabledIds = [], setArray = () => { }) => {
|
|
19
|
+
const numTotalItems = elem?.length
|
|
20
|
+
const [checkedItems, setCheckedItems] = useState(new Set(selectedIds))
|
|
21
|
+
const [disabledItems, setDisabledItems] = useState(new Set(disabledIds))
|
|
22
|
+
|
|
23
|
+
const handleChangeCheck = useCallback((event, id) => {
|
|
24
|
+
const target = event.target
|
|
25
|
+
setCheckedItems(prevState => {
|
|
26
|
+
const newState = new Set(prevState)
|
|
27
|
+
if (target.checked) {
|
|
28
|
+
newState.add(id)
|
|
29
|
+
} else {
|
|
30
|
+
newState.delete(id)
|
|
31
|
+
}
|
|
32
|
+
return newState
|
|
33
|
+
})
|
|
34
|
+
}, [])
|
|
35
|
+
|
|
36
|
+
const setAll = useCallback(
|
|
37
|
+
isChecked => {
|
|
38
|
+
setCheckedItems(prevState => {
|
|
39
|
+
const newState = new Set(prevState)
|
|
40
|
+
for (const id of elem) {
|
|
41
|
+
if (disabledItems.has(id)) {
|
|
42
|
+
continue
|
|
43
|
+
}
|
|
44
|
+
if (isChecked) {
|
|
45
|
+
newState.add(id)
|
|
46
|
+
} else {
|
|
47
|
+
newState.delete(id)
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return newState
|
|
51
|
+
})
|
|
52
|
+
},
|
|
53
|
+
[elem, disabledItems]
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
const selectAll = useCallback(() => {
|
|
57
|
+
if (checkedItems.size === numTotalItems) {
|
|
58
|
+
return
|
|
59
|
+
}
|
|
60
|
+
setAll(true)
|
|
61
|
+
}, [checkedItems, numTotalItems, setAll])
|
|
62
|
+
|
|
63
|
+
const clearAll = useCallback(() => {
|
|
64
|
+
if (checkedItems.size === 0) {
|
|
65
|
+
return
|
|
66
|
+
}
|
|
67
|
+
setAll(false)
|
|
68
|
+
}, [checkedItems, setAll])
|
|
69
|
+
|
|
70
|
+
const toggleAll = useCallback(() => {
|
|
71
|
+
const numDisabledAndChecked = [...disabledItems].reduce((count, id) => {
|
|
72
|
+
if (checkedItems.has(id)) {
|
|
73
|
+
return count + 1
|
|
74
|
+
}
|
|
75
|
+
return count
|
|
76
|
+
}, 0)
|
|
77
|
+
if (checkedItems.size - numDisabledAndChecked === 0) {
|
|
78
|
+
selectAll()
|
|
79
|
+
} else {
|
|
80
|
+
clearAll()
|
|
81
|
+
}
|
|
82
|
+
}, [checkedItems, disabledItems, selectAll, clearAll])
|
|
83
|
+
|
|
84
|
+
const enableCheckboxes = useCallback((...elem) => {
|
|
85
|
+
setDisabledItems(prevState => {
|
|
86
|
+
const newState = new Set(prevState)
|
|
87
|
+
for (const id of elem) {
|
|
88
|
+
newState.delete(id)
|
|
89
|
+
}
|
|
90
|
+
return newState
|
|
91
|
+
})
|
|
92
|
+
}, [])
|
|
93
|
+
|
|
94
|
+
const disableCheckboxes = useCallback((...elem) => {
|
|
95
|
+
setDisabledItems(prevState => {
|
|
96
|
+
const newState = new Set(prevState)
|
|
97
|
+
for (const id of elem) {
|
|
98
|
+
newState.add(id)
|
|
99
|
+
}
|
|
100
|
+
return newState
|
|
101
|
+
})
|
|
102
|
+
}, [])
|
|
103
|
+
|
|
104
|
+
return {
|
|
105
|
+
checkedItems,
|
|
106
|
+
disabledItems,
|
|
107
|
+
handleChangeCheck,
|
|
108
|
+
toggleAll,
|
|
109
|
+
selectAll,
|
|
110
|
+
clearAll,
|
|
111
|
+
setCheckedItems,
|
|
112
|
+
enableCheckboxes,
|
|
113
|
+
disableCheckboxes
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useLazyQuery } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
import { GET_ALL_CITIES } from './queries'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Custom hook to fetch cities lazily based on the provided department ID.
|
|
7
|
+
*
|
|
8
|
+
* @returns {Array} - Returns an array containing a function to execute the query, and an object containing data and any associated query state/error.
|
|
9
|
+
*/
|
|
10
|
+
export function useCities () {
|
|
11
|
+
const [getCities, { data, loading, error }] = useLazyQuery(GET_ALL_CITIES)
|
|
12
|
+
|
|
13
|
+
return [getCities, { data: data ? data?.cities : [], loading, error }]
|
|
14
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import {
|
|
2
|
+
useQuery,
|
|
3
|
+
useMutation,
|
|
4
|
+
useLazyQuery
|
|
5
|
+
} from '@apollo/client'
|
|
6
|
+
|
|
7
|
+
import {
|
|
8
|
+
CREATE_CLIENTS,
|
|
9
|
+
DELETE_ONE_CLIENTS,
|
|
10
|
+
GET_ALL_CLIENTS,
|
|
11
|
+
GET_ONE_CLIENT,
|
|
12
|
+
EDIT_ONE_CLIENT
|
|
13
|
+
} from './queries'
|
|
14
|
+
|
|
15
|
+
export const useGetClients = ({
|
|
16
|
+
max,
|
|
17
|
+
order = 'DESC',
|
|
18
|
+
search,
|
|
19
|
+
sendNotification = () => { }
|
|
20
|
+
} = {}) => {
|
|
21
|
+
const {
|
|
22
|
+
loading,
|
|
23
|
+
error,
|
|
24
|
+
called,
|
|
25
|
+
data,
|
|
26
|
+
refetch
|
|
27
|
+
} = useQuery(GET_ALL_CLIENTS, {
|
|
28
|
+
onError: () => {
|
|
29
|
+
sendNotification({
|
|
30
|
+
title: 'Error',
|
|
31
|
+
description: 'Algo salió mal',
|
|
32
|
+
backgroundColor: 'error'
|
|
33
|
+
})
|
|
34
|
+
},
|
|
35
|
+
variables: {
|
|
36
|
+
search,
|
|
37
|
+
max: max || 100,
|
|
38
|
+
order
|
|
39
|
+
}
|
|
40
|
+
})
|
|
41
|
+
return [data?.getAllClients || [], {
|
|
42
|
+
loading: called ? false : loading,
|
|
43
|
+
buttonLoading: loading,
|
|
44
|
+
error,
|
|
45
|
+
refetch
|
|
46
|
+
}]
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const useDeleteClients = ({ sendNotification = () => { } } = {}) => {
|
|
50
|
+
const [deleteClient, { loading, error }] = useMutation(DELETE_ONE_CLIENTS)
|
|
51
|
+
return [deleteClient, { loading, error }]
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export const useCreateClient = ({ sendNotification = () => { } } = {}) => {
|
|
55
|
+
const [createClients, { loading, error }] = useMutation(CREATE_CLIENTS, {
|
|
56
|
+
onError: (data) => {
|
|
57
|
+
sendNotification({
|
|
58
|
+
title: '',
|
|
59
|
+
description: 'Error',
|
|
60
|
+
backgroundColor: 'error'
|
|
61
|
+
})
|
|
62
|
+
}
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
return [createClients || [], { loading, error }]
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export const useEditClient = ({ sendNotification = () => { } } = {}) => {
|
|
69
|
+
const [editOneClient, { loading, error, data }] = useMutation(EDIT_ONE_CLIENT, {
|
|
70
|
+
onCompleted: (data) => {
|
|
71
|
+
if (data?.editOneClient?.success) {
|
|
72
|
+
return sendNotification({
|
|
73
|
+
title: 'Éxito',
|
|
74
|
+
description: data?.editOneClient?.message,
|
|
75
|
+
backgroundColor: 'success'
|
|
76
|
+
})
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
onError: (data) => {
|
|
80
|
+
if (data?.editOneClient) {
|
|
81
|
+
return sendNotification({
|
|
82
|
+
title: 'Error',
|
|
83
|
+
description: data?.editOneClient?.message,
|
|
84
|
+
backgroundColor: 'error'
|
|
85
|
+
})
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
return [editOneClient, { loading, error, data }]
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export const useGetOneClient = ({ sendNotification = () => { } } = {}) => {
|
|
94
|
+
const [getOneClients, { data, loading, error }] = useLazyQuery(GET_ONE_CLIENT)
|
|
95
|
+
|
|
96
|
+
return [getOneClients || [], { loading, error, data }]
|
|
97
|
+
}
|