@tapcart/mobile-components 0.7.28 → 0.7.30

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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare function useClickOutside(ref: React.RefObject<HTMLElement>, callback: () => void): void;
3
+ //# sourceMappingURL=use-click-outside.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-click-outside.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-click-outside.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,wBAAgB,eAAe,CAAC,GAAG,EAAE,KAAK,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,QAAQ,EAAE,MAAM,IAAI,GAAE,IAAI,CAa5F"}
@@ -0,0 +1,16 @@
1
+ "use client";
2
+ import React from 'react';
3
+ export function useClickOutside(ref, callback) {
4
+ React.useEffect(() => {
5
+ const handleClickOutside = (event) => {
6
+ if (ref.current && !ref.current.contains(event.target)) {
7
+ callback();
8
+ }
9
+ };
10
+ document.addEventListener('mousedown', handleClickOutside);
11
+ return () => {
12
+ document.removeEventListener('mousedown', handleClickOutside);
13
+ };
14
+ }, [ref, callback]);
15
+ }
16
+ ;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ declare const useClickOutside: (ref: React.RefObject<HTMLElement>, callback: () => void) => void;
3
+ export default useClickOutside;
4
+ //# sourceMappingURL=use-outside-click.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-outside-click.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-outside-click.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,QAAA,MAAM,eAAe,QAAS,MAAM,SAAS,CAAC,WAAW,CAAC,YAAY,MAAM,IAAI,SAa/E,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,16 @@
1
+ "use client";
2
+ import React from 'react';
3
+ const useClickOutside = (ref, callback) => {
4
+ React.useEffect(() => {
5
+ const handleClickOutside = (event) => {
6
+ if (ref.current && !ref.current.contains(event.target)) {
7
+ callback();
8
+ }
9
+ };
10
+ document.addEventListener('mousedown', handleClickOutside);
11
+ return () => {
12
+ document.removeEventListener('mousedown', handleClickOutside);
13
+ };
14
+ }, [ref, callback]);
15
+ };
16
+ export default useClickOutside;
@@ -1 +1 @@
1
- {"version":3,"file":"use-recommendations.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-recommendations.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;AAKtD,UAAU,sBAAsB;IAC9B,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACnC,MAAM,EAAE,MAAM,CAAA;CACf;AAED,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,OAAO,EAAE,CAAA;IACnB,WAAW,EAAE,UAAU,EAAE,CAAA;IACzB,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,SAAS,EAAE,OAAO,CAAA;IAClB,KAAK,EAAE,GAAG,CAAA;CACX;AAOD,QAAA,MAAM,kBAAkB,+BAGrB,sBAAsB,KAAG,uBAgC3B,CAAA;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
1
+ {"version":3,"file":"use-recommendations.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-recommendations.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;AAKtD,UAAU,sBAAsB;IAC9B,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACnC,MAAM,EAAE,MAAM,CAAA;CACf;AAED,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,OAAO,EAAE,CAAA;IACnB,WAAW,EAAE,UAAU,EAAE,CAAA;IACzB,QAAQ,EAAE,MAAM,EAAE,CAAA;IAClB,SAAS,EAAE,OAAO,CAAA;IAClB,KAAK,EAAE,GAAG,CAAA;CACX;AAOD,QAAA,MAAM,kBAAkB,+BAGrB,sBAAsB,KAAG,uBAkC3B,CAAA;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
@@ -6,6 +6,7 @@ const constructURL = (apiURL) => {
6
6
  return url.toString();
7
7
  };
8
8
  const useRecommendations = ({ queryVariables, apiURL }) => {
9
+ var _a;
9
10
  const searchParams = useSearchParams();
10
11
  const recommendation = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('recommendation')) || "*";
11
12
  const fetcher = (body) => fetch(constructURL(apiURL), {
@@ -20,9 +21,10 @@ const useRecommendations = ({ queryVariables, apiURL }) => {
20
21
  revalidateOnFocus: false,
21
22
  revalidateOnReconnect: false,
22
23
  });
24
+ const collections = (_a = data === null || data === void 0 ? void 0 : data.collections) === null || _a === void 0 ? void 0 : _a.filter((obj) => obj.handle !== 'empty-collection');
23
25
  return {
24
26
  products: data === null || data === void 0 ? void 0 : data.products,
25
- collections: data === null || data === void 0 ? void 0 : data.collections,
27
+ collections: recommendation === "*" ? [] : collections,
26
28
  searches: data === null || data === void 0 ? void 0 : data.searches,
27
29
  isLoading: isLoading,
28
30
  error: error
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ declare const useTap: (tapThreshold?: number) => {
3
+ onTap: (handler: (event: any) => void) => (event: any) => void;
4
+ isPressed: boolean;
5
+ ref: React.MutableRefObject<null>;
6
+ };
7
+ export { useTap };
8
+ //# sourceMappingURL=use-tap.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-tap.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-tap.ts"],"names":[],"mappings":"AACA,OAAO,KAAmD,MAAM,OAAO,CAAA;AAuFvE,QAAA,MAAM,MAAM;6BAuBkC,GAAG,KAAK,IAAI,aACvC,GAAG;;;CAerB,CAAA;AAED,OAAO,EAAE,MAAM,EAAE,CAAA"}
@@ -0,0 +1,100 @@
1
+ "use client";
2
+ import { useState, useEffect, useCallback, useRef } from "react";
3
+ // Shared manager for all instances of the hook
4
+ const tapManager = (() => {
5
+ const elements = new Map();
6
+ let isListening = false;
7
+ const startListening = () => {
8
+ if (isListening)
9
+ return;
10
+ const handleTouchStart = (e) => {
11
+ const touch = e.touches[0];
12
+ elements.forEach((data, el) => {
13
+ if (el.contains(touch.target)) {
14
+ data.touchStarted = true;
15
+ data.touchMoved = false;
16
+ data.startPosition = { x: touch.clientX, y: touch.clientY };
17
+ // Don't set isPressed here, wait to determine if it's a tap or drag
18
+ }
19
+ });
20
+ };
21
+ const handleTouchMove = (e) => {
22
+ const touch = e.touches[0];
23
+ elements.forEach((data, el) => {
24
+ if (data.touchStarted) {
25
+ const deltaX = Math.abs(touch.clientX - data.startPosition.x);
26
+ const deltaY = Math.abs(touch.clientY - data.startPosition.y);
27
+ if (deltaX > data.tapThreshold || deltaY > data.tapThreshold) {
28
+ data.touchMoved = true;
29
+ data.setIsPressed(false);
30
+ }
31
+ }
32
+ });
33
+ };
34
+ const handleTouchEnd = () => {
35
+ elements.forEach((data) => {
36
+ if (data.touchStarted) {
37
+ data.touchStarted = false;
38
+ if (!data.touchMoved) {
39
+ // It's a tap, set isPressed briefly
40
+ data.setIsPressed(true);
41
+ setTimeout(() => data.setIsPressed(false), 100);
42
+ }
43
+ }
44
+ });
45
+ };
46
+ document.addEventListener("touchstart", (e) => handleTouchStart(e), { passive: true });
47
+ document.addEventListener("touchmove", (e) => handleTouchMove(e), { passive: true });
48
+ document.addEventListener("touchend", () => handleTouchEnd(), {
49
+ passive: true,
50
+ });
51
+ isListening = true;
52
+ };
53
+ return {
54
+ register: (el, data) => {
55
+ elements.set(el, data);
56
+ startListening();
57
+ },
58
+ unregister: (el) => {
59
+ elements.delete(el);
60
+ },
61
+ elements,
62
+ };
63
+ })();
64
+ const useTap = (tapThreshold = 10) => {
65
+ const [isPressed, setIsPressed] = useState(false);
66
+ const elementRef = useRef(null);
67
+ useEffect(() => {
68
+ const element = elementRef.current;
69
+ if (!element)
70
+ return;
71
+ const data = {
72
+ touchStarted: false,
73
+ touchMoved: false,
74
+ startPosition: { x: 0, y: 0 },
75
+ setIsPressed,
76
+ tapThreshold,
77
+ };
78
+ tapManager.register(element, data);
79
+ return () => {
80
+ tapManager.unregister(element);
81
+ };
82
+ }, [tapThreshold]);
83
+ const onTap = useCallback((handler) => {
84
+ return (event) => {
85
+ const data = tapManager.elements.get(elementRef.current);
86
+ if (!data)
87
+ return;
88
+ if (event.type === "touchend" && !data.touchMoved) {
89
+ handler(event);
90
+ }
91
+ else if (event.type === "click" && !data.touchStarted) {
92
+ handler(event);
93
+ setIsPressed(true);
94
+ setTimeout(() => setIsPressed(false), 100);
95
+ }
96
+ };
97
+ }, []);
98
+ return { onTap, isPressed, ref: elementRef };
99
+ };
100
+ export { useTap };
@@ -7,7 +7,7 @@ function Price({ price, priceHigh, priceRanges = false, isSale = false, compareA
7
7
  const ProductPrice = () => {
8
8
  const priceStyles = (!isSale || !compareAtPrice) ? standardStyles : saleStyles;
9
9
  const colorClass = isSale ? 'text-textColors-salePriceText' : 'text-textColors-priceText';
10
- return (_jsx(Text, Object.assign({ className: `${colorClass} flex-shrink-0`, style: { fontSize: `${fontSize}px` } }, { children: _jsxs("span", Object.assign({ className: "flex-grow min-w-[fit-content]" }, { children: [_jsx(Money, { price: price, currency: currency, locale: locale, styles: priceStyles, hideZeroCents: hideZeroCents }), priceRanges && priceHigh !== undefined && _jsx(Spacer, {}), priceRanges && priceHigh !== undefined && (_jsx(Money, { price: priceHigh, currency: currency, locale: locale, styles: priceStyles, hideZeroCents: hideZeroCents }))] })) })));
10
+ return (_jsx(Text, Object.assign({ className: `${colorClass} flex-shrink-0 max-w-full`, style: { fontSize: `${fontSize}px` } }, { children: _jsxs("span", Object.assign({ className: "flex-grow min-w-[fit-content] break-all" }, { children: [_jsx(Money, { price: price, currency: currency, locale: locale, styles: priceStyles, hideZeroCents: hideZeroCents }), priceRanges && priceHigh !== undefined && _jsx(Spacer, {}), priceRanges && priceHigh !== undefined && (_jsx(Money, { price: priceHigh, currency: currency, locale: locale, styles: priceStyles, hideZeroCents: hideZeroCents }))] })) })));
11
11
  };
12
12
  const StrikeThroughPrice = () => {
13
13
  if (!isSale || !compareAtPrice)
package/dist/styles.css CHANGED
@@ -828,6 +828,9 @@ video {
828
828
  .mb-3 {
829
829
  margin-bottom: 0.75rem;
830
830
  }
831
+ .mb-4 {
832
+ margin-bottom: 1rem;
833
+ }
831
834
  .mb-6 {
832
835
  margin-bottom: 1.5rem;
833
836
  }
@@ -1369,6 +1372,9 @@ video {
1369
1372
  .break-words {
1370
1373
  overflow-wrap: break-word;
1371
1374
  }
1375
+ .break-all {
1376
+ word-break: break-all;
1377
+ }
1372
1378
  .rounded {
1373
1379
  border-radius: 0.25rem;
1374
1380
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapcart/mobile-components",
3
- "version": "0.7.28",
3
+ "version": "0.7.30",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "style": "dist/styles.css",
@@ -11,18 +11,6 @@
11
11
  "license": "SEE LICENSE IN LICENSE.md",
12
12
  "author": "Tapcart Inc.",
13
13
  "homepage": "https://tapcart.com",
14
- "scripts": {
15
- "lint": "eslint \"**/*.ts*\"",
16
- "ui:add": "pnpm dlx shadcn-ui@latest add",
17
- "build:styles": "postcss styles/globals.css -o dist/styles.css",
18
- "build:ts": "tsc -p tsconfig.json && tsc-alias",
19
- "build": "pnpm run build:ts && pnpm run build:styles",
20
- "dev:ts": "tsc -w -p tsconfig.json",
21
- "dev:styles": "npx tailwindcss -i styles/globals.css -o dist/styles.css --watch",
22
- "dev": "concurrently \"pnpm run dev:ts\" \"pnpm run dev:styles\"",
23
- "test": "jest",
24
- "test:watch": "jest --watch"
25
- },
26
14
  "peerDependencies": {
27
15
  "react": "^17.0.2 || ^18.0.0",
28
16
  "react-dom": "^17.0.2 || ^18.0.0"
@@ -32,21 +20,21 @@
32
20
  "@types/lodash": "4.17.5",
33
21
  "@types/react": "^18.2.0",
34
22
  "@types/react-dom": "^18.2.0",
35
- "app-studio-types": "workspace:*",
36
23
  "autoprefixer": "^10.4.14",
37
24
  "chokidar-cli": "^3.0.0",
38
25
  "concurrently": "^8.2.2",
39
26
  "eslint": "^7.32.0",
40
- "eslint-config-custom": "workspace:*",
41
27
  "jest": "^29.7.0",
42
28
  "jest-environment-jsdom": "^29.7.0",
43
29
  "postcss": "^8.4.24",
44
30
  "tailwindcss": "^3.3.2",
45
31
  "ts-jest": "^29.2.5",
46
32
  "tsc-alias": "^1.8.10",
47
- "tsconfig": "workspace:*",
48
33
  "typescript": "^4.5.2",
49
- "@testing-library/react-hooks": "^8.0.1"
34
+ "@testing-library/react-hooks": "^8.0.1",
35
+ "app-studio-types": "0.0.5",
36
+ "eslint-config-custom": "0.0.0",
37
+ "tsconfig": "0.0.0"
50
38
  },
51
39
  "dependencies": {
52
40
  "@radix-ui/react-accordion": "^1.1.2",
@@ -83,5 +71,17 @@
83
71
  "tailwind-merge": "^1.13.2",
84
72
  "tailwindcss-animate": "^1.0.6",
85
73
  "vaul": "0.9.1"
74
+ },
75
+ "scripts": {
76
+ "lint": "eslint \"**/*.ts*\"",
77
+ "ui:add": "pnpm dlx shadcn-ui@latest add",
78
+ "build:styles": "postcss styles/globals.css -o dist/styles.css",
79
+ "build:ts": "tsc -p tsconfig.json && tsc-alias",
80
+ "build": "pnpm run build:ts && pnpm run build:styles",
81
+ "dev:ts": "tsc -w -p tsconfig.json",
82
+ "dev:styles": "npx tailwindcss -i styles/globals.css -o dist/styles.css --watch",
83
+ "dev": "concurrently \"pnpm run dev:ts\" \"pnpm run dev:styles\"",
84
+ "test": "jest",
85
+ "test:watch": "jest --watch"
86
86
  }
87
- }
87
+ }
@@ -1,10 +0,0 @@
1
- /**
2
- * Custom hook to debug dependency changes.
3
- *
4
- * Usage:
5
- * useDebugDependencies([dependencyA, dependencyB]);
6
- *
7
- * @param {Array} deps - Array of dependencies to monitor for changes.
8
- */
9
- export declare const useDebugDependencies: (deps: any[]) => void;
10
- //# sourceMappingURL=use-debug-dependencies.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-debug-dependencies.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-debug-dependencies.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,eAAO,MAAM,oBAAoB,SAAU,GAAG,EAAE,SAU/C,CAAA"}
@@ -1,17 +0,0 @@
1
- import { useRef, useEffect } from "react";
2
- /**
3
- * Custom hook to debug dependency changes.
4
- *
5
- * Usage:
6
- * useDebugDependencies([dependencyA, dependencyB]);
7
- *
8
- * @param {Array} deps - Array of dependencies to monitor for changes.
9
- */
10
- export const useDebugDependencies = (deps) => {
11
- const prevDeps = useRef(deps);
12
- useEffect(() => {
13
- const changedDeps = deps.map((dep, i) => dep !== prevDeps.current[i] ? dep : null);
14
- console.log("Changed dependencies:", changedDeps);
15
- prevDeps.current = deps;
16
- }, [deps]);
17
- };
@@ -1,13 +0,0 @@
1
- import { PhoenixLayout } from "lib/tapcart/types";
2
- type UseLayoutProps = {
3
- appId: string;
4
- layoutId: string;
5
- };
6
- type UseLayoutReturn = {
7
- layout: PhoenixLayout | null;
8
- error: any;
9
- isLoading: boolean;
10
- };
11
- export declare function useLayout({ appId, layoutId, }: UseLayoutProps): UseLayoutReturn;
12
- export {};
13
- //# sourceMappingURL=use-layout.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-layout.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-layout.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAGjD,KAAK,cAAc,GAAG;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,MAAM,EAAE,aAAa,GAAG,IAAI,CAAA;IAC5B,KAAK,EAAE,GAAG,CAAA;IACV,SAAS,EAAE,OAAO,CAAA;CACnB,CAAA;AAED,wBAAgB,SAAS,CAAC,EACxB,KAAK,EACL,QAAQ,GACT,EAAE,cAAc,GAAG,eAAe,CAYlC"}
@@ -1,23 +0,0 @@
1
- "use client";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- import useSWR from "swr";
12
- import { fetchLayoutById } from "apps/tapcart-ssr-app/lib/tapcart/index";
13
- export function useLayout({ appId, layoutId, }) {
14
- const fetcher = (appId, layoutId) => __awaiter(this, void 0, void 0, function* () {
15
- return fetchLayoutById(appId, layoutId);
16
- });
17
- const { data, error } = useSWR([appId, layoutId], fetcher);
18
- return {
19
- layout: data || null,
20
- error,
21
- isLoading: !data && !error,
22
- };
23
- }