npm-pkg-hook 1.12.7 → 1.12.9
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 +47752 -10080
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +47068 -9612
- 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 +8 -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,193 @@
|
|
|
1
|
+
import { gql } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
export const CREATE_SCHEDULE_STORE = gql`
|
|
4
|
+
mutation setStoreSchedule($input: IsStoreSchedule!) {
|
|
5
|
+
setStoreSchedule(input: $input) {
|
|
6
|
+
success
|
|
7
|
+
message
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
`
|
|
11
|
+
export const GET_SCHEDULE_STORE = gql`
|
|
12
|
+
query getStoreSchedules($schDay: Int, $idStore: ID) {
|
|
13
|
+
getStoreSchedules(schDay: $schDay, idStore: $idStore) {
|
|
14
|
+
schId
|
|
15
|
+
idStore
|
|
16
|
+
schDay
|
|
17
|
+
schHoSta
|
|
18
|
+
schHoEnd
|
|
19
|
+
schState
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
`
|
|
23
|
+
export const GET_ONE_SCHEDULE_STORE = gql`
|
|
24
|
+
query getOneStoreSchedules($schDay: Int, $idStore: ID) {
|
|
25
|
+
getOneStoreSchedules(schDay: $schDay, idStore: $idStore) {
|
|
26
|
+
schId
|
|
27
|
+
schDay
|
|
28
|
+
schHoSta
|
|
29
|
+
schHoEnd
|
|
30
|
+
schState
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
`
|
|
34
|
+
export const GET_CAT_OF_PRODUCTS = gql`
|
|
35
|
+
query getAllCatOfProducts($idStore: ID) {
|
|
36
|
+
getAllCatOfProducts(idStore: $idStore) {
|
|
37
|
+
id
|
|
38
|
+
cpId
|
|
39
|
+
catName
|
|
40
|
+
catDescription
|
|
41
|
+
schState
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
`
|
|
45
|
+
export const REGISTER_CAT_OF_PRODUCTS = gql`
|
|
46
|
+
mutation updatedProducts($input: InputCatProducts) {
|
|
47
|
+
updatedProducts(input: $input) {
|
|
48
|
+
success
|
|
49
|
+
message
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
`
|
|
53
|
+
export const REGISTER_CONTRACT_STORE = gql`
|
|
54
|
+
mutation createOneContract($input: InputContractType) {
|
|
55
|
+
createOneContract(input: $input) {
|
|
56
|
+
success
|
|
57
|
+
message
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
`
|
|
61
|
+
export const GET_ALL_EMPLOYEE_STORE = gql`
|
|
62
|
+
query employees($umId: ID, $cId: ID, $aId: ID) {
|
|
63
|
+
employees(umId: $umId, cId: $cId, aId: $aId) {
|
|
64
|
+
eId
|
|
65
|
+
idStore
|
|
66
|
+
id
|
|
67
|
+
idEmployee
|
|
68
|
+
eSalary
|
|
69
|
+
typeContract
|
|
70
|
+
uEmail
|
|
71
|
+
termContract
|
|
72
|
+
eDatAdm
|
|
73
|
+
eState
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
`
|
|
77
|
+
|
|
78
|
+
export const GET_ALL_RATING_START_STORE = gql`
|
|
79
|
+
query getAllRatingStar($idStore: ID) {
|
|
80
|
+
getAllRatingStar(idStore: $idStore) {
|
|
81
|
+
rSId
|
|
82
|
+
rScore
|
|
83
|
+
idStore
|
|
84
|
+
createAt
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
`
|
|
88
|
+
export const GET_ALL_VISITOR_STORE = gql`
|
|
89
|
+
query getAllVisitorStore(
|
|
90
|
+
$idStore: ID
|
|
91
|
+
$search: String
|
|
92
|
+
$min: Int
|
|
93
|
+
$max: Int
|
|
94
|
+
$fromDate: DateTime
|
|
95
|
+
$toDate: DateTime
|
|
96
|
+
) {
|
|
97
|
+
getAllVisitorStore(
|
|
98
|
+
idStore: $idStore
|
|
99
|
+
search: $search
|
|
100
|
+
min: $min
|
|
101
|
+
max: $max
|
|
102
|
+
fromDate: $fromDate
|
|
103
|
+
toDate: $toDate
|
|
104
|
+
) {
|
|
105
|
+
visitStoreId
|
|
106
|
+
id
|
|
107
|
+
idStore
|
|
108
|
+
createAt
|
|
109
|
+
updateAt
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
`
|
|
113
|
+
export const GET_MIN_PEDIDO = gql`
|
|
114
|
+
query getMinPrice($idStore: ID) {
|
|
115
|
+
getMinPrice(idStore: $idStore)
|
|
116
|
+
}
|
|
117
|
+
`
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
export const GET_All_RATING_STORE = gql`
|
|
121
|
+
query getAllRating($idStore: ID) {
|
|
122
|
+
getAllRating(idStore: $idStore) {
|
|
123
|
+
idStore
|
|
124
|
+
rId
|
|
125
|
+
id
|
|
126
|
+
rAppearance
|
|
127
|
+
rTasty
|
|
128
|
+
rGoodTemperature
|
|
129
|
+
rGoodCondition
|
|
130
|
+
rState
|
|
131
|
+
createAt
|
|
132
|
+
updateAt
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
`
|
|
136
|
+
export const CREATE_LOGO = gql`
|
|
137
|
+
mutation registerLogo($logo: Upload, $idStore: ID) {
|
|
138
|
+
registerLogo(logo: $logo, idStore: $idStore) {
|
|
139
|
+
success
|
|
140
|
+
message
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
`
|
|
144
|
+
export const CREATE_BANNER_STORE = gql`
|
|
145
|
+
mutation registerBanner($input: IBanner) {
|
|
146
|
+
registerBanner(input: $input) {
|
|
147
|
+
success
|
|
148
|
+
message
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
`
|
|
152
|
+
export const DELETE_ONE_LOGO_STORE = gql`
|
|
153
|
+
mutation deleteALogoStore($idStore: ID, $Image: String) {
|
|
154
|
+
deleteALogoStore(idStore: $idStore, Image: $Image) {
|
|
155
|
+
message
|
|
156
|
+
success
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
`
|
|
160
|
+
export const GET_ONE_BANNER_STORE = gql`
|
|
161
|
+
query getOneBanners($idStore: ID, $id: ID) {
|
|
162
|
+
getOneBanners(idStore: $idStore, id: $id) {
|
|
163
|
+
bnId
|
|
164
|
+
id
|
|
165
|
+
path
|
|
166
|
+
bnImageFileName
|
|
167
|
+
idStore
|
|
168
|
+
bnState
|
|
169
|
+
createAt
|
|
170
|
+
updateAt
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
`
|
|
174
|
+
export const DELETE_ONE_BANNER_STORE = gql`
|
|
175
|
+
mutation DeleteOneBanner(
|
|
176
|
+
$bnState: Int
|
|
177
|
+
$idStore: ID
|
|
178
|
+
$bnId: ID
|
|
179
|
+
$bnImage: String
|
|
180
|
+
$bnImageFileName: String
|
|
181
|
+
) {
|
|
182
|
+
DeleteOneBanner(
|
|
183
|
+
bnState: $bnState
|
|
184
|
+
idStore: $idStore
|
|
185
|
+
bnId: $bnId
|
|
186
|
+
bnImage: $bnImage
|
|
187
|
+
bnImageFileName: $bnImageFileName
|
|
188
|
+
) {
|
|
189
|
+
success
|
|
190
|
+
message
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
`
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { useQuery } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
import { GET_ALL_INCOMING_ORDERS } from './queries' // Asegúrate de importar tu consulta GraphQL
|
|
4
|
+
|
|
5
|
+
export const useIncomingOrders = ({ statusOrder, idStore }) => {
|
|
6
|
+
const { data, loading, error } = useQuery(GET_ALL_INCOMING_ORDERS, {
|
|
7
|
+
variables: (statusOrder && idStore) ? { statusOrder, idStore } : {}
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
return [data?.getAllIncomingToDayOrders || [], { loading, error }]
|
|
11
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { gql } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
export const GET_ALL_INCOMING_ORDERS = gql`
|
|
4
|
+
query getAllIncomingToDayOrders($statusOrder: Int, $idStore: ID) {
|
|
5
|
+
getAllIncomingToDayOrders(statusOrder: $statusOrder, idStore: $idStore) {
|
|
6
|
+
pdpId
|
|
7
|
+
pCodeRef
|
|
8
|
+
idStore
|
|
9
|
+
pPDate
|
|
10
|
+
channel
|
|
11
|
+
pSState
|
|
12
|
+
pDatCre
|
|
13
|
+
pDatMod
|
|
14
|
+
pPRecoger
|
|
15
|
+
payId
|
|
16
|
+
pdpId
|
|
17
|
+
totalProductsPrice
|
|
18
|
+
locationUser
|
|
19
|
+
getAllPedidoStore {
|
|
20
|
+
pdpId
|
|
21
|
+
idStore
|
|
22
|
+
pCodeRef
|
|
23
|
+
ShoppingCard
|
|
24
|
+
getAllShoppingCard {
|
|
25
|
+
ShoppingCard
|
|
26
|
+
cantProducts
|
|
27
|
+
priceProduct
|
|
28
|
+
refCodePid
|
|
29
|
+
subProductsId
|
|
30
|
+
comments
|
|
31
|
+
pId
|
|
32
|
+
salesExtProductFoodOptional {
|
|
33
|
+
pId
|
|
34
|
+
opExPid
|
|
35
|
+
OptionalProName
|
|
36
|
+
state
|
|
37
|
+
code
|
|
38
|
+
required
|
|
39
|
+
numbersOptionalOnly
|
|
40
|
+
pDatCre
|
|
41
|
+
pDatMod
|
|
42
|
+
saleExtProductFoodsSubOptionalAll {
|
|
43
|
+
pId
|
|
44
|
+
opExPid
|
|
45
|
+
idStore
|
|
46
|
+
opSubExPid
|
|
47
|
+
OptionalSubProName
|
|
48
|
+
exCodeOptionExtra
|
|
49
|
+
exCode
|
|
50
|
+
state
|
|
51
|
+
pDatCre
|
|
52
|
+
pDatMod
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
ExtProductFoodsAll {
|
|
56
|
+
pId
|
|
57
|
+
exPid
|
|
58
|
+
exState
|
|
59
|
+
extraName
|
|
60
|
+
extraPrice
|
|
61
|
+
newExtraPrice
|
|
62
|
+
quantity
|
|
63
|
+
state
|
|
64
|
+
pDatCre
|
|
65
|
+
pDatMod
|
|
66
|
+
}
|
|
67
|
+
productFood {
|
|
68
|
+
pId
|
|
69
|
+
carProId
|
|
70
|
+
colorId
|
|
71
|
+
idStore
|
|
72
|
+
pName
|
|
73
|
+
ProPrice
|
|
74
|
+
ProDescuento
|
|
75
|
+
ProDescription
|
|
76
|
+
ValueDelivery
|
|
77
|
+
ProImage
|
|
78
|
+
ProStar
|
|
79
|
+
pState
|
|
80
|
+
pDatCre
|
|
81
|
+
pDatMod
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
`
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import { createRoot } from 'react-dom' // Import createRoot from react-dom
|
|
3
|
+
import './styles.css'
|
|
4
|
+
|
|
5
|
+
const htmlText =
|
|
6
|
+
'<p style=\'display:inline;\'>Lorem ipsum</p> dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.'
|
|
7
|
+
|
|
8
|
+
function App () {
|
|
9
|
+
const [state, setState] = React.useState({
|
|
10
|
+
showOriginalHTML: false,
|
|
11
|
+
originalHTML: htmlText
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
const handleShowText = React.useCallback(() => {
|
|
15
|
+
setState((prevState) => {
|
|
16
|
+
return {
|
|
17
|
+
...prevState,
|
|
18
|
+
showOriginalHTML: !prevState.showOriginalHTML
|
|
19
|
+
}
|
|
20
|
+
})
|
|
21
|
+
}, [setState])
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<div className='container'>
|
|
25
|
+
<div
|
|
26
|
+
className='text'
|
|
27
|
+
dangerouslySetInnerHTML={{
|
|
28
|
+
__html: `${state.originalHTML}`
|
|
29
|
+
}}
|
|
30
|
+
/>
|
|
31
|
+
<button className='read-more' onClick={handleShowText}>
|
|
32
|
+
{!state.showOriginalHTML ? 'read more' : 'show less'}
|
|
33
|
+
</button>
|
|
34
|
+
</div>
|
|
35
|
+
)
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const root = document.getElementById('root')
|
|
39
|
+
createRoot(root).render(<App />) // Use createRoot to render your React app
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
export const useOnScreen = (threshold = 0.6) => {
|
|
4
|
+
const [isVisible, setIsVisible] = useState(false)
|
|
5
|
+
const [ref, setRef] = useState(null)
|
|
6
|
+
|
|
7
|
+
useEffect(
|
|
8
|
+
() => {
|
|
9
|
+
let observer
|
|
10
|
+
if (ref) {
|
|
11
|
+
observer = new IntersectionObserver(
|
|
12
|
+
([entry]) => {
|
|
13
|
+
setIsVisible(entry.isIntersecting)
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
// rootMargin,
|
|
17
|
+
threshold
|
|
18
|
+
}
|
|
19
|
+
)
|
|
20
|
+
observer.observe(ref)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
return () => {
|
|
24
|
+
if (ref && observer) observer.unobserve(ref)
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
[ref]
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
return [setRef, isVisible]
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const defaultObserverOptions = {
|
|
34
|
+
root: null,
|
|
35
|
+
threshold: 0.1,
|
|
36
|
+
rootMargin: '0px'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export const useIntersectionObserver = ({
|
|
40
|
+
active = true,
|
|
41
|
+
disconnect,
|
|
42
|
+
el,
|
|
43
|
+
options = defaultObserverOptions,
|
|
44
|
+
onEnter = () => {},
|
|
45
|
+
out = () => {}
|
|
46
|
+
}) => {
|
|
47
|
+
const [onScreen, setOnScreen] = useState()
|
|
48
|
+
useEffect(() => {
|
|
49
|
+
let observer
|
|
50
|
+
const refEl = el.current
|
|
51
|
+
if (IntersectionObserver && active && refEl) {
|
|
52
|
+
observer = new IntersectionObserver((entries) => {
|
|
53
|
+
entries.forEach((entry) => {
|
|
54
|
+
if (disconnect) {
|
|
55
|
+
if (entry.isIntersecting) {
|
|
56
|
+
onEnter()
|
|
57
|
+
setOnScreen(true)
|
|
58
|
+
} else {
|
|
59
|
+
out()
|
|
60
|
+
setOnScreen(false)
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
if (!disconnect) {
|
|
64
|
+
onEnter()
|
|
65
|
+
setOnScreen(true)
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
}, options)
|
|
69
|
+
observer.observe(refEl)
|
|
70
|
+
}
|
|
71
|
+
return () => {
|
|
72
|
+
if (disconnect) {
|
|
73
|
+
|
|
74
|
+
observer === null || observer === void 0 ? void 0 : observer.disconnect(refEl)
|
|
75
|
+
}
|
|
76
|
+
if (!disconnect) {
|
|
77
|
+
if (el && observer) observer.unobserve(refEl)
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}, [el, onEnter, active, options])
|
|
81
|
+
return {
|
|
82
|
+
onScreen
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { gql } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
export const GET_PRODUCTS_IN_STOCK = gql`
|
|
4
|
+
query getProductsInStock($limit: Int, $offset: Int) {
|
|
5
|
+
getProductsInStock(limit: $limit, offset: $offset) {
|
|
6
|
+
pId
|
|
7
|
+
sizeId #Talla
|
|
8
|
+
colorId #Color
|
|
9
|
+
carProId #Categoria a la cual pertenece el producto
|
|
10
|
+
caId
|
|
11
|
+
cId #Country
|
|
12
|
+
dId #Department
|
|
13
|
+
ctId #Cuidad
|
|
14
|
+
fId #Características
|
|
15
|
+
pName
|
|
16
|
+
getOneTags {
|
|
17
|
+
tgId
|
|
18
|
+
idUser
|
|
19
|
+
idStore
|
|
20
|
+
pId
|
|
21
|
+
nameTag
|
|
22
|
+
}
|
|
23
|
+
ProPrice
|
|
24
|
+
ProDescuento
|
|
25
|
+
free
|
|
26
|
+
ProUniDisponibles
|
|
27
|
+
ProDescription
|
|
28
|
+
ProProtegido
|
|
29
|
+
ProAssurance
|
|
30
|
+
ValueDelivery
|
|
31
|
+
ProStar
|
|
32
|
+
sTateLogistic
|
|
33
|
+
ProImage
|
|
34
|
+
ProWidth
|
|
35
|
+
ProHeight
|
|
36
|
+
ProLength
|
|
37
|
+
ProWeight
|
|
38
|
+
ProQuantity
|
|
39
|
+
ProOutstanding
|
|
40
|
+
pDatCre
|
|
41
|
+
pDatMod
|
|
42
|
+
ProDelivery
|
|
43
|
+
ProVoltaje
|
|
44
|
+
pState
|
|
45
|
+
feat {
|
|
46
|
+
fId
|
|
47
|
+
thpId
|
|
48
|
+
hpqrQuestion
|
|
49
|
+
}
|
|
50
|
+
area {
|
|
51
|
+
aId
|
|
52
|
+
aName
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
`
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useQuery } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
import { GET_PRODUCTS_IN_STOCK } from './queries'
|
|
4
|
+
|
|
5
|
+
export const useGetProductsInStock = (storeId) => {
|
|
6
|
+
const { data, loading, error } = useQuery(GET_PRODUCTS_IN_STOCK, {
|
|
7
|
+
variables: { storeId },
|
|
8
|
+
skip: !storeId
|
|
9
|
+
})
|
|
10
|
+
|
|
11
|
+
return {
|
|
12
|
+
data: data?.getProductsInStock || [],
|
|
13
|
+
loading,
|
|
14
|
+
error
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { gql, useMutation } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* GraphQL Mutation for updating stock and manageStock
|
|
5
|
+
*/
|
|
6
|
+
const UPDATE_MANAGE_STOCK = gql`
|
|
7
|
+
mutation UpdateManageStock($input: InputManageStock) {
|
|
8
|
+
updateManageStock(input: $input) {
|
|
9
|
+
success
|
|
10
|
+
message
|
|
11
|
+
data {
|
|
12
|
+
pId
|
|
13
|
+
manageStock
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
`
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Custom hook to update stock and manageStock
|
|
21
|
+
* @returns {object} { updateManageStock, data, loading, error }
|
|
22
|
+
*/
|
|
23
|
+
export const useUpdateManageStock = () => {
|
|
24
|
+
const [updateManageStockMutation, { data, loading, error }] = useMutation(UPDATE_MANAGE_STOCK)
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Function to call the mutation with given input
|
|
28
|
+
* @param {Object} input - { pId, stock, manageStock }
|
|
29
|
+
* @returns {Promise<Object>} Mutation response
|
|
30
|
+
*/
|
|
31
|
+
const updateManageStock = async (input) => {
|
|
32
|
+
try {
|
|
33
|
+
const { data } = await updateManageStockMutation({ variables: { input } })
|
|
34
|
+
return data?.updateManageStock
|
|
35
|
+
} catch (err) {
|
|
36
|
+
return { success: false, message: err.message }
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return [updateManageStock, { data, loading, error }]
|
|
41
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
export const useKeyPress = (targetKey) => {
|
|
4
|
+
const [keyPressed, setKeyPressed] = useState(false)
|
|
5
|
+
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
const downHandler = ({ key }) => {
|
|
8
|
+
if (key === targetKey) {
|
|
9
|
+
setKeyPressed(true)
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
const upHandler = ({ key }) => {
|
|
13
|
+
if (key === targetKey) {
|
|
14
|
+
setKeyPressed(false)
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
window.addEventListener('keydown', downHandler)
|
|
19
|
+
window.addEventListener('keyup', upHandler)
|
|
20
|
+
|
|
21
|
+
return () => {
|
|
22
|
+
window.removeEventListener('keydown', downHandler)
|
|
23
|
+
window.removeEventListener('keyup', upHandler)
|
|
24
|
+
}
|
|
25
|
+
}, [targetKey])
|
|
26
|
+
|
|
27
|
+
return keyPressed
|
|
28
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
export const useLazyScript = (src, delay = null) => {
|
|
4
|
+
const [status, setStatus] = useState(src ? 'loading' : 'idle')
|
|
5
|
+
|
|
6
|
+
useEffect(() => {
|
|
7
|
+
if (!src) {
|
|
8
|
+
setStatus('idle')
|
|
9
|
+
return 'idle'
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
let script = document.querySelector(`script[src='${src}']`)
|
|
13
|
+
let timeout = null
|
|
14
|
+
|
|
15
|
+
if (!script) {
|
|
16
|
+
if (delay) {
|
|
17
|
+
timeout = setTimeout(() => {
|
|
18
|
+
injectScript()
|
|
19
|
+
// Add event listener after the script is added
|
|
20
|
+
script.addEventListener('load', setStateStatus)
|
|
21
|
+
script.addEventListener('error', setStateStatus)
|
|
22
|
+
}, delay)
|
|
23
|
+
} else {
|
|
24
|
+
injectScript()
|
|
25
|
+
}
|
|
26
|
+
} else {
|
|
27
|
+
setStatus(script.getAttribute('data-status'))
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const setStateStatus = (event) => {
|
|
31
|
+
setStatus(event.type === 'load' ? 'ready' : 'error')
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// code to inject script
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
function injectScript () {
|
|
39
|
+
script = document.createElement('script')
|
|
40
|
+
script.src = src
|
|
41
|
+
script.async = true
|
|
42
|
+
script.setAttribute('data-status', 'loading')
|
|
43
|
+
document.body.appendChild(script)
|
|
44
|
+
|
|
45
|
+
const setDataStatus = (event) => {
|
|
46
|
+
script.setAttribute(
|
|
47
|
+
'data-status',
|
|
48
|
+
event.type === 'load' ? 'ready' : 'error'
|
|
49
|
+
)
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
script.addEventListener('load', setDataStatus)
|
|
53
|
+
script.addEventListener('error', setDataStatus)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (script) {
|
|
57
|
+
// script will be be undefined available when its delayed hence check it before adding listener
|
|
58
|
+
script.addEventListener('load', setStateStatus)
|
|
59
|
+
script.addEventListener('error', setStateStatus)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
return () => {
|
|
63
|
+
if (script) {
|
|
64
|
+
script.removeEventListener('load', setStateStatus)
|
|
65
|
+
script.removeEventListener('error', setStateStatus)
|
|
66
|
+
}
|
|
67
|
+
if (timeout) {
|
|
68
|
+
clearTimeout(timeout)
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}, [src])
|
|
72
|
+
|
|
73
|
+
return status
|
|
74
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { useQuery, gql } from '@apollo/client'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* GraphQL query to get the local IP of the backend server.
|
|
5
|
+
*/
|
|
6
|
+
const GET_LOCAL_BACKEND_IP = gql`
|
|
7
|
+
query GetLocalBackendIp {
|
|
8
|
+
getLocalBackendIp
|
|
9
|
+
}
|
|
10
|
+
`
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Custom hook to fetch the local IP address of the backend server.
|
|
14
|
+
*
|
|
15
|
+
* @returns {Object} - Contains the IP string, loading state, and error.
|
|
16
|
+
*/
|
|
17
|
+
export const useLocalBackendIp = () => {
|
|
18
|
+
const {
|
|
19
|
+
data,
|
|
20
|
+
loading,
|
|
21
|
+
error
|
|
22
|
+
} = useQuery(GET_LOCAL_BACKEND_IP)
|
|
23
|
+
const port = process.env.URL_ADMIN_SERVER?.split(':')?.[2]
|
|
24
|
+
const buildUrlBackend = data?.getLocalBackendIp
|
|
25
|
+
? `http://${data.getLocalBackendIp}:${port}`
|
|
26
|
+
: null
|
|
27
|
+
|
|
28
|
+
return {
|
|
29
|
+
urlBackend: buildUrlBackend,
|
|
30
|
+
ip: data?.getLocalBackendIp || null,
|
|
31
|
+
loading,
|
|
32
|
+
error
|
|
33
|
+
}
|
|
34
|
+
}
|