@rebuy/rebuy-hydrogen 3.0.0-beta.2 → 3.0.0-beta.3

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.
Files changed (54) hide show
  1. package/package.json +64 -35
  2. package/src/components/AddToCartBtn/AddToCartBtn.tsx +0 -45
  3. package/src/components/AddToCartBtn/HydrogenAddToCartBtn.tsx +0 -43
  4. package/src/components/AddToCartBtn/HydrogenReactAddToCartBtn.tsx +0 -35
  5. package/src/components/AddToCartBtn/index.ts +0 -1
  6. package/src/components/AddToCartBtn/types.ts +0 -27
  7. package/src/components/ProductCard/ProductCard.tsx +0 -70
  8. package/src/components/ProductCard/index.ts +0 -1
  9. package/src/components/ProductCard/types.ts +0 -10
  10. package/src/components/ProductPrice/ProductPrice.tsx +0 -49
  11. package/src/components/ProductPrice/index.ts +0 -1
  12. package/src/components/Title/Title.tsx +0 -19
  13. package/src/components/Title/index.ts +0 -1
  14. package/src/components/Title/types.ts +0 -7
  15. package/src/components/VariantSelect/VariantSelect.tsx +0 -45
  16. package/src/components/VariantSelect/index.ts +0 -1
  17. package/src/components/VariantSelect/types.ts +0 -6
  18. package/src/context/RebuyContext.tsx +0 -9
  19. package/src/hooks/titleLevel.tsx +0 -42
  20. package/src/index.ts +0 -7
  21. package/src/providers/RebuyHydrogenContextProvider.tsx +0 -112
  22. package/src/providers/RebuyHydrogenReactContextProvider.tsx +0 -192
  23. package/src/providers/types.ts +0 -58
  24. package/src/queries/cart.queries.ts +0 -467
  25. package/src/types/common.ts +0 -8
  26. package/src/types/css.d.ts +0 -11
  27. package/src/types/env.d.ts +0 -12
  28. package/src/types/rebuy.d.ts +0 -31
  29. package/src/types/rebuyCustom.ts +0 -263
  30. package/src/types/rebuySmartCart.ts +0 -188
  31. package/src/types/shopify.ts +0 -142
  32. package/src/types/widgets.ts +0 -29
  33. package/src/utils/convertToRebuyProduct.tsx +0 -319
  34. package/src/utils/createContextParameters.ts +0 -142
  35. package/src/utils/getEncodedAttributes.ts +0 -11
  36. package/src/utils/getRebuyConfig.ts +0 -31
  37. package/src/widgetContainer/RebuyWidgetContainer.tsx +0 -183
  38. package/src/widgets/RebuyCompleteTheLook/RebuyCompleteTheLook.tsx +0 -50
  39. package/src/widgets/RebuyCompleteTheLook/index.ts +0 -1
  40. package/src/widgets/RebuyCompleteTheLook/types.ts +0 -5
  41. package/src/widgets/RebuyDynamicBundleProducts/BundleImages.tsx +0 -62
  42. package/src/widgets/RebuyDynamicBundleProducts/BundlePrice.tsx +0 -93
  43. package/src/widgets/RebuyDynamicBundleProducts/BundleSelection.tsx +0 -65
  44. package/src/widgets/RebuyDynamicBundleProducts/RebuyDynamicBundleProducts.tsx +0 -118
  45. package/src/widgets/RebuyDynamicBundleProducts/Select.tsx +0 -41
  46. package/src/widgets/RebuyDynamicBundleProducts/index.ts +0 -1
  47. package/src/widgets/RebuyDynamicBundleProducts/types.ts +0 -23
  48. package/src/widgets/RebuyProductAddOns/RebuyProductAddOnCard.tsx +0 -66
  49. package/src/widgets/RebuyProductAddOns/RebuyProductAddOns.tsx +0 -218
  50. package/src/widgets/RebuyProductAddOns/index.ts +0 -1
  51. package/src/widgets/RebuyProductAddOns/types.ts +0 -24
  52. package/src/widgets/RebuyProductRecommendations/RebuyProductRecommendations.tsx +0 -50
  53. package/src/widgets/RebuyProductRecommendations/index.ts +0 -1
  54. package/src/widgets/RebuyProductRecommendations/types.ts +0 -5
@@ -1,467 +0,0 @@
1
- export const OPTION_FRAGMENT = `#graphql
2
- fragment OptionFragment on ProductOption {
3
- id
4
- name
5
- optionValues {
6
- id
7
- name
8
- swatch {
9
- color
10
- image {
11
- mediaContentType
12
- previewImage {
13
- height
14
- id
15
- url
16
- width
17
- altText
18
- }
19
- id
20
- alt
21
- }
22
- }
23
- }
24
- }
25
- `;
26
- /*
27
- * STOREFRONT API QUERIES -----------------------------------------------------
28
- */
29
-
30
- // Docs: https://shopify.dev/docs/api/storefront/latest/objects/Cart
31
-
32
- export const CART_LINE_FRAGMENT = `#graphql
33
- fragment CartLineFragment on CartLine {
34
- id
35
- quantity
36
- cost {
37
- amountPerQuantity {
38
- amount
39
- currencyCode
40
- }
41
- compareAtAmountPerQuantity {
42
- amount
43
- currencyCode
44
- }
45
- totalAmount {
46
- amount
47
- currencyCode
48
- }
49
- subtotalAmount {
50
- amount
51
- currencyCode
52
- }
53
- }
54
- attributes {
55
- key
56
- value
57
- }
58
- discountAllocations {
59
- discountedAmount {
60
- amount
61
- currencyCode
62
- }
63
- ... on CartAutomaticDiscountAllocation {
64
- __typename
65
- discountedAmount {
66
- amount
67
- currencyCode
68
- }
69
- title
70
- }
71
- ... on CartCodeDiscountAllocation {
72
- __typename
73
- code
74
- discountedAmount {
75
- amount
76
- currencyCode
77
- }
78
- }
79
- ... on CartCustomDiscountAllocation {
80
- __typename
81
- discountedAmount {
82
- amount
83
- currencyCode
84
- }
85
- title
86
- }
87
- }
88
- merchandise {
89
- ... on ProductVariant {
90
- availableForSale
91
- id
92
- sku
93
- title
94
- compareAtPrice {
95
- amount
96
- currencyCode
97
- }
98
- image {
99
- altText
100
- height
101
- id
102
- url
103
- width
104
- }
105
- price {
106
- amount
107
- currencyCode
108
- }
109
- product {
110
- handle
111
- id
112
- productType
113
- tags
114
- title
115
- vendor
116
- collections(first: 10) {
117
- nodes {
118
- handle
119
- }
120
- }
121
- options {
122
- ...OptionFragment
123
- }
124
- images(first: 20) {
125
- nodes {
126
- altText
127
- height
128
- id
129
- url
130
- width
131
- }
132
- }
133
- }
134
- selectedOptions {
135
- name
136
- value
137
- }
138
- }
139
- }
140
- }
141
- ` as const;
142
-
143
- export const CART_LINE_COMPONENT_FRAGMENT = `#graphql
144
- fragment CartLineComponentFragment on ComponentizableCartLine {
145
- id
146
- quantity
147
- cost {
148
- amountPerQuantity {
149
- amount
150
- currencyCode
151
- }
152
- compareAtAmountPerQuantity {
153
- amount
154
- currencyCode
155
- }
156
- totalAmount {
157
- amount
158
- currencyCode
159
- }
160
- subtotalAmount {
161
- amount
162
- currencyCode
163
- }
164
- }
165
- attributes {
166
- key
167
- value
168
- }
169
- discountAllocations {
170
- discountedAmount {
171
- amount
172
- currencyCode
173
- }
174
- ... on CartAutomaticDiscountAllocation {
175
- __typename
176
- discountedAmount {
177
- amount
178
- currencyCode
179
- }
180
- title
181
- }
182
- ... on CartCodeDiscountAllocation {
183
- __typename
184
- code
185
- discountedAmount {
186
- amount
187
- currencyCode
188
- }
189
- }
190
- ... on CartCustomDiscountAllocation {
191
- __typename
192
- discountedAmount {
193
- amount
194
- currencyCode
195
- }
196
- title
197
- }
198
- }
199
- merchandise {
200
- ... on ProductVariant {
201
- availableForSale
202
- id
203
- sku
204
- title
205
- compareAtPrice {
206
- amount
207
- currencyCode
208
- }
209
- image {
210
- altText
211
- height
212
- id
213
- url
214
- width
215
- }
216
- price {
217
- amount
218
- currencyCode
219
- }
220
- product {
221
- handle
222
- id
223
- productType
224
- tags
225
- title
226
- vendor
227
- collections(first: 10) {
228
- nodes {
229
- handle
230
- }
231
- }
232
- options {
233
- id
234
- name
235
- optionValues {
236
- id
237
- name
238
- swatch {
239
- color
240
- image {
241
- mediaContentType
242
- previewImage {
243
- height
244
- id
245
- url
246
- width
247
- altText
248
- }
249
- id
250
- alt
251
- }
252
- }
253
- }
254
- }
255
- images(first: 20) {
256
- nodes {
257
- altText
258
- height
259
- id
260
- url
261
- width
262
- }
263
- }
264
- }
265
- selectedOptions {
266
- name
267
- value
268
- }
269
- }
270
- }
271
- lineComponents {
272
- id
273
- quantity
274
- cost {
275
- amountPerQuantity {
276
- amount
277
- currencyCode
278
- }
279
- compareAtAmountPerQuantity {
280
- amount
281
- currencyCode
282
- }
283
- totalAmount {
284
- amount
285
- currencyCode
286
- }
287
- subtotalAmount {
288
- amount
289
- currencyCode
290
- }
291
- }
292
- attributes {
293
- key
294
- value
295
- }
296
- discountAllocations {
297
- discountedAmount {
298
- amount
299
- currencyCode
300
- }
301
- ... on CartAutomaticDiscountAllocation {
302
- __typename
303
- discountedAmount {
304
- amount
305
- currencyCode
306
- }
307
- title
308
- }
309
- ... on CartCodeDiscountAllocation {
310
- __typename
311
- code
312
- discountedAmount {
313
- amount
314
- currencyCode
315
- }
316
- }
317
- ... on CartCustomDiscountAllocation {
318
- __typename
319
- discountedAmount {
320
- amount
321
- currencyCode
322
- }
323
- title
324
- }
325
- }
326
- merchandise {
327
- ... on ProductVariant {
328
- availableForSale
329
- id
330
- sku
331
- title
332
- compareAtPrice {
333
- amount
334
- currencyCode
335
- }
336
- image {
337
- altText
338
- height
339
- id
340
- url
341
- width
342
- }
343
- price {
344
- amount
345
- currencyCode
346
- }
347
- product {
348
- handle
349
- id
350
- productType
351
- tags
352
- title
353
- vendor
354
- collections(first: 10) {
355
- nodes {
356
- handle
357
- }
358
- }
359
- options {
360
- ...OptionFragment
361
- }
362
- images(first: 20) {
363
- nodes {
364
- altText
365
- height
366
- id
367
- url
368
- width
369
- }
370
- }
371
- }
372
- selectedOptions {
373
- name
374
- value
375
- }
376
- }
377
- }
378
- }
379
- }
380
- ` as const;
381
-
382
- export const CART_FRAGMENT = `#graphql
383
- fragment CartFragment on Cart {
384
- id
385
- checkoutUrl
386
- createdAt
387
- totalQuantity
388
- note
389
- updatedAt
390
- __typename
391
- buyerIdentity {
392
- countryCode
393
- customer {
394
- id
395
- email
396
- firstName
397
- lastName
398
- displayName
399
- }
400
- email
401
- phone
402
- }
403
- attributes {
404
- key
405
- value
406
- }
407
- cost {
408
- subtotalAmount {
409
- amount
410
- currencyCode
411
- }
412
- totalAmount {
413
- amount
414
- currencyCode
415
- }
416
- }
417
- discountAllocations {
418
- discountedAmount {
419
- amount
420
- currencyCode
421
- }
422
- ... on CartAutomaticDiscountAllocation {
423
- __typename
424
- discountedAmount {
425
- amount
426
- currencyCode
427
- }
428
- title
429
- }
430
- ... on CartCodeDiscountAllocation {
431
- __typename
432
- code
433
- discountedAmount {
434
- amount
435
- currencyCode
436
- }
437
- }
438
- ... on CartCustomDiscountAllocation {
439
- __typename
440
- discountedAmount {
441
- amount
442
- currencyCode
443
- }
444
- title
445
- }
446
- }
447
- discountCodes {
448
- applicable
449
- code
450
- }
451
- lines(first: $numCartLines) {
452
- edges {
453
- node {
454
- ...CartLineComponentFragment
455
- }
456
- }
457
- edges {
458
- node {
459
- ...CartLineFragment
460
- }
461
- }
462
- }
463
- }
464
- ${CART_LINE_FRAGMENT}
465
- ${CART_LINE_COMPONENT_FRAGMENT}
466
- ${OPTION_FRAGMENT}
467
- ` as const;
@@ -1,8 +0,0 @@
1
- export enum ProductCardTitleLevel {
2
- H1 = 'h1',
3
- H2 = 'h2',
4
- H3 = 'h3',
5
- H4 = 'h4',
6
- H5 = 'h5',
7
- H6 = 'h6',
8
- }
@@ -1,11 +0,0 @@
1
- declare module '*.module.css' {
2
- const classes: {
3
- readonly [key: string]: string;
4
- };
5
- export default classes;
6
- }
7
-
8
- declare module '*.css' {
9
- const css: string;
10
- export default css;
11
- }
@@ -1,12 +0,0 @@
1
- type ImportMetaEnv = {
2
- PRIMARY_DOMAIN: string;
3
- PUBLIC_REBUY_API_KEY: string;
4
- PUBLIC_STOREFRONT_API_TOKEN: string;
5
- PUBLIC_STOREFRONT_ID: string;
6
- PUBLIC_STORE_DOMAIN: string;
7
- };
8
-
9
- // using interface to extend ImportMeta as it is an interface coming from node_modules/typescript/lib/lib.es5.d.ts
10
- interface ImportMeta {
11
- readonly env: ImportMetaEnv;
12
- }
@@ -1,31 +0,0 @@
1
- // Basic types for Rebuy until @rebuy/rebuy is updated to include types
2
-
3
- declare module '@rebuy/rebuy' {
4
- export class RebuyClient {
5
- constructor(
6
- key: string,
7
- defaultParameters?: Record<string, unknown>,
8
- shop?: string
9
- );
10
- getShieldedAsset(
11
- url: string,
12
- parameters: object,
13
- options?: object
14
- ): Promise<{ data: object; response: object }>;
15
- setContextParameters(contextParameters: Record<string, unknown>): void;
16
- setDefaultParameters(defaultParameters: Record<string, unknown>): void;
17
- getStorefrontData(
18
- endpoint: string,
19
- parameters: object,
20
- options?: object
21
- ): Promise<{ data: unknown[]; metadata: object }>;
22
- }
23
- }
24
- declare module '@rebuy/rebuy/utilities' {
25
- export function queryStringToObject(search: string): Record<string, string>;
26
- export function utmObjectFromString(
27
- url: URL
28
- ): Record<string, string> | null;
29
- export function getIdFromGraphUrl(url: string, type: string): string;
30
- export function amountToCents(amount: number): number;
31
- }