@infrab4a/connect-angular 4.5.2 → 4.5.3-beta.1

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 (108) hide show
  1. package/angular-connect.module.d.ts +26 -27
  2. package/angular-elastic-search.module.d.ts +9 -9
  3. package/angular-firebase-auth.module.d.ts +11 -11
  4. package/angular-firestore.module.d.ts +18 -17
  5. package/angular-hasura-graphql.module.d.ts +16 -16
  6. package/consts/backend-url.const.d.ts +1 -1
  7. package/consts/category-structure.d.ts +1 -1
  8. package/consts/default-shop.const.d.ts +1 -1
  9. package/consts/es-config.const.d.ts +1 -1
  10. package/consts/firebase-const.d.ts +3 -3
  11. package/consts/hasura-options.const.d.ts +1 -1
  12. package/consts/index.d.ts +7 -7
  13. package/consts/persistence.const.d.ts +1 -1
  14. package/consts/storage-base-url.const.d.ts +1 -1
  15. package/esm2020/angular-connect.module.mjs +115 -133
  16. package/esm2020/angular-elastic-search.module.mjs +34 -34
  17. package/esm2020/angular-firebase-auth.module.mjs +115 -115
  18. package/esm2020/angular-firestore.module.mjs +504 -485
  19. package/esm2020/angular-hasura-graphql.module.mjs +287 -287
  20. package/esm2020/consts/backend-url.const.mjs +1 -1
  21. package/esm2020/consts/category-structure.mjs +2 -2
  22. package/esm2020/consts/default-shop.const.mjs +2 -2
  23. package/esm2020/consts/es-config.const.mjs +2 -2
  24. package/esm2020/consts/firebase-const.mjs +4 -4
  25. package/esm2020/consts/hasura-options.const.mjs +2 -2
  26. package/esm2020/consts/index.mjs +8 -8
  27. package/esm2020/consts/persistence.const.mjs +2 -2
  28. package/esm2020/consts/storage-base-url.const.mjs +2 -2
  29. package/esm2020/helpers/index.mjs +2 -2
  30. package/esm2020/helpers/mobile-operation-system-checker.helper.mjs +7 -7
  31. package/esm2020/index.mjs +7 -7
  32. package/esm2020/infrab4a-connect-angular.mjs +4 -4
  33. package/esm2020/persistence/cookie-data-persistence.mjs +22 -22
  34. package/esm2020/persistence/data-persistence.mjs +2 -2
  35. package/esm2020/persistence/index.mjs +3 -3
  36. package/esm2020/services/auth.service.mjs +37 -37
  37. package/esm2020/services/cart.service.mjs +282 -282
  38. package/esm2020/services/catalog/adapters/category-structure.adapter.mjs +2 -2
  39. package/esm2020/services/catalog/adapters/index.mjs +4 -4
  40. package/esm2020/services/catalog/adapters/new-category-structure.adapter.mjs +43 -43
  41. package/esm2020/services/catalog/adapters/old-category-structure.adapter.mjs +23 -23
  42. package/esm2020/services/catalog/catalog.service.mjs +245 -201
  43. package/esm2020/services/catalog/category.service.mjs +51 -51
  44. package/esm2020/services/catalog/enums/index.mjs +2 -2
  45. package/esm2020/services/catalog/enums/product-sorts.enum.mjs +11 -11
  46. package/esm2020/services/catalog/index.mjs +8 -8
  47. package/esm2020/services/catalog/models/category-with-tree.model.mjs +10 -10
  48. package/esm2020/services/catalog/models/index.mjs +2 -2
  49. package/esm2020/services/catalog/types/index.mjs +2 -2
  50. package/esm2020/services/catalog/types/product-sort.type.mjs +2 -2
  51. package/esm2020/services/catalog/wishlist.service.mjs +119 -119
  52. package/esm2020/services/checkout-subscription.service.mjs +50 -50
  53. package/esm2020/services/checkout.service.mjs +68 -68
  54. package/esm2020/services/coupon.service.mjs +260 -260
  55. package/esm2020/services/helpers/index.mjs +2 -2
  56. package/esm2020/services/helpers/util.helper.mjs +18 -18
  57. package/esm2020/services/home-shop.service.mjs +125 -125
  58. package/esm2020/services/index.mjs +11 -11
  59. package/esm2020/services/order.service.mjs +30 -30
  60. package/esm2020/services/shipping.service.mjs +96 -96
  61. package/esm2020/services/types/index.mjs +3 -3
  62. package/esm2020/services/types/required-checkout-data.type.mjs +2 -2
  63. package/esm2020/services/types/required-checkout-subscription-data.type.mjs +2 -2
  64. package/esm2020/services/types/shipping-methods.type.mjs +2 -2
  65. package/esm2020/types/firebase-app-config.type.mjs +2 -2
  66. package/esm2020/types/index.mjs +2 -2
  67. package/fesm2015/infrab4a-connect-angular.mjs +2434 -2391
  68. package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
  69. package/fesm2020/infrab4a-connect-angular.mjs +2374 -2330
  70. package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
  71. package/helpers/index.d.ts +1 -1
  72. package/helpers/mobile-operation-system-checker.helper.d.ts +3 -3
  73. package/index.d.ts +6 -6
  74. package/package.json +2 -2
  75. package/persistence/cookie-data-persistence.d.ts +10 -10
  76. package/persistence/data-persistence.d.ts +6 -6
  77. package/persistence/index.d.ts +2 -2
  78. package/services/auth.service.d.ts +18 -18
  79. package/services/cart.service.d.ts +42 -42
  80. package/services/catalog/adapters/category-structure.adapter.d.ts +4 -4
  81. package/services/catalog/adapters/index.d.ts +3 -3
  82. package/services/catalog/adapters/new-category-structure.adapter.d.ts +12 -12
  83. package/services/catalog/adapters/old-category-structure.adapter.d.ts +10 -10
  84. package/services/catalog/catalog.service.d.ts +89 -88
  85. package/services/catalog/category.service.d.ts +20 -20
  86. package/services/catalog/enums/index.d.ts +1 -1
  87. package/services/catalog/enums/product-sorts.enum.d.ts +9 -9
  88. package/services/catalog/index.d.ts +7 -7
  89. package/services/catalog/models/category-with-tree.model.d.ts +4 -4
  90. package/services/catalog/models/index.d.ts +1 -1
  91. package/services/catalog/types/index.d.ts +1 -1
  92. package/services/catalog/types/product-sort.type.d.ts +2 -2
  93. package/services/catalog/wishlist.service.d.ts +40 -40
  94. package/services/checkout-subscription.service.d.ts +19 -19
  95. package/services/checkout.service.d.ts +27 -27
  96. package/services/coupon.service.d.ts +33 -33
  97. package/services/helpers/index.d.ts +1 -1
  98. package/services/helpers/util.helper.d.ts +3 -3
  99. package/services/home-shop.service.d.ts +26 -26
  100. package/services/index.d.ts +10 -10
  101. package/services/order.service.d.ts +13 -13
  102. package/services/shipping.service.d.ts +19 -19
  103. package/services/types/index.d.ts +2 -2
  104. package/services/types/required-checkout-data.type.d.ts +2 -2
  105. package/services/types/required-checkout-subscription-data.type.d.ts +2 -2
  106. package/services/types/shipping-methods.type.d.ts +12 -12
  107. package/types/firebase-app-config.type.d.ts +1 -1
  108. package/types/index.d.ts +1 -1
@@ -2,15 +2,15 @@ import * as i0 from '@angular/core';
2
2
  import { NgModule, InjectionToken, PLATFORM_ID, Injectable, Inject } from '@angular/core';
3
3
  import * as i1$4 from '@angular/fire/app';
4
4
  import { FirebaseApp, provideFirebaseApp, getApp, initializeApp } from '@angular/fire/app';
5
- import * as i2 from '@angular/fire/storage';
6
- import { Storage, provideStorage, getStorage } from '@angular/fire/storage';
7
5
  import * as i1$2 from '@infrab4a/connect';
8
- import { ProductsIndex, AxiosAdapter, Authentication, AuthenticationFirebaseAuthService, Register, RegisterFirebaseAuthService, SignOut, RecoveryPassword, ConnectFirestoreService, UserBeautyProfileFirestoreRepository, Buy2WinFirestoreRepository, CategoryFirestoreRepository, CheckoutFirestoreRepository, CheckoutSubscriptionFirestoreRepository, CouponFirestoreRepository, CampaignHashtagFirestoreRepository, CampaignDashboardFirestoreRepository, SubscriptionEditionFirestoreRepository, HomeFirestoreRepository, LeadFirestoreRepository, LegacyOrderFirestoreRepository, ShopMenuFirestoreRepository, OrderFirestoreRepository, PaymentFirestoreRepository, ProductFirestoreRepository, ShopSettingsFirestoreRepository, SubscriptionPaymentFirestoreRepository, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, SubscriptionFirestoreRepository, UserFirestoreRepository, UserAddressFirestoreRepository, UserPaymentMethodFirestoreRepository, SubscriptionMaterializationFirestoreRepository, SubscriptionSummaryFirestoreRepository, ProductVariantFirestoreRepository, CategoryHasuraGraphQLRepository, ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository, ProductReviewsHasuraGraphQLRepository, VariantHasuraGraphQLRepository, ProductStockNotificationHasuraGraphQLRepository, FilterOptionHasuraGraphQLRepository, FilterHasuraGraphQLRepository, CategoryCollectionChildrenHasuraGraphQLRepository, WishlistHasuraGraphQLRepository, Where, Shops, CheckoutTypes, CouponTypes, Exclusivities, isNil, NotFoundError, Checkout, pick, LineItem, RoundProductPricesHelper, set, InvalidArgumentError, Category, Wishlist, CheckoutSubscription, Product, RequiredArgumentError, add, Order, UpdateUserImage, FirebaseFileUploaderService } from '@infrab4a/connect';
6
+ import { ProductsIndex, AxiosAdapter, Authentication, AuthenticationFirebaseAuthService, Register, RegisterFirebaseAuthService, SignOut, RecoveryPassword, ConnectFirestoreService, UserBeautyProfileFirestoreRepository, Buy2WinFirestoreRepository, CategoryFirestoreRepository, CheckoutFirestoreRepository, CheckoutSubscriptionFirestoreRepository, CouponFirestoreRepository, CampaignHashtagFirestoreRepository, CampaignDashboardFirestoreRepository, SubscriptionEditionFirestoreRepository, HomeFirestoreRepository, LeadFirestoreRepository, LegacyOrderFirestoreRepository, ShopMenuFirestoreRepository, OrderFirestoreRepository, PaymentFirestoreRepository, ProductFirestoreRepository, ShopSettingsFirestoreRepository, SubscriptionPaymentFirestoreRepository, SubscriptionPlanFirestoreRepository, SubscriptionProductFirestoreRepository, SubscriptionFirestoreRepository, UserFirestoreRepository, UserAddressFirestoreRepository, UserPaymentMethodFirestoreRepository, SubscriptionMaterializationFirestoreRepository, SubscriptionSummaryFirestoreRepository, ProductVariantFirestoreRepository, FirebaseFileUploaderService, CategoryHasuraGraphQLRepository, ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository, ProductReviewsHasuraGraphQLRepository, VariantHasuraGraphQLRepository, ProductStockNotificationHasuraGraphQLRepository, FilterOptionHasuraGraphQLRepository, FilterHasuraGraphQLRepository, CategoryCollectionChildrenHasuraGraphQLRepository, WishlistHasuraGraphQLRepository, Where, Shops, CheckoutTypes, CouponTypes, Exclusivities, isNil, NotFoundError, Checkout, pick, LineItem, RoundProductPricesHelper, set, InvalidArgumentError, Category, Wishlist, CheckoutSubscription, Product, RequiredArgumentError, add, Order, UpdateUserImage } from '@infrab4a/connect';
9
7
  import * as i1 from '@angular/fire/auth';
10
8
  import { Auth, provideAuth, getAuth, getIdToken, authState } from '@angular/fire/auth';
11
9
  import { isPlatformBrowser, isPlatformServer } from '@angular/common';
12
10
  import * as i1$1 from '@angular/fire/firestore';
13
11
  import { Firestore, provideFirestore, initializeFirestore, memoryLocalCache, docSnapshots, doc } from '@angular/fire/firestore';
12
+ import * as i2 from '@angular/fire/storage';
13
+ import { Storage, provideStorage, getStorage } from '@angular/fire/storage';
14
14
  import cookie from 'js-cookie';
15
15
  import { of, from, combineLatest, throwError, Subject, iif, forkJoin } from 'rxjs';
16
16
  import { map, mergeMap, catchError, concatMap, tap } from 'rxjs/operators';
@@ -20,34 +20,34 @@ import * as i1$3 from '@angular/common/http';
20
20
 
21
21
  const ES_CONFIG = 'ES_CONFIG';
22
22
 
23
- class AngularElasticSeachModule {
24
- static initializeApp(options) {
25
- return {
26
- ngModule: AngularElasticSeachModule,
27
- providers: [{ provide: ES_CONFIG, useValue: options }],
28
- };
29
- }
30
- }
31
- AngularElasticSeachModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
32
- AngularElasticSeachModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule });
33
- AngularElasticSeachModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, providers: [
34
- {
35
- provide: ProductsIndex,
36
- useFactory: (configuration) => new ProductsIndex(new AxiosAdapter(configuration)),
37
- deps: [ES_CONFIG],
38
- },
39
- ] });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, decorators: [{
41
- type: NgModule,
42
- args: [{
43
- providers: [
44
- {
45
- provide: ProductsIndex,
46
- useFactory: (configuration) => new ProductsIndex(new AxiosAdapter(configuration)),
47
- deps: [ES_CONFIG],
48
- },
49
- ],
50
- }]
23
+ class AngularElasticSeachModule {
24
+ static initializeApp(options) {
25
+ return {
26
+ ngModule: AngularElasticSeachModule,
27
+ providers: [{ provide: ES_CONFIG, useValue: options }],
28
+ };
29
+ }
30
+ }
31
+ AngularElasticSeachModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
32
+ AngularElasticSeachModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule });
33
+ AngularElasticSeachModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, providers: [
34
+ {
35
+ provide: ProductsIndex,
36
+ useFactory: (configuration) => new ProductsIndex(new AxiosAdapter(configuration)),
37
+ deps: [ES_CONFIG],
38
+ },
39
+ ] });
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularElasticSeachModule, decorators: [{
41
+ type: NgModule,
42
+ args: [{
43
+ providers: [
44
+ {
45
+ provide: ProductsIndex,
46
+ useFactory: (configuration) => new ProductsIndex(new AxiosAdapter(configuration)),
47
+ deps: [ES_CONFIG],
48
+ },
49
+ ],
50
+ }]
51
51
  }] });
52
52
 
53
53
  const BACKEND_URL = 'BACKEND_URL';
@@ -56,2416 +56,2459 @@ const CATEGORY_STRUCTURE = 'CATEGORY_STRUCTURE';
56
56
 
57
57
  const DEFAULT_SHOP = 'DEFAULT_SHOP';
58
58
 
59
- const FIREBASE_APP_NAME = new InjectionToken('firebaseAppName');
59
+ const FIREBASE_APP_NAME = new InjectionToken('firebaseAppName');
60
60
  const FIREBASE_OPTIONS = new InjectionToken('firebaseOptions');
61
61
 
62
62
  const HASURA_OPTIONS = 'HASURA_OPTIONS';
63
63
 
64
64
  const PERSISTENCE_PROVIDER = 'PERSISTENCE_PROVIDER';
65
65
 
66
- class AngularFirebaseAuthModule {
67
- static initializeApp(options, nameOrConfig) {
68
- return {
69
- ngModule: AngularFirebaseAuthModule,
70
- providers: [
71
- { provide: FIREBASE_OPTIONS, useValue: options },
72
- { provide: FIREBASE_APP_NAME, useValue: nameOrConfig },
73
- ],
74
- };
75
- }
76
- }
77
- AngularFirebaseAuthModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
78
- AngularFirebaseAuthModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, imports: [i1.AuthModule] });
79
- AngularFirebaseAuthModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, providers: [
80
- {
81
- provide: 'Authentication',
82
- useFactory: (authenticationService, userRepository) => {
83
- return new Authentication(authenticationService, userRepository);
84
- },
85
- deps: ['AuthenticationService', 'UserRepository'],
86
- },
87
- {
88
- provide: 'AuthenticationService',
89
- useFactory: (angularFireAuth) => {
90
- return new AuthenticationFirebaseAuthService(angularFireAuth);
91
- },
92
- deps: [Auth],
93
- },
94
- {
95
- provide: 'Register',
96
- useFactory: (registerService, userRepository) => {
97
- return new Register(registerService, userRepository);
98
- },
99
- deps: ['RegisterService', 'UserRepository'],
100
- },
101
- {
102
- provide: 'RegisterService',
103
- useFactory: (angularFireAuth) => {
104
- return new RegisterFirebaseAuthService(angularFireAuth);
105
- },
106
- deps: [Auth],
107
- },
108
- {
109
- provide: 'SignOut',
110
- useFactory: (authenticationService) => {
111
- return new SignOut(authenticationService);
112
- },
113
- deps: ['AuthenticationService'],
114
- },
115
- {
116
- provide: 'RecoveryPassword',
117
- useFactory: (authenticationService) => {
118
- return new RecoveryPassword(authenticationService);
119
- },
120
- deps: ['AuthenticationService'],
121
- },
122
- ], imports: [provideAuth((injector) => getAuth(injector.get(FirebaseApp)))] });
123
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, decorators: [{
124
- type: NgModule,
125
- args: [{
126
- imports: [provideAuth((injector) => getAuth(injector.get(FirebaseApp)))],
127
- providers: [
128
- {
129
- provide: 'Authentication',
130
- useFactory: (authenticationService, userRepository) => {
131
- return new Authentication(authenticationService, userRepository);
132
- },
133
- deps: ['AuthenticationService', 'UserRepository'],
134
- },
135
- {
136
- provide: 'AuthenticationService',
137
- useFactory: (angularFireAuth) => {
138
- return new AuthenticationFirebaseAuthService(angularFireAuth);
139
- },
140
- deps: [Auth],
141
- },
142
- {
143
- provide: 'Register',
144
- useFactory: (registerService, userRepository) => {
145
- return new Register(registerService, userRepository);
146
- },
147
- deps: ['RegisterService', 'UserRepository'],
148
- },
149
- {
150
- provide: 'RegisterService',
151
- useFactory: (angularFireAuth) => {
152
- return new RegisterFirebaseAuthService(angularFireAuth);
153
- },
154
- deps: [Auth],
155
- },
156
- {
157
- provide: 'SignOut',
158
- useFactory: (authenticationService) => {
159
- return new SignOut(authenticationService);
160
- },
161
- deps: ['AuthenticationService'],
162
- },
163
- {
164
- provide: 'RecoveryPassword',
165
- useFactory: (authenticationService) => {
166
- return new RecoveryPassword(authenticationService);
167
- },
168
- deps: ['AuthenticationService'],
169
- },
170
- ],
171
- }]
66
+ class AngularFirebaseAuthModule {
67
+ static initializeApp(options, nameOrConfig) {
68
+ return {
69
+ ngModule: AngularFirebaseAuthModule,
70
+ providers: [
71
+ { provide: FIREBASE_OPTIONS, useValue: options },
72
+ { provide: FIREBASE_APP_NAME, useValue: nameOrConfig },
73
+ ],
74
+ };
75
+ }
76
+ }
77
+ AngularFirebaseAuthModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
78
+ AngularFirebaseAuthModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, imports: [i1.AuthModule] });
79
+ AngularFirebaseAuthModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, providers: [
80
+ {
81
+ provide: 'Authentication',
82
+ useFactory: (authenticationService, userRepository) => {
83
+ return new Authentication(authenticationService, userRepository);
84
+ },
85
+ deps: ['AuthenticationService', 'UserRepository'],
86
+ },
87
+ {
88
+ provide: 'AuthenticationService',
89
+ useFactory: (angularFireAuth) => {
90
+ return new AuthenticationFirebaseAuthService(angularFireAuth);
91
+ },
92
+ deps: [Auth],
93
+ },
94
+ {
95
+ provide: 'Register',
96
+ useFactory: (registerService, userRepository) => {
97
+ return new Register(registerService, userRepository);
98
+ },
99
+ deps: ['RegisterService', 'UserRepository'],
100
+ },
101
+ {
102
+ provide: 'RegisterService',
103
+ useFactory: (angularFireAuth) => {
104
+ return new RegisterFirebaseAuthService(angularFireAuth);
105
+ },
106
+ deps: [Auth],
107
+ },
108
+ {
109
+ provide: 'SignOut',
110
+ useFactory: (authenticationService) => {
111
+ return new SignOut(authenticationService);
112
+ },
113
+ deps: ['AuthenticationService'],
114
+ },
115
+ {
116
+ provide: 'RecoveryPassword',
117
+ useFactory: (authenticationService) => {
118
+ return new RecoveryPassword(authenticationService);
119
+ },
120
+ deps: ['AuthenticationService'],
121
+ },
122
+ ], imports: [provideAuth((injector) => getAuth(injector.get(FirebaseApp)))] });
123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirebaseAuthModule, decorators: [{
124
+ type: NgModule,
125
+ args: [{
126
+ imports: [provideAuth((injector) => getAuth(injector.get(FirebaseApp)))],
127
+ providers: [
128
+ {
129
+ provide: 'Authentication',
130
+ useFactory: (authenticationService, userRepository) => {
131
+ return new Authentication(authenticationService, userRepository);
132
+ },
133
+ deps: ['AuthenticationService', 'UserRepository'],
134
+ },
135
+ {
136
+ provide: 'AuthenticationService',
137
+ useFactory: (angularFireAuth) => {
138
+ return new AuthenticationFirebaseAuthService(angularFireAuth);
139
+ },
140
+ deps: [Auth],
141
+ },
142
+ {
143
+ provide: 'Register',
144
+ useFactory: (registerService, userRepository) => {
145
+ return new Register(registerService, userRepository);
146
+ },
147
+ deps: ['RegisterService', 'UserRepository'],
148
+ },
149
+ {
150
+ provide: 'RegisterService',
151
+ useFactory: (angularFireAuth) => {
152
+ return new RegisterFirebaseAuthService(angularFireAuth);
153
+ },
154
+ deps: [Auth],
155
+ },
156
+ {
157
+ provide: 'SignOut',
158
+ useFactory: (authenticationService) => {
159
+ return new SignOut(authenticationService);
160
+ },
161
+ deps: ['AuthenticationService'],
162
+ },
163
+ {
164
+ provide: 'RecoveryPassword',
165
+ useFactory: (authenticationService) => {
166
+ return new RecoveryPassword(authenticationService);
167
+ },
168
+ deps: ['AuthenticationService'],
169
+ },
170
+ ],
171
+ }]
172
172
  }] });
173
173
 
174
- class MobileOperationSystemCheckerHelper {
175
- static isAppleDevice() {
176
- var _a, _b;
177
- return (['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator === null || navigator === void 0 ? void 0 : navigator.platform) ||
178
- (((_b = (_a = navigator === null || navigator === void 0 ? void 0 : navigator.userAgent) === null || _a === void 0 ? void 0 : _a.includes) === null || _b === void 0 ? void 0 : _b.call(_a, 'Mac')) && 'ontouchend' in (document || {})));
179
- }
180
- }
174
+ const STORAGE_BASE_URL = 'STORAGE_BASE_URL';
181
175
 
182
- class AngularFirestoreModule {
183
- static initializeApp(options, nameOrConfig) {
184
- return {
185
- ngModule: AngularFirestoreModule,
186
- providers: [
187
- { provide: FIREBASE_OPTIONS, useValue: options.firebase },
188
- { provide: FIREBASE_APP_NAME, useValue: nameOrConfig },
189
- { provide: ES_CONFIG, useValue: options.elasticSearch },
190
- ],
191
- };
192
- }
176
+ class MobileOperationSystemCheckerHelper {
177
+ static isAppleDevice() {
178
+ var _a, _b;
179
+ return (['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator === null || navigator === void 0 ? void 0 : navigator.platform) ||
180
+ (((_b = (_a = navigator === null || navigator === void 0 ? void 0 : navigator.userAgent) === null || _a === void 0 ? void 0 : _a.includes) === null || _b === void 0 ? void 0 : _b.call(_a, 'Mac')) && 'ontouchend' in (document || {})));
181
+ }
193
182
  }
194
- AngularFirestoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
195
- AngularFirestoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, imports: [AngularElasticSeachModule, i1$1.FirestoreModule] });
196
- AngularFirestoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, providers: [
197
- {
198
- provide: 'FirestoreOptions',
199
- useFactory: (firestore, platformId) => ({
200
- firestore: new ConnectFirestoreService(firestore),
201
- interceptors: {
202
- request: (request) => {
203
- if (isPlatformBrowser(platformId))
204
- return request;
205
- const interval = setInterval(() => { }, 100);
206
- request.interval = interval;
207
- return request;
208
- },
209
- response: (response, request) => {
210
- if (isPlatformBrowser(platformId))
211
- return response;
212
- clearInterval(request.interval);
213
- return response;
214
- },
215
- },
216
- }),
217
- deps: [Firestore, PLATFORM_ID],
218
- },
219
- {
220
- provide: 'BeautyProfileRepository',
221
- useFactory: (config, userRepository) => {
222
- return new UserBeautyProfileFirestoreRepository(config, userRepository);
223
- },
224
- deps: ['FirestoreOptions', 'UserRepository'],
225
- },
226
- {
227
- provide: 'Buy2WinRepository',
228
- useFactory: (options) => {
229
- return new Buy2WinFirestoreRepository(options);
230
- },
231
- deps: ['FirestoreOptions'],
232
- },
233
- {
234
- provide: CategoryFirestoreRepository,
235
- useFactory: (options) => {
236
- return new CategoryFirestoreRepository(options);
237
- },
238
- deps: ['FirestoreOptions'],
239
- },
240
- {
241
- provide: 'CheckoutRepository',
242
- useFactory: (options) => {
243
- return new CheckoutFirestoreRepository(options);
244
- },
245
- deps: ['FirestoreOptions'],
246
- },
247
- {
248
- provide: 'CheckoutSubscriptionRepository',
249
- useFactory: (options) => {
250
- return new CheckoutSubscriptionFirestoreRepository(options);
251
- },
252
- deps: ['FirestoreOptions'],
253
- },
254
- {
255
- provide: 'CouponRepository',
256
- useFactory: (options) => {
257
- return new CouponFirestoreRepository(options);
258
- },
259
- deps: ['FirestoreOptions'],
260
- },
261
- {
262
- provide: 'CampaignHashtagRepository',
263
- useFactory: (options) => {
264
- return new CampaignHashtagFirestoreRepository(options);
265
- },
266
- deps: ['FirestoreOptions'],
267
- },
268
- {
269
- provide: 'CampaignDashboardRepository',
270
- useFactory: (options) => {
271
- return new CampaignDashboardFirestoreRepository(options);
272
- },
273
- deps: ['FirestoreOptions'],
274
- },
275
- {
276
- provide: 'EditionRepository',
277
- useFactory: (options, subscriptionRepository) => {
278
- return new SubscriptionEditionFirestoreRepository(options, subscriptionRepository);
279
- },
280
- deps: ['FirestoreOptions', 'SubscriptionRepository'],
281
- },
282
- {
283
- provide: 'HomeRepository',
284
- useFactory: (options) => {
285
- return new HomeFirestoreRepository(options);
286
- },
287
- deps: ['FirestoreOptions'],
288
- },
289
- {
290
- provide: 'LeadRepository',
291
- useFactory: (options) => {
292
- return new LeadFirestoreRepository(options);
293
- },
294
- deps: ['FirestoreOptions'],
295
- },
296
- {
297
- provide: 'LegacyOrderRepository',
298
- useFactory: (options) => {
299
- return new LegacyOrderFirestoreRepository(options);
300
- },
301
- deps: ['FirestoreOptions'],
302
- },
303
- {
304
- provide: 'ShopMenuRepository',
305
- useFactory: (options) => {
306
- return new ShopMenuFirestoreRepository(options);
307
- },
308
- deps: ['FirestoreOptions'],
309
- },
310
- {
311
- provide: 'OrderRepository',
312
- useFactory: (options) => {
313
- return new OrderFirestoreRepository(options);
314
- },
315
- deps: ['FirestoreOptions'],
316
- },
317
- {
318
- provide: 'PaymentRepository',
319
- useFactory: (options) => {
320
- return new PaymentFirestoreRepository(options);
321
- },
322
- deps: ['FirestoreOptions'],
323
- },
324
- {
325
- provide: ProductFirestoreRepository,
326
- useFactory: (options) => {
327
- return new ProductFirestoreRepository(options);
328
- },
329
- deps: ['FirestoreOptions'],
330
- },
331
- {
332
- provide: 'ShopSettingsRepository',
333
- useFactory: (options) => {
334
- return new ShopSettingsFirestoreRepository(options);
335
- },
336
- deps: ['FirestoreOptions'],
337
- },
338
- {
339
- provide: 'SubscriptionPaymentRepository',
340
- useFactory: (options, subscriptionRepository) => {
341
- return new SubscriptionPaymentFirestoreRepository(options, subscriptionRepository);
342
- },
343
- deps: ['FirestoreOptions', 'SubscriptionRepository'],
344
- },
345
- {
346
- provide: 'SubscriptionPlanRepository',
347
- useFactory: (options) => {
348
- return new SubscriptionPlanFirestoreRepository(options);
349
- },
350
- deps: ['FirestoreOptions'],
351
- },
352
- {
353
- provide: 'SubscriptionProductRepository',
354
- useFactory: (options) => {
355
- return new SubscriptionProductFirestoreRepository(options);
356
- },
357
- deps: ['FirestoreOptions'],
358
- },
359
- {
360
- provide: 'SubscriptionRepository',
361
- useFactory: (options) => {
362
- return new SubscriptionFirestoreRepository(options);
363
- },
364
- deps: ['FirestoreOptions'],
365
- },
366
- {
367
- provide: 'UserRepository',
368
- useFactory: (options) => {
369
- return new UserFirestoreRepository(options);
370
- },
371
- deps: ['FirestoreOptions'],
372
- },
373
- {
374
- provide: 'UserAddressRepository',
375
- useFactory: (options, userRepository) => {
376
- return new UserAddressFirestoreRepository(options, userRepository);
377
- },
378
- deps: ['FirestoreOptions', 'UserRepository'],
379
- },
380
- {
381
- provide: 'UserPaymentMethodRepository',
382
- useFactory: (options, userRepository) => {
383
- return new UserPaymentMethodFirestoreRepository(options, userRepository);
384
- },
385
- deps: ['FirestoreOptions', 'UserRepository'],
386
- },
387
- {
388
- provide: 'SubscriptionMaterializationRepository',
389
- useFactory: (options) => {
390
- return new SubscriptionMaterializationFirestoreRepository(options);
391
- },
392
- deps: ['FirestoreOptions'],
393
- },
394
- {
395
- provide: 'SubscriptionSummaryRepository',
396
- useFactory: (options) => {
397
- return new SubscriptionSummaryFirestoreRepository(options);
398
- },
399
- deps: ['FirestoreOptions'],
400
- },
401
- {
402
- provide: ProductVariantFirestoreRepository,
403
- useFactory: (options, productRepository) => {
404
- return new ProductVariantFirestoreRepository(options, productRepository);
405
- },
406
- deps: ['FirestoreOptions', ProductFirestoreRepository],
407
- },
408
- ], imports: [AngularElasticSeachModule,
409
- provideFirestore((injector) => {
410
- const platformId = injector.get(PLATFORM_ID);
411
- if (isPlatformServer(platformId) || !MobileOperationSystemCheckerHelper.isAppleDevice())
412
- return initializeFirestore(injector.get(FirebaseApp), {
413
- ignoreUndefinedProperties: true,
414
- });
415
- const firestore = initializeFirestore(injector.get(FirebaseApp), {
416
- experimentalForceLongPolling: true,
417
- ignoreUndefinedProperties: true,
418
- localCache: memoryLocalCache(),
419
- });
420
- return firestore;
421
- })] });
422
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, decorators: [{
423
- type: NgModule,
424
- args: [{
425
- imports: [
426
- AngularElasticSeachModule,
427
- provideFirestore((injector) => {
428
- const platformId = injector.get(PLATFORM_ID);
429
- if (isPlatformServer(platformId) || !MobileOperationSystemCheckerHelper.isAppleDevice())
430
- return initializeFirestore(injector.get(FirebaseApp), {
431
- ignoreUndefinedProperties: true,
432
- });
433
- const firestore = initializeFirestore(injector.get(FirebaseApp), {
434
- experimentalForceLongPolling: true,
435
- ignoreUndefinedProperties: true,
436
- localCache: memoryLocalCache(),
437
- });
438
- return firestore;
439
- }),
440
- ],
441
- providers: [
442
- {
443
- provide: 'FirestoreOptions',
444
- useFactory: (firestore, platformId) => ({
445
- firestore: new ConnectFirestoreService(firestore),
446
- interceptors: {
447
- request: (request) => {
448
- if (isPlatformBrowser(platformId))
449
- return request;
450
- const interval = setInterval(() => { }, 100);
451
- request.interval = interval;
452
- return request;
453
- },
454
- response: (response, request) => {
455
- if (isPlatformBrowser(platformId))
456
- return response;
457
- clearInterval(request.interval);
458
- return response;
459
- },
460
- },
461
- }),
462
- deps: [Firestore, PLATFORM_ID],
463
- },
464
- {
465
- provide: 'BeautyProfileRepository',
466
- useFactory: (config, userRepository) => {
467
- return new UserBeautyProfileFirestoreRepository(config, userRepository);
468
- },
469
- deps: ['FirestoreOptions', 'UserRepository'],
470
- },
471
- {
472
- provide: 'Buy2WinRepository',
473
- useFactory: (options) => {
474
- return new Buy2WinFirestoreRepository(options);
475
- },
476
- deps: ['FirestoreOptions'],
477
- },
478
- {
479
- provide: CategoryFirestoreRepository,
480
- useFactory: (options) => {
481
- return new CategoryFirestoreRepository(options);
482
- },
483
- deps: ['FirestoreOptions'],
484
- },
485
- {
486
- provide: 'CheckoutRepository',
487
- useFactory: (options) => {
488
- return new CheckoutFirestoreRepository(options);
489
- },
490
- deps: ['FirestoreOptions'],
491
- },
492
- {
493
- provide: 'CheckoutSubscriptionRepository',
494
- useFactory: (options) => {
495
- return new CheckoutSubscriptionFirestoreRepository(options);
496
- },
497
- deps: ['FirestoreOptions'],
498
- },
499
- {
500
- provide: 'CouponRepository',
501
- useFactory: (options) => {
502
- return new CouponFirestoreRepository(options);
503
- },
504
- deps: ['FirestoreOptions'],
505
- },
506
- {
507
- provide: 'CampaignHashtagRepository',
508
- useFactory: (options) => {
509
- return new CampaignHashtagFirestoreRepository(options);
510
- },
511
- deps: ['FirestoreOptions'],
512
- },
513
- {
514
- provide: 'CampaignDashboardRepository',
515
- useFactory: (options) => {
516
- return new CampaignDashboardFirestoreRepository(options);
517
- },
518
- deps: ['FirestoreOptions'],
519
- },
520
- {
521
- provide: 'EditionRepository',
522
- useFactory: (options, subscriptionRepository) => {
523
- return new SubscriptionEditionFirestoreRepository(options, subscriptionRepository);
524
- },
525
- deps: ['FirestoreOptions', 'SubscriptionRepository'],
526
- },
527
- {
528
- provide: 'HomeRepository',
529
- useFactory: (options) => {
530
- return new HomeFirestoreRepository(options);
531
- },
532
- deps: ['FirestoreOptions'],
533
- },
534
- {
535
- provide: 'LeadRepository',
536
- useFactory: (options) => {
537
- return new LeadFirestoreRepository(options);
538
- },
539
- deps: ['FirestoreOptions'],
540
- },
541
- {
542
- provide: 'LegacyOrderRepository',
543
- useFactory: (options) => {
544
- return new LegacyOrderFirestoreRepository(options);
545
- },
546
- deps: ['FirestoreOptions'],
547
- },
548
- {
549
- provide: 'ShopMenuRepository',
550
- useFactory: (options) => {
551
- return new ShopMenuFirestoreRepository(options);
552
- },
553
- deps: ['FirestoreOptions'],
554
- },
555
- {
556
- provide: 'OrderRepository',
557
- useFactory: (options) => {
558
- return new OrderFirestoreRepository(options);
559
- },
560
- deps: ['FirestoreOptions'],
561
- },
562
- {
563
- provide: 'PaymentRepository',
564
- useFactory: (options) => {
565
- return new PaymentFirestoreRepository(options);
566
- },
567
- deps: ['FirestoreOptions'],
568
- },
569
- {
570
- provide: ProductFirestoreRepository,
571
- useFactory: (options) => {
572
- return new ProductFirestoreRepository(options);
573
- },
574
- deps: ['FirestoreOptions'],
575
- },
576
- {
577
- provide: 'ShopSettingsRepository',
578
- useFactory: (options) => {
579
- return new ShopSettingsFirestoreRepository(options);
580
- },
581
- deps: ['FirestoreOptions'],
582
- },
583
- {
584
- provide: 'SubscriptionPaymentRepository',
585
- useFactory: (options, subscriptionRepository) => {
586
- return new SubscriptionPaymentFirestoreRepository(options, subscriptionRepository);
587
- },
588
- deps: ['FirestoreOptions', 'SubscriptionRepository'],
589
- },
590
- {
591
- provide: 'SubscriptionPlanRepository',
592
- useFactory: (options) => {
593
- return new SubscriptionPlanFirestoreRepository(options);
594
- },
595
- deps: ['FirestoreOptions'],
596
- },
597
- {
598
- provide: 'SubscriptionProductRepository',
599
- useFactory: (options) => {
600
- return new SubscriptionProductFirestoreRepository(options);
601
- },
602
- deps: ['FirestoreOptions'],
603
- },
604
- {
605
- provide: 'SubscriptionRepository',
606
- useFactory: (options) => {
607
- return new SubscriptionFirestoreRepository(options);
608
- },
609
- deps: ['FirestoreOptions'],
610
- },
611
- {
612
- provide: 'UserRepository',
613
- useFactory: (options) => {
614
- return new UserFirestoreRepository(options);
615
- },
616
- deps: ['FirestoreOptions'],
617
- },
618
- {
619
- provide: 'UserAddressRepository',
620
- useFactory: (options, userRepository) => {
621
- return new UserAddressFirestoreRepository(options, userRepository);
622
- },
623
- deps: ['FirestoreOptions', 'UserRepository'],
624
- },
625
- {
626
- provide: 'UserPaymentMethodRepository',
627
- useFactory: (options, userRepository) => {
628
- return new UserPaymentMethodFirestoreRepository(options, userRepository);
629
- },
630
- deps: ['FirestoreOptions', 'UserRepository'],
631
- },
632
- {
633
- provide: 'SubscriptionMaterializationRepository',
634
- useFactory: (options) => {
635
- return new SubscriptionMaterializationFirestoreRepository(options);
636
- },
637
- deps: ['FirestoreOptions'],
638
- },
639
- {
640
- provide: 'SubscriptionSummaryRepository',
641
- useFactory: (options) => {
642
- return new SubscriptionSummaryFirestoreRepository(options);
643
- },
644
- deps: ['FirestoreOptions'],
645
- },
646
- {
647
- provide: ProductVariantFirestoreRepository,
648
- useFactory: (options, productRepository) => {
649
- return new ProductVariantFirestoreRepository(options, productRepository);
650
- },
651
- deps: ['FirestoreOptions', ProductFirestoreRepository],
652
- },
653
- ],
654
- }]
655
- }] });
656
183
 
657
- class AngularHasuraGraphQLModule {
658
- static initializeApp(options) {
659
- return {
660
- ngModule: AngularHasuraGraphQLModule,
661
- providers: [{ provide: HASURA_OPTIONS, useValue: options }],
662
- };
663
- }
664
- }
665
- AngularHasuraGraphQLModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
666
- AngularHasuraGraphQLModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule });
667
- AngularHasuraGraphQLModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, providers: [
668
- {
669
- provide: 'HasuraConfig',
670
- useFactory: (options, platformId) => ({
671
- endpoint: options.endpoint,
672
- authOptions: options.credentials,
673
- interceptors: {
674
- request: (request) => {
675
- if (isPlatformBrowser(platformId))
676
- return request;
677
- const interval = setInterval(() => { }, 100);
678
- request.interval = interval;
679
- return request;
680
- },
681
- response: (response, request) => {
682
- if (isPlatformBrowser(platformId))
683
- return response;
684
- clearInterval(request.interval);
685
- return response;
686
- },
687
- },
688
- }),
689
- deps: [HASURA_OPTIONS, PLATFORM_ID],
690
- },
691
- {
692
- provide: 'CategoryRepository',
693
- useExisting: CategoryHasuraGraphQLRepository,
694
- },
695
- {
696
- provide: CategoryHasuraGraphQLRepository,
697
- useFactory: (options, productRepository, categoryFilterRepository) => {
698
- return new CategoryHasuraGraphQLRepository(options, productRepository, categoryFilterRepository);
699
- },
700
- deps: ['HasuraConfig', ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
701
- },
702
- {
703
- provide: 'ProductRepository',
704
- useExisting: ProductHasuraGraphQLRepository,
705
- },
706
- {
707
- provide: ProductHasuraGraphQLRepository,
708
- useFactory: (hasuraConfig) => {
709
- return new ProductHasuraGraphQLRepository(hasuraConfig);
710
- },
711
- deps: ['HasuraConfig'],
712
- },
713
- {
714
- provide: 'ProductReviewsRepository',
715
- useExisting: ProductReviewsHasuraGraphQLRepository,
716
- },
717
- {
718
- provide: ProductReviewsHasuraGraphQLRepository,
719
- useFactory: (hasuraConfig) => {
720
- return new ProductReviewsHasuraGraphQLRepository(hasuraConfig);
721
- },
722
- deps: ['HasuraConfig'],
723
- },
724
- {
725
- provide: 'VariantRepository',
726
- useExisting: VariantHasuraGraphQLRepository,
727
- },
728
- {
729
- provide: VariantHasuraGraphQLRepository,
730
- useFactory: (hasuraConfig) => {
731
- return new VariantHasuraGraphQLRepository(hasuraConfig);
732
- },
733
- deps: ['HasuraConfig'],
734
- },
735
- {
736
- provide: 'ProductStockNotificationRepository',
737
- useExisting: ProductStockNotificationHasuraGraphQLRepository,
738
- },
739
- {
740
- provide: ProductStockNotificationHasuraGraphQLRepository,
741
- useFactory: (hasuraConfig) => {
742
- return new ProductStockNotificationHasuraGraphQLRepository(hasuraConfig);
743
- },
744
- deps: ['HasuraConfig'],
745
- },
746
- {
747
- provide: 'CategoryFilterRepository',
748
- useExisting: CategoryFilterHasuraGraphQLRepository,
749
- },
750
- {
751
- provide: CategoryFilterHasuraGraphQLRepository,
752
- useFactory: (options) => {
753
- return new CategoryFilterHasuraGraphQLRepository(options);
754
- },
755
- deps: ['HasuraConfig'],
756
- },
757
- {
758
- provide: 'FilterOptionRepository',
759
- useExisting: FilterOptionHasuraGraphQLRepository,
760
- },
761
- {
762
- provide: FilterOptionHasuraGraphQLRepository,
763
- useFactory: (options) => {
764
- return new FilterOptionHasuraGraphQLRepository(options);
765
- },
766
- deps: ['HasuraConfig'],
767
- },
768
- {
769
- provide: 'FilterRepository',
770
- useExisting: FilterHasuraGraphQLRepository,
771
- },
772
- {
773
- provide: FilterHasuraGraphQLRepository,
774
- useFactory: (options, filterOptionRepository, categoryFilterRepository) => {
775
- return new FilterHasuraGraphQLRepository(options, filterOptionRepository, categoryFilterRepository);
776
- },
777
- deps: ['HasuraConfig', FilterOptionHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
778
- },
779
- {
780
- provide: CategoryCollectionChildrenHasuraGraphQLRepository,
781
- useFactory: (options) => new CategoryCollectionChildrenHasuraGraphQLRepository(options),
782
- deps: ['HasuraConfig'],
783
- },
784
- {
785
- provide: 'CategoryCollectionChildrenRepository',
786
- useExisting: CategoryCollectionChildrenHasuraGraphQLRepository,
787
- },
788
- {
789
- provide: WishlistHasuraGraphQLRepository,
790
- useFactory: (options, categoryFilterRepository) => {
791
- return new WishlistHasuraGraphQLRepository(options, categoryFilterRepository);
792
- },
793
- deps: ['HasuraConfig', CategoryFilterHasuraGraphQLRepository],
794
- },
795
- {
796
- provide: 'WishlistRepository',
797
- useExisting: WishlistHasuraGraphQLRepository,
798
- },
799
- ] });
800
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, decorators: [{
801
- type: NgModule,
802
- args: [{
803
- providers: [
804
- {
805
- provide: 'HasuraConfig',
806
- useFactory: (options, platformId) => ({
807
- endpoint: options.endpoint,
808
- authOptions: options.credentials,
809
- interceptors: {
810
- request: (request) => {
811
- if (isPlatformBrowser(platformId))
812
- return request;
813
- const interval = setInterval(() => { }, 100);
814
- request.interval = interval;
815
- return request;
816
- },
817
- response: (response, request) => {
818
- if (isPlatformBrowser(platformId))
819
- return response;
820
- clearInterval(request.interval);
821
- return response;
822
- },
823
- },
824
- }),
825
- deps: [HASURA_OPTIONS, PLATFORM_ID],
826
- },
827
- {
828
- provide: 'CategoryRepository',
829
- useExisting: CategoryHasuraGraphQLRepository,
830
- },
831
- {
832
- provide: CategoryHasuraGraphQLRepository,
833
- useFactory: (options, productRepository, categoryFilterRepository) => {
834
- return new CategoryHasuraGraphQLRepository(options, productRepository, categoryFilterRepository);
835
- },
836
- deps: ['HasuraConfig', ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
837
- },
838
- {
839
- provide: 'ProductRepository',
840
- useExisting: ProductHasuraGraphQLRepository,
841
- },
842
- {
843
- provide: ProductHasuraGraphQLRepository,
844
- useFactory: (hasuraConfig) => {
845
- return new ProductHasuraGraphQLRepository(hasuraConfig);
846
- },
847
- deps: ['HasuraConfig'],
848
- },
849
- {
850
- provide: 'ProductReviewsRepository',
851
- useExisting: ProductReviewsHasuraGraphQLRepository,
852
- },
853
- {
854
- provide: ProductReviewsHasuraGraphQLRepository,
855
- useFactory: (hasuraConfig) => {
856
- return new ProductReviewsHasuraGraphQLRepository(hasuraConfig);
857
- },
858
- deps: ['HasuraConfig'],
859
- },
860
- {
861
- provide: 'VariantRepository',
862
- useExisting: VariantHasuraGraphQLRepository,
863
- },
864
- {
865
- provide: VariantHasuraGraphQLRepository,
866
- useFactory: (hasuraConfig) => {
867
- return new VariantHasuraGraphQLRepository(hasuraConfig);
868
- },
869
- deps: ['HasuraConfig'],
870
- },
871
- {
872
- provide: 'ProductStockNotificationRepository',
873
- useExisting: ProductStockNotificationHasuraGraphQLRepository,
874
- },
875
- {
876
- provide: ProductStockNotificationHasuraGraphQLRepository,
877
- useFactory: (hasuraConfig) => {
878
- return new ProductStockNotificationHasuraGraphQLRepository(hasuraConfig);
879
- },
880
- deps: ['HasuraConfig'],
881
- },
882
- {
883
- provide: 'CategoryFilterRepository',
884
- useExisting: CategoryFilterHasuraGraphQLRepository,
885
- },
886
- {
887
- provide: CategoryFilterHasuraGraphQLRepository,
888
- useFactory: (options) => {
889
- return new CategoryFilterHasuraGraphQLRepository(options);
890
- },
891
- deps: ['HasuraConfig'],
892
- },
893
- {
894
- provide: 'FilterOptionRepository',
895
- useExisting: FilterOptionHasuraGraphQLRepository,
896
- },
897
- {
898
- provide: FilterOptionHasuraGraphQLRepository,
899
- useFactory: (options) => {
900
- return new FilterOptionHasuraGraphQLRepository(options);
901
- },
902
- deps: ['HasuraConfig'],
903
- },
904
- {
905
- provide: 'FilterRepository',
906
- useExisting: FilterHasuraGraphQLRepository,
907
- },
908
- {
909
- provide: FilterHasuraGraphQLRepository,
910
- useFactory: (options, filterOptionRepository, categoryFilterRepository) => {
911
- return new FilterHasuraGraphQLRepository(options, filterOptionRepository, categoryFilterRepository);
912
- },
913
- deps: ['HasuraConfig', FilterOptionHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
914
- },
915
- {
916
- provide: CategoryCollectionChildrenHasuraGraphQLRepository,
917
- useFactory: (options) => new CategoryCollectionChildrenHasuraGraphQLRepository(options),
918
- deps: ['HasuraConfig'],
919
- },
920
- {
921
- provide: 'CategoryCollectionChildrenRepository',
922
- useExisting: CategoryCollectionChildrenHasuraGraphQLRepository,
923
- },
924
- {
925
- provide: WishlistHasuraGraphQLRepository,
926
- useFactory: (options, categoryFilterRepository) => {
927
- return new WishlistHasuraGraphQLRepository(options, categoryFilterRepository);
928
- },
929
- deps: ['HasuraConfig', CategoryFilterHasuraGraphQLRepository],
930
- },
931
- {
932
- provide: 'WishlistRepository',
933
- useExisting: WishlistHasuraGraphQLRepository,
934
- },
935
- ],
936
- }]
184
+ class AngularFirestoreModule {
185
+ static initializeApp(options, nameOrConfig) {
186
+ return {
187
+ ngModule: AngularFirestoreModule,
188
+ providers: [
189
+ { provide: FIREBASE_OPTIONS, useValue: options.firebase },
190
+ { provide: FIREBASE_APP_NAME, useValue: nameOrConfig },
191
+ { provide: ES_CONFIG, useValue: options.elasticSearch },
192
+ ],
193
+ };
194
+ }
195
+ }
196
+ AngularFirestoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
197
+ AngularFirestoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, imports: [AngularElasticSeachModule, i1$1.FirestoreModule, i2.StorageModule] });
198
+ AngularFirestoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, providers: [
199
+ {
200
+ provide: 'FirestoreOptions',
201
+ useFactory: (firestore, platformId) => ({
202
+ firestore: new ConnectFirestoreService(firestore),
203
+ interceptors: {
204
+ request: (request) => {
205
+ if (isPlatformBrowser(platformId))
206
+ return request;
207
+ const interval = setInterval(() => { }, 100);
208
+ request.interval = interval;
209
+ return request;
210
+ },
211
+ response: (response, request) => {
212
+ if (isPlatformBrowser(platformId))
213
+ return response;
214
+ clearInterval(request.interval);
215
+ return response;
216
+ },
217
+ },
218
+ }),
219
+ deps: [Firestore, PLATFORM_ID],
220
+ },
221
+ {
222
+ provide: 'BeautyProfileRepository',
223
+ useFactory: (config, userRepository) => {
224
+ return new UserBeautyProfileFirestoreRepository(config, userRepository);
225
+ },
226
+ deps: ['FirestoreOptions', 'UserRepository'],
227
+ },
228
+ {
229
+ provide: 'Buy2WinRepository',
230
+ useFactory: (options) => {
231
+ return new Buy2WinFirestoreRepository(options);
232
+ },
233
+ deps: ['FirestoreOptions'],
234
+ },
235
+ {
236
+ provide: CategoryFirestoreRepository,
237
+ useFactory: (options) => {
238
+ return new CategoryFirestoreRepository(options);
239
+ },
240
+ deps: ['FirestoreOptions'],
241
+ },
242
+ {
243
+ provide: 'CheckoutRepository',
244
+ useFactory: (options) => {
245
+ return new CheckoutFirestoreRepository(options);
246
+ },
247
+ deps: ['FirestoreOptions'],
248
+ },
249
+ {
250
+ provide: 'CheckoutSubscriptionRepository',
251
+ useFactory: (options) => {
252
+ return new CheckoutSubscriptionFirestoreRepository(options);
253
+ },
254
+ deps: ['FirestoreOptions'],
255
+ },
256
+ {
257
+ provide: 'CouponRepository',
258
+ useFactory: (options) => {
259
+ return new CouponFirestoreRepository(options);
260
+ },
261
+ deps: ['FirestoreOptions'],
262
+ },
263
+ {
264
+ provide: 'CampaignHashtagRepository',
265
+ useFactory: (options) => {
266
+ return new CampaignHashtagFirestoreRepository(options);
267
+ },
268
+ deps: ['FirestoreOptions'],
269
+ },
270
+ {
271
+ provide: 'CampaignDashboardRepository',
272
+ useFactory: (options) => {
273
+ return new CampaignDashboardFirestoreRepository(options);
274
+ },
275
+ deps: ['FirestoreOptions'],
276
+ },
277
+ {
278
+ provide: 'EditionRepository',
279
+ useFactory: (options, subscriptionRepository) => {
280
+ return new SubscriptionEditionFirestoreRepository(options, subscriptionRepository);
281
+ },
282
+ deps: ['FirestoreOptions', 'SubscriptionRepository'],
283
+ },
284
+ {
285
+ provide: 'HomeRepository',
286
+ useFactory: (options) => {
287
+ return new HomeFirestoreRepository(options);
288
+ },
289
+ deps: ['FirestoreOptions'],
290
+ },
291
+ {
292
+ provide: 'LeadRepository',
293
+ useFactory: (options) => {
294
+ return new LeadFirestoreRepository(options);
295
+ },
296
+ deps: ['FirestoreOptions'],
297
+ },
298
+ {
299
+ provide: 'LegacyOrderRepository',
300
+ useFactory: (options) => {
301
+ return new LegacyOrderFirestoreRepository(options);
302
+ },
303
+ deps: ['FirestoreOptions'],
304
+ },
305
+ {
306
+ provide: 'ShopMenuRepository',
307
+ useFactory: (options) => {
308
+ return new ShopMenuFirestoreRepository(options);
309
+ },
310
+ deps: ['FirestoreOptions'],
311
+ },
312
+ {
313
+ provide: 'OrderRepository',
314
+ useFactory: (options) => {
315
+ return new OrderFirestoreRepository(options);
316
+ },
317
+ deps: ['FirestoreOptions'],
318
+ },
319
+ {
320
+ provide: 'PaymentRepository',
321
+ useFactory: (options) => {
322
+ return new PaymentFirestoreRepository(options);
323
+ },
324
+ deps: ['FirestoreOptions'],
325
+ },
326
+ {
327
+ provide: ProductFirestoreRepository,
328
+ useFactory: (options) => {
329
+ return new ProductFirestoreRepository(options);
330
+ },
331
+ deps: ['FirestoreOptions'],
332
+ },
333
+ {
334
+ provide: 'ShopSettingsRepository',
335
+ useFactory: (options) => {
336
+ return new ShopSettingsFirestoreRepository(options);
337
+ },
338
+ deps: ['FirestoreOptions'],
339
+ },
340
+ {
341
+ provide: 'SubscriptionPaymentRepository',
342
+ useFactory: (options, subscriptionRepository) => {
343
+ return new SubscriptionPaymentFirestoreRepository(options, subscriptionRepository);
344
+ },
345
+ deps: ['FirestoreOptions', 'SubscriptionRepository'],
346
+ },
347
+ {
348
+ provide: 'SubscriptionPlanRepository',
349
+ useFactory: (options) => {
350
+ return new SubscriptionPlanFirestoreRepository(options);
351
+ },
352
+ deps: ['FirestoreOptions'],
353
+ },
354
+ {
355
+ provide: 'SubscriptionProductRepository',
356
+ useFactory: (options) => {
357
+ return new SubscriptionProductFirestoreRepository(options);
358
+ },
359
+ deps: ['FirestoreOptions'],
360
+ },
361
+ {
362
+ provide: 'SubscriptionRepository',
363
+ useFactory: (options) => {
364
+ return new SubscriptionFirestoreRepository(options);
365
+ },
366
+ deps: ['FirestoreOptions'],
367
+ },
368
+ {
369
+ provide: 'UserRepository',
370
+ useFactory: (options) => {
371
+ return new UserFirestoreRepository(options);
372
+ },
373
+ deps: ['FirestoreOptions'],
374
+ },
375
+ {
376
+ provide: 'UserAddressRepository',
377
+ useFactory: (options, userRepository) => {
378
+ return new UserAddressFirestoreRepository(options, userRepository);
379
+ },
380
+ deps: ['FirestoreOptions', 'UserRepository'],
381
+ },
382
+ {
383
+ provide: 'UserPaymentMethodRepository',
384
+ useFactory: (options, userRepository) => {
385
+ return new UserPaymentMethodFirestoreRepository(options, userRepository);
386
+ },
387
+ deps: ['FirestoreOptions', 'UserRepository'],
388
+ },
389
+ {
390
+ provide: 'SubscriptionMaterializationRepository',
391
+ useFactory: (options) => {
392
+ return new SubscriptionMaterializationFirestoreRepository(options);
393
+ },
394
+ deps: ['FirestoreOptions'],
395
+ },
396
+ {
397
+ provide: 'SubscriptionSummaryRepository',
398
+ useFactory: (options) => {
399
+ return new SubscriptionSummaryFirestoreRepository(options);
400
+ },
401
+ deps: ['FirestoreOptions'],
402
+ },
403
+ {
404
+ provide: ProductVariantFirestoreRepository,
405
+ useFactory: (options, productRepository) => {
406
+ return new ProductVariantFirestoreRepository(options, productRepository);
407
+ },
408
+ deps: ['FirestoreOptions', ProductFirestoreRepository],
409
+ },
410
+ {
411
+ provide: 'FileUploaderService',
412
+ useFactory: (storage, baseUrl) => {
413
+ return new FirebaseFileUploaderService(storage, baseUrl);
414
+ },
415
+ deps: [Storage, STORAGE_BASE_URL],
416
+ },
417
+ ], imports: [AngularElasticSeachModule,
418
+ provideFirestore((injector) => {
419
+ const platformId = injector.get(PLATFORM_ID);
420
+ if (isPlatformServer(platformId) || !MobileOperationSystemCheckerHelper.isAppleDevice())
421
+ return initializeFirestore(injector.get(FirebaseApp), {
422
+ ignoreUndefinedProperties: true,
423
+ });
424
+ const firestore = initializeFirestore(injector.get(FirebaseApp), {
425
+ experimentalForceLongPolling: true,
426
+ ignoreUndefinedProperties: true,
427
+ localCache: memoryLocalCache(),
428
+ });
429
+ return firestore;
430
+ }),
431
+ provideStorage(() => getStorage())] });
432
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularFirestoreModule, decorators: [{
433
+ type: NgModule,
434
+ args: [{
435
+ imports: [
436
+ AngularElasticSeachModule,
437
+ provideFirestore((injector) => {
438
+ const platformId = injector.get(PLATFORM_ID);
439
+ if (isPlatformServer(platformId) || !MobileOperationSystemCheckerHelper.isAppleDevice())
440
+ return initializeFirestore(injector.get(FirebaseApp), {
441
+ ignoreUndefinedProperties: true,
442
+ });
443
+ const firestore = initializeFirestore(injector.get(FirebaseApp), {
444
+ experimentalForceLongPolling: true,
445
+ ignoreUndefinedProperties: true,
446
+ localCache: memoryLocalCache(),
447
+ });
448
+ return firestore;
449
+ }),
450
+ provideStorage(() => getStorage()),
451
+ ],
452
+ providers: [
453
+ {
454
+ provide: 'FirestoreOptions',
455
+ useFactory: (firestore, platformId) => ({
456
+ firestore: new ConnectFirestoreService(firestore),
457
+ interceptors: {
458
+ request: (request) => {
459
+ if (isPlatformBrowser(platformId))
460
+ return request;
461
+ const interval = setInterval(() => { }, 100);
462
+ request.interval = interval;
463
+ return request;
464
+ },
465
+ response: (response, request) => {
466
+ if (isPlatformBrowser(platformId))
467
+ return response;
468
+ clearInterval(request.interval);
469
+ return response;
470
+ },
471
+ },
472
+ }),
473
+ deps: [Firestore, PLATFORM_ID],
474
+ },
475
+ {
476
+ provide: 'BeautyProfileRepository',
477
+ useFactory: (config, userRepository) => {
478
+ return new UserBeautyProfileFirestoreRepository(config, userRepository);
479
+ },
480
+ deps: ['FirestoreOptions', 'UserRepository'],
481
+ },
482
+ {
483
+ provide: 'Buy2WinRepository',
484
+ useFactory: (options) => {
485
+ return new Buy2WinFirestoreRepository(options);
486
+ },
487
+ deps: ['FirestoreOptions'],
488
+ },
489
+ {
490
+ provide: CategoryFirestoreRepository,
491
+ useFactory: (options) => {
492
+ return new CategoryFirestoreRepository(options);
493
+ },
494
+ deps: ['FirestoreOptions'],
495
+ },
496
+ {
497
+ provide: 'CheckoutRepository',
498
+ useFactory: (options) => {
499
+ return new CheckoutFirestoreRepository(options);
500
+ },
501
+ deps: ['FirestoreOptions'],
502
+ },
503
+ {
504
+ provide: 'CheckoutSubscriptionRepository',
505
+ useFactory: (options) => {
506
+ return new CheckoutSubscriptionFirestoreRepository(options);
507
+ },
508
+ deps: ['FirestoreOptions'],
509
+ },
510
+ {
511
+ provide: 'CouponRepository',
512
+ useFactory: (options) => {
513
+ return new CouponFirestoreRepository(options);
514
+ },
515
+ deps: ['FirestoreOptions'],
516
+ },
517
+ {
518
+ provide: 'CampaignHashtagRepository',
519
+ useFactory: (options) => {
520
+ return new CampaignHashtagFirestoreRepository(options);
521
+ },
522
+ deps: ['FirestoreOptions'],
523
+ },
524
+ {
525
+ provide: 'CampaignDashboardRepository',
526
+ useFactory: (options) => {
527
+ return new CampaignDashboardFirestoreRepository(options);
528
+ },
529
+ deps: ['FirestoreOptions'],
530
+ },
531
+ {
532
+ provide: 'EditionRepository',
533
+ useFactory: (options, subscriptionRepository) => {
534
+ return new SubscriptionEditionFirestoreRepository(options, subscriptionRepository);
535
+ },
536
+ deps: ['FirestoreOptions', 'SubscriptionRepository'],
537
+ },
538
+ {
539
+ provide: 'HomeRepository',
540
+ useFactory: (options) => {
541
+ return new HomeFirestoreRepository(options);
542
+ },
543
+ deps: ['FirestoreOptions'],
544
+ },
545
+ {
546
+ provide: 'LeadRepository',
547
+ useFactory: (options) => {
548
+ return new LeadFirestoreRepository(options);
549
+ },
550
+ deps: ['FirestoreOptions'],
551
+ },
552
+ {
553
+ provide: 'LegacyOrderRepository',
554
+ useFactory: (options) => {
555
+ return new LegacyOrderFirestoreRepository(options);
556
+ },
557
+ deps: ['FirestoreOptions'],
558
+ },
559
+ {
560
+ provide: 'ShopMenuRepository',
561
+ useFactory: (options) => {
562
+ return new ShopMenuFirestoreRepository(options);
563
+ },
564
+ deps: ['FirestoreOptions'],
565
+ },
566
+ {
567
+ provide: 'OrderRepository',
568
+ useFactory: (options) => {
569
+ return new OrderFirestoreRepository(options);
570
+ },
571
+ deps: ['FirestoreOptions'],
572
+ },
573
+ {
574
+ provide: 'PaymentRepository',
575
+ useFactory: (options) => {
576
+ return new PaymentFirestoreRepository(options);
577
+ },
578
+ deps: ['FirestoreOptions'],
579
+ },
580
+ {
581
+ provide: ProductFirestoreRepository,
582
+ useFactory: (options) => {
583
+ return new ProductFirestoreRepository(options);
584
+ },
585
+ deps: ['FirestoreOptions'],
586
+ },
587
+ {
588
+ provide: 'ShopSettingsRepository',
589
+ useFactory: (options) => {
590
+ return new ShopSettingsFirestoreRepository(options);
591
+ },
592
+ deps: ['FirestoreOptions'],
593
+ },
594
+ {
595
+ provide: 'SubscriptionPaymentRepository',
596
+ useFactory: (options, subscriptionRepository) => {
597
+ return new SubscriptionPaymentFirestoreRepository(options, subscriptionRepository);
598
+ },
599
+ deps: ['FirestoreOptions', 'SubscriptionRepository'],
600
+ },
601
+ {
602
+ provide: 'SubscriptionPlanRepository',
603
+ useFactory: (options) => {
604
+ return new SubscriptionPlanFirestoreRepository(options);
605
+ },
606
+ deps: ['FirestoreOptions'],
607
+ },
608
+ {
609
+ provide: 'SubscriptionProductRepository',
610
+ useFactory: (options) => {
611
+ return new SubscriptionProductFirestoreRepository(options);
612
+ },
613
+ deps: ['FirestoreOptions'],
614
+ },
615
+ {
616
+ provide: 'SubscriptionRepository',
617
+ useFactory: (options) => {
618
+ return new SubscriptionFirestoreRepository(options);
619
+ },
620
+ deps: ['FirestoreOptions'],
621
+ },
622
+ {
623
+ provide: 'UserRepository',
624
+ useFactory: (options) => {
625
+ return new UserFirestoreRepository(options);
626
+ },
627
+ deps: ['FirestoreOptions'],
628
+ },
629
+ {
630
+ provide: 'UserAddressRepository',
631
+ useFactory: (options, userRepository) => {
632
+ return new UserAddressFirestoreRepository(options, userRepository);
633
+ },
634
+ deps: ['FirestoreOptions', 'UserRepository'],
635
+ },
636
+ {
637
+ provide: 'UserPaymentMethodRepository',
638
+ useFactory: (options, userRepository) => {
639
+ return new UserPaymentMethodFirestoreRepository(options, userRepository);
640
+ },
641
+ deps: ['FirestoreOptions', 'UserRepository'],
642
+ },
643
+ {
644
+ provide: 'SubscriptionMaterializationRepository',
645
+ useFactory: (options) => {
646
+ return new SubscriptionMaterializationFirestoreRepository(options);
647
+ },
648
+ deps: ['FirestoreOptions'],
649
+ },
650
+ {
651
+ provide: 'SubscriptionSummaryRepository',
652
+ useFactory: (options) => {
653
+ return new SubscriptionSummaryFirestoreRepository(options);
654
+ },
655
+ deps: ['FirestoreOptions'],
656
+ },
657
+ {
658
+ provide: ProductVariantFirestoreRepository,
659
+ useFactory: (options, productRepository) => {
660
+ return new ProductVariantFirestoreRepository(options, productRepository);
661
+ },
662
+ deps: ['FirestoreOptions', ProductFirestoreRepository],
663
+ },
664
+ {
665
+ provide: 'FileUploaderService',
666
+ useFactory: (storage, baseUrl) => {
667
+ return new FirebaseFileUploaderService(storage, baseUrl);
668
+ },
669
+ deps: [Storage, STORAGE_BASE_URL],
670
+ },
671
+ ],
672
+ }]
937
673
  }] });
938
674
 
939
- const STORAGE_BASE_URL = 'STORAGE_BASE_URL';
675
+ class AngularHasuraGraphQLModule {
676
+ static initializeApp(options) {
677
+ return {
678
+ ngModule: AngularHasuraGraphQLModule,
679
+ providers: [{ provide: HASURA_OPTIONS, useValue: options }],
680
+ };
681
+ }
682
+ }
683
+ AngularHasuraGraphQLModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
684
+ AngularHasuraGraphQLModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule });
685
+ AngularHasuraGraphQLModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, providers: [
686
+ {
687
+ provide: 'HasuraConfig',
688
+ useFactory: (options, platformId) => ({
689
+ endpoint: options.endpoint,
690
+ authOptions: options.credentials,
691
+ interceptors: {
692
+ request: (request) => {
693
+ if (isPlatformBrowser(platformId))
694
+ return request;
695
+ const interval = setInterval(() => { }, 100);
696
+ request.interval = interval;
697
+ return request;
698
+ },
699
+ response: (response, request) => {
700
+ if (isPlatformBrowser(platformId))
701
+ return response;
702
+ clearInterval(request.interval);
703
+ return response;
704
+ },
705
+ },
706
+ }),
707
+ deps: [HASURA_OPTIONS, PLATFORM_ID],
708
+ },
709
+ {
710
+ provide: 'CategoryRepository',
711
+ useExisting: CategoryHasuraGraphQLRepository,
712
+ },
713
+ {
714
+ provide: CategoryHasuraGraphQLRepository,
715
+ useFactory: (options, productRepository, categoryFilterRepository) => {
716
+ return new CategoryHasuraGraphQLRepository(options, productRepository, categoryFilterRepository);
717
+ },
718
+ deps: ['HasuraConfig', ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
719
+ },
720
+ {
721
+ provide: 'ProductRepository',
722
+ useExisting: ProductHasuraGraphQLRepository,
723
+ },
724
+ {
725
+ provide: ProductHasuraGraphQLRepository,
726
+ useFactory: (hasuraConfig) => {
727
+ return new ProductHasuraGraphQLRepository(hasuraConfig);
728
+ },
729
+ deps: ['HasuraConfig'],
730
+ },
731
+ {
732
+ provide: 'ProductReviewsRepository',
733
+ useExisting: ProductReviewsHasuraGraphQLRepository,
734
+ },
735
+ {
736
+ provide: ProductReviewsHasuraGraphQLRepository,
737
+ useFactory: (hasuraConfig) => {
738
+ return new ProductReviewsHasuraGraphQLRepository(hasuraConfig);
739
+ },
740
+ deps: ['HasuraConfig'],
741
+ },
742
+ {
743
+ provide: 'VariantRepository',
744
+ useExisting: VariantHasuraGraphQLRepository,
745
+ },
746
+ {
747
+ provide: VariantHasuraGraphQLRepository,
748
+ useFactory: (hasuraConfig) => {
749
+ return new VariantHasuraGraphQLRepository(hasuraConfig);
750
+ },
751
+ deps: ['HasuraConfig'],
752
+ },
753
+ {
754
+ provide: 'ProductStockNotificationRepository',
755
+ useExisting: ProductStockNotificationHasuraGraphQLRepository,
756
+ },
757
+ {
758
+ provide: ProductStockNotificationHasuraGraphQLRepository,
759
+ useFactory: (hasuraConfig) => {
760
+ return new ProductStockNotificationHasuraGraphQLRepository(hasuraConfig);
761
+ },
762
+ deps: ['HasuraConfig'],
763
+ },
764
+ {
765
+ provide: 'CategoryFilterRepository',
766
+ useExisting: CategoryFilterHasuraGraphQLRepository,
767
+ },
768
+ {
769
+ provide: CategoryFilterHasuraGraphQLRepository,
770
+ useFactory: (options) => {
771
+ return new CategoryFilterHasuraGraphQLRepository(options);
772
+ },
773
+ deps: ['HasuraConfig'],
774
+ },
775
+ {
776
+ provide: 'FilterOptionRepository',
777
+ useExisting: FilterOptionHasuraGraphQLRepository,
778
+ },
779
+ {
780
+ provide: FilterOptionHasuraGraphQLRepository,
781
+ useFactory: (options) => {
782
+ return new FilterOptionHasuraGraphQLRepository(options);
783
+ },
784
+ deps: ['HasuraConfig'],
785
+ },
786
+ {
787
+ provide: 'FilterRepository',
788
+ useExisting: FilterHasuraGraphQLRepository,
789
+ },
790
+ {
791
+ provide: FilterHasuraGraphQLRepository,
792
+ useFactory: (options, filterOptionRepository, categoryFilterRepository) => {
793
+ return new FilterHasuraGraphQLRepository(options, filterOptionRepository, categoryFilterRepository);
794
+ },
795
+ deps: ['HasuraConfig', FilterOptionHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
796
+ },
797
+ {
798
+ provide: CategoryCollectionChildrenHasuraGraphQLRepository,
799
+ useFactory: (options) => new CategoryCollectionChildrenHasuraGraphQLRepository(options),
800
+ deps: ['HasuraConfig'],
801
+ },
802
+ {
803
+ provide: 'CategoryCollectionChildrenRepository',
804
+ useExisting: CategoryCollectionChildrenHasuraGraphQLRepository,
805
+ },
806
+ {
807
+ provide: WishlistHasuraGraphQLRepository,
808
+ useFactory: (options, categoryFilterRepository) => {
809
+ return new WishlistHasuraGraphQLRepository(options, categoryFilterRepository);
810
+ },
811
+ deps: ['HasuraConfig', CategoryFilterHasuraGraphQLRepository],
812
+ },
813
+ {
814
+ provide: 'WishlistRepository',
815
+ useExisting: WishlistHasuraGraphQLRepository,
816
+ },
817
+ ] });
818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularHasuraGraphQLModule, decorators: [{
819
+ type: NgModule,
820
+ args: [{
821
+ providers: [
822
+ {
823
+ provide: 'HasuraConfig',
824
+ useFactory: (options, platformId) => ({
825
+ endpoint: options.endpoint,
826
+ authOptions: options.credentials,
827
+ interceptors: {
828
+ request: (request) => {
829
+ if (isPlatformBrowser(platformId))
830
+ return request;
831
+ const interval = setInterval(() => { }, 100);
832
+ request.interval = interval;
833
+ return request;
834
+ },
835
+ response: (response, request) => {
836
+ if (isPlatformBrowser(platformId))
837
+ return response;
838
+ clearInterval(request.interval);
839
+ return response;
840
+ },
841
+ },
842
+ }),
843
+ deps: [HASURA_OPTIONS, PLATFORM_ID],
844
+ },
845
+ {
846
+ provide: 'CategoryRepository',
847
+ useExisting: CategoryHasuraGraphQLRepository,
848
+ },
849
+ {
850
+ provide: CategoryHasuraGraphQLRepository,
851
+ useFactory: (options, productRepository, categoryFilterRepository) => {
852
+ return new CategoryHasuraGraphQLRepository(options, productRepository, categoryFilterRepository);
853
+ },
854
+ deps: ['HasuraConfig', ProductHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
855
+ },
856
+ {
857
+ provide: 'ProductRepository',
858
+ useExisting: ProductHasuraGraphQLRepository,
859
+ },
860
+ {
861
+ provide: ProductHasuraGraphQLRepository,
862
+ useFactory: (hasuraConfig) => {
863
+ return new ProductHasuraGraphQLRepository(hasuraConfig);
864
+ },
865
+ deps: ['HasuraConfig'],
866
+ },
867
+ {
868
+ provide: 'ProductReviewsRepository',
869
+ useExisting: ProductReviewsHasuraGraphQLRepository,
870
+ },
871
+ {
872
+ provide: ProductReviewsHasuraGraphQLRepository,
873
+ useFactory: (hasuraConfig) => {
874
+ return new ProductReviewsHasuraGraphQLRepository(hasuraConfig);
875
+ },
876
+ deps: ['HasuraConfig'],
877
+ },
878
+ {
879
+ provide: 'VariantRepository',
880
+ useExisting: VariantHasuraGraphQLRepository,
881
+ },
882
+ {
883
+ provide: VariantHasuraGraphQLRepository,
884
+ useFactory: (hasuraConfig) => {
885
+ return new VariantHasuraGraphQLRepository(hasuraConfig);
886
+ },
887
+ deps: ['HasuraConfig'],
888
+ },
889
+ {
890
+ provide: 'ProductStockNotificationRepository',
891
+ useExisting: ProductStockNotificationHasuraGraphQLRepository,
892
+ },
893
+ {
894
+ provide: ProductStockNotificationHasuraGraphQLRepository,
895
+ useFactory: (hasuraConfig) => {
896
+ return new ProductStockNotificationHasuraGraphQLRepository(hasuraConfig);
897
+ },
898
+ deps: ['HasuraConfig'],
899
+ },
900
+ {
901
+ provide: 'CategoryFilterRepository',
902
+ useExisting: CategoryFilterHasuraGraphQLRepository,
903
+ },
904
+ {
905
+ provide: CategoryFilterHasuraGraphQLRepository,
906
+ useFactory: (options) => {
907
+ return new CategoryFilterHasuraGraphQLRepository(options);
908
+ },
909
+ deps: ['HasuraConfig'],
910
+ },
911
+ {
912
+ provide: 'FilterOptionRepository',
913
+ useExisting: FilterOptionHasuraGraphQLRepository,
914
+ },
915
+ {
916
+ provide: FilterOptionHasuraGraphQLRepository,
917
+ useFactory: (options) => {
918
+ return new FilterOptionHasuraGraphQLRepository(options);
919
+ },
920
+ deps: ['HasuraConfig'],
921
+ },
922
+ {
923
+ provide: 'FilterRepository',
924
+ useExisting: FilterHasuraGraphQLRepository,
925
+ },
926
+ {
927
+ provide: FilterHasuraGraphQLRepository,
928
+ useFactory: (options, filterOptionRepository, categoryFilterRepository) => {
929
+ return new FilterHasuraGraphQLRepository(options, filterOptionRepository, categoryFilterRepository);
930
+ },
931
+ deps: ['HasuraConfig', FilterOptionHasuraGraphQLRepository, CategoryFilterHasuraGraphQLRepository],
932
+ },
933
+ {
934
+ provide: CategoryCollectionChildrenHasuraGraphQLRepository,
935
+ useFactory: (options) => new CategoryCollectionChildrenHasuraGraphQLRepository(options),
936
+ deps: ['HasuraConfig'],
937
+ },
938
+ {
939
+ provide: 'CategoryCollectionChildrenRepository',
940
+ useExisting: CategoryCollectionChildrenHasuraGraphQLRepository,
941
+ },
942
+ {
943
+ provide: WishlistHasuraGraphQLRepository,
944
+ useFactory: (options, categoryFilterRepository) => {
945
+ return new WishlistHasuraGraphQLRepository(options, categoryFilterRepository);
946
+ },
947
+ deps: ['HasuraConfig', CategoryFilterHasuraGraphQLRepository],
948
+ },
949
+ {
950
+ provide: 'WishlistRepository',
951
+ useExisting: WishlistHasuraGraphQLRepository,
952
+ },
953
+ ],
954
+ }]
955
+ }] });
940
956
 
941
- class CookieDataPersistence {
942
- get(key) {
943
- return of(cookie.get(key));
944
- }
945
- remove(key) {
946
- return of(cookie.remove(key));
947
- }
948
- set(key, value) {
949
- return from(cookie.set(key, value)).pipe(map(() => { }));
950
- }
951
- }
952
- CookieDataPersistence.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
953
- CookieDataPersistence.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence });
954
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence, decorators: [{
955
- type: Injectable
957
+ class CookieDataPersistence {
958
+ get(key) {
959
+ return of(cookie.get(key));
960
+ }
961
+ remove(key) {
962
+ return of(cookie.remove(key));
963
+ }
964
+ set(key, value) {
965
+ return from(cookie.set(key, value)).pipe(map(() => { }));
966
+ }
967
+ }
968
+ CookieDataPersistence.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
969
+ CookieDataPersistence.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence });
970
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CookieDataPersistence, decorators: [{
971
+ type: Injectable
956
972
  }] });
957
973
 
958
- class AuthService {
959
- constructor(angularFireAuth, userRepository) {
960
- this.angularFireAuth = angularFireAuth;
961
- this.userRepository = userRepository;
962
- }
963
- getAuthstate() {
964
- const observables = [this.getFireUser(), this.getUser()];
965
- return combineLatest(observables).pipe(map(([fireUser, user]) => ({
966
- user,
967
- isAnonymous: fireUser === null || fireUser === void 0 ? void 0 : fireUser.isAnonymous,
968
- })));
969
- }
970
- getUser() {
971
- return this.getFireUser().pipe(map((user) => user === null || user === void 0 ? void 0 : user.uid), mergeMap((id) => (id ? from(this.userRepository.get({ id })).pipe(catchError(() => of(null))) : of(null))));
972
- }
973
- getTokenId() {
974
- return from(getIdToken(this.angularFireAuth.currentUser));
975
- }
976
- getFireUser() {
977
- return authState(this.angularFireAuth).pipe(catchError(() => of(null)));
978
- }
979
- }
980
- AuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService, deps: [{ token: i1.Auth }, { token: 'UserRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
981
- AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService });
982
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService, decorators: [{
983
- type: Injectable
984
- }], ctorParameters: function () {
985
- return [{ type: i1.Auth }, { type: undefined, decorators: [{
986
- type: Inject,
987
- args: ['UserRepository']
988
- }] }];
974
+ class AuthService {
975
+ constructor(angularFireAuth, userRepository) {
976
+ this.angularFireAuth = angularFireAuth;
977
+ this.userRepository = userRepository;
978
+ }
979
+ getAuthstate() {
980
+ const observables = [this.getFireUser(), this.getUser()];
981
+ return combineLatest(observables).pipe(map(([fireUser, user]) => ({
982
+ user,
983
+ isAnonymous: fireUser === null || fireUser === void 0 ? void 0 : fireUser.isAnonymous,
984
+ })));
985
+ }
986
+ getUser() {
987
+ return this.getFireUser().pipe(map((user) => user === null || user === void 0 ? void 0 : user.uid), mergeMap((id) => (id ? from(this.userRepository.get({ id })).pipe(catchError(() => of(null))) : of(null))));
988
+ }
989
+ getTokenId() {
990
+ return from(getIdToken(this.angularFireAuth.currentUser));
991
+ }
992
+ getFireUser() {
993
+ return authState(this.angularFireAuth).pipe(catchError(() => of(null)));
994
+ }
995
+ }
996
+ AuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService, deps: [{ token: i1.Auth }, { token: 'UserRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
997
+ AuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService });
998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AuthService, decorators: [{
999
+ type: Injectable
1000
+ }], ctorParameters: function () {
1001
+ return [{ type: i1.Auth }, { type: undefined, decorators: [{
1002
+ type: Inject,
1003
+ args: ['UserRepository']
1004
+ }] }];
989
1005
  } });
990
1006
 
991
- class CouponService {
992
- constructor(couponRepository, defaultShop, orderRepository, categoryRepository) {
993
- this.couponRepository = couponRepository;
994
- this.defaultShop = defaultShop;
995
- this.orderRepository = orderRepository;
996
- this.categoryRepository = categoryRepository;
997
- this.emailIsFromCollaborator = (userEmail) => !!(userEmail === null || userEmail === void 0 ? void 0 : userEmail.match(/@b4a.com.br/g));
998
- }
999
- checkCoupon(nickname, checkoutType, checkout, plan) {
1000
- return from(this.couponRepository
1001
- .find({
1002
- filters: {
1003
- nickname: { operator: Where.EQUALS, value: nickname },
1004
- active: { operator: Where.EQUALS, value: true },
1005
- },
1006
- })
1007
- .then((result) => result.data[0])).pipe(concatMap((coupon) => this.couponValidation(coupon, checkoutType)), concatMap((couponValid) => this.couponRulesValidation(couponValid, checkoutType, checkout, plan)), map((couponValidated) => couponValidated));
1008
- }
1009
- couponValidation(coupon, checkoutType) {
1010
- return __awaiter(this, void 0, void 0, function* () {
1011
- if (!coupon)
1012
- throw 'Cupom inválido.';
1013
- if ((coupon === null || coupon === void 0 ? void 0 : coupon.beginAt) && (coupon === null || coupon === void 0 ? void 0 : coupon.beginAt.getTime()) > new Date().getTime())
1014
- throw 'Cupom inválido.';
1015
- if ((coupon === null || coupon === void 0 ? void 0 : coupon.expiresIn) && (coupon === null || coupon === void 0 ? void 0 : coupon.expiresIn.getTime()) < new Date().getTime())
1016
- throw 'Cupom expirado.';
1017
- const isInShop = coupon.shopAvailability === Shops.ALL || coupon.shopAvailability === this.defaultShop;
1018
- if (!isInShop)
1019
- throw 'Cupom inválido para loja.';
1020
- const isCheckoutType = coupon.checkoutType === CheckoutTypes.ALL || coupon.checkoutType === checkoutType;
1021
- if (!isCheckoutType)
1022
- throw 'Cupom inválido. Erro de checkout.';
1023
- return coupon;
1024
- });
1025
- }
1026
- couponRulesValidation(coupon, checkoutType, checkout, plan) {
1027
- return __awaiter(this, void 0, void 0, function* () {
1028
- if (checkoutType == CheckoutTypes.SUBSCRIPTION) {
1029
- if (coupon.plan && coupon.plan.toUpperCase() !== plan.toUpperCase())
1030
- throw 'Cupom inválido para sua assinatura.';
1031
- return coupon;
1032
- }
1033
- const validUser = this.coupomUserValidation(coupon, checkout === null || checkout === void 0 ? void 0 : checkout.user);
1034
- if (!validUser)
1035
- throw 'Usuário não elegível.';
1036
- const couponUseLimits = this.getCouponUseLimits(coupon, checkoutType, checkout.user);
1037
- if (couponUseLimits.firstOrder) {
1038
- const ordersUser = yield this.getOrdersFromUser(checkout.user.email.toLocaleLowerCase());
1039
- if (couponUseLimits.firstOrder && ordersUser.length >= 1)
1040
- throw 'Limite de uso atingido';
1041
- }
1042
- if (!couponUseLimits.unlimited || couponUseLimits.limitedPerUser) {
1043
- const orders = yield this.getOrdersWithCoupon(coupon);
1044
- if (!couponUseLimits.unlimited && couponUseLimits.total && orders.length >= couponUseLimits.total)
1045
- throw 'Limite de uso atingido.';
1046
- if (couponUseLimits.limitedPerUser) {
1047
- const ordersWithUser = this.countOrdersWithUser(orders, checkout.user.email);
1048
- if (ordersWithUser > 0)
1049
- throw 'Limite de uso por usuário atingido.';
1050
- }
1051
- }
1052
- const hasProductCategories = yield this.hasProductCategories(coupon, checkout);
1053
- if (!hasProductCategories)
1054
- throw 'Seu carrinho não possui produtos elegíveis para desconto.';
1055
- const hasMinSubTotal = yield this.hasMinSubTotal(coupon, checkout);
1056
- if (!hasMinSubTotal)
1057
- throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido`;
1058
- return coupon;
1059
- });
1060
- }
1061
- calcDiscountSubscription(coupon, checkout) {
1062
- let discount = 0;
1063
- if (coupon.discount.subscription.type == CouponTypes.ABSOLUTE)
1064
- discount = coupon.discount.subscription.value;
1065
- else
1066
- discount = checkout.subscriptionPlan.recurrencePrice * (coupon.discount.subscription.value / 100);
1067
- return of(discount);
1068
- }
1069
- calcDiscountShopping(coupon, checkout) {
1070
- return __awaiter(this, void 0, void 0, function* () {
1071
- let discountInfo = null;
1072
- if (checkout.user.isSubscriber && coupon.discount.subscriber.value) {
1073
- discountInfo = yield this.calcDiscountByType(coupon.discount.subscriber.type, coupon.discount.subscriber.value, coupon.productsCategories, checkout);
1074
- }
1075
- else {
1076
- discountInfo = yield this.calcDiscountByType(coupon.discount.non_subscriber.type, coupon.discount.non_subscriber.value, coupon.productsCategories, checkout);
1077
- }
1078
- return { discount: discountInfo.discount, lineItems: discountInfo.lineItems };
1079
- });
1080
- }
1081
- calcDiscountByType(type, value, categories, checkout) {
1082
- return __awaiter(this, void 0, void 0, function* () {
1083
- let discount = 0;
1084
- let lineItensElegibleForDiscount = yield this.getLineItensEligebleForDiscount(categories, checkout);
1085
- const subTotal = this.calcCheckoutSubtotal(lineItensElegibleForDiscount, checkout.user);
1086
- if (type == CouponTypes.ABSOLUTE) {
1087
- discount = value > subTotal ? subTotal : value;
1088
- }
1089
- else {
1090
- discount = subTotal * (value / 100);
1091
- }
1092
- const lineItems = this.calcLineItenDiscount(type, lineItensElegibleForDiscount, value, subTotal);
1093
- return { discount, lineItems };
1094
- });
1095
- }
1096
- hasMinSubTotal(coupon, checkout) {
1097
- return __awaiter(this, void 0, void 0, function* () {
1098
- if (!coupon.minSubTotalValue)
1099
- return true;
1100
- let lineItensDiscount = yield this.getLineItensEligebleForDiscount(coupon.productsCategories, checkout);
1101
- const subTotal = this.calcCheckoutSubtotal(lineItensDiscount, checkout.user);
1102
- if (coupon.minSubTotalValue <= subTotal)
1103
- return true;
1104
- return false;
1105
- });
1106
- }
1107
- hasProductCategories(coupon, checkout) {
1108
- var _a;
1109
- return __awaiter(this, void 0, void 0, function* () {
1110
- if (!coupon.productsCategories || !coupon.productsCategories.length) {
1111
- return true;
1112
- }
1113
- const couponCategories = yield this.getCouponCategoriesId(coupon.productsCategories);
1114
- const hasCategories = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.filter((i) => {
1115
- var _a;
1116
- if (!i.categories || !((_a = i.categories) === null || _a === void 0 ? void 0 : _a.length))
1117
- return true;
1118
- return i.categories.some((c) => couponCategories.some((cat) => cat == c));
1119
- });
1120
- return hasCategories.length ? true : false;
1121
- });
1122
- }
1123
- coupomUserValidation(coupon, user) {
1124
- if (!user || coupon.exclusivityType.includes(Exclusivities.ALL_USERS))
1125
- return true;
1126
- let userTypes = [];
1127
- if (coupon.exclusivityType.includes(Exclusivities.COLLABORATORS) &&
1128
- this.emailIsFromCollaborator(user.email.toLocaleLowerCase()))
1129
- userTypes.push(Exclusivities.COLLABORATORS);
1130
- if (coupon.exclusivityType.includes(Exclusivities.SPECIFIC_USER) &&
1131
- coupon.userExclusiveEmail.includes(user.email.toLocaleLowerCase()))
1132
- userTypes.push(Exclusivities.SPECIFIC_USER);
1133
- if (coupon.exclusivityType.includes(Exclusivities.ACTIVE_SUBSCRIBER) &&
1134
- user.isSubscriber &&
1135
- user.subscriptionPlan != '')
1136
- userTypes.push(Exclusivities.ACTIVE_SUBSCRIBER);
1137
- if (user.isSubscriber &&
1138
- user.subscriptionPlan == '' &&
1139
- coupon.exclusivityType.includes(Exclusivities.INACTIVE_SUBSCRIBER))
1140
- userTypes.push(Exclusivities.INACTIVE_SUBSCRIBER);
1141
- if (coupon.exclusivityType.includes(Exclusivities.NON_SUBSCRIBER) && !user.isSubscriber)
1142
- userTypes.push(Exclusivities.NON_SUBSCRIBER);
1143
- return coupon.exclusivityType.some((r) => userTypes.includes(r));
1144
- }
1145
- getCouponCategoriesId(productsCategories) {
1146
- return __awaiter(this, void 0, void 0, function* () {
1147
- const couponCategories = [];
1148
- for (let index = 0; index < productsCategories.length; index++) {
1149
- const category = yield this.categoryRepository.get({
1150
- id: productsCategories[index],
1151
- });
1152
- if (category) {
1153
- const children = yield this.categoryRepository.getChildren(parseInt(productsCategories[index]));
1154
- couponCategories.push(category.id, ...children.map((c) => c.id.toString()));
1155
- }
1156
- }
1157
- return [...new Set(couponCategories)];
1158
- });
1159
- }
1160
- getLineItensEligebleForDiscount(productsCategories, checkout) {
1161
- var _a;
1162
- return __awaiter(this, void 0, void 0, function* () {
1163
- let lineItensDiscount = [];
1164
- const couponCategories = yield this.getCouponCategoriesId(productsCategories);
1165
- if (productsCategories && productsCategories.length) {
1166
- lineItensDiscount = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.filter((i) => {
1167
- var _a;
1168
- if ((_a = i.categories) === null || _a === void 0 ? void 0 : _a.length) {
1169
- return i.categories.some((c) => couponCategories.some((cat) => cat == c));
1170
- }
1171
- return true;
1172
- });
1173
- }
1174
- else {
1175
- lineItensDiscount = checkout.lineItems;
1176
- }
1177
- return lineItensDiscount;
1178
- });
1179
- }
1180
- calcCheckoutSubtotal(lineItens, user) {
1181
- return ((lineItens === null || lineItens === void 0 ? void 0 : lineItens.reduce((acc, curr) => {
1182
- var _a;
1183
- return (user === null || user === void 0 ? void 0 : user.isSubscriber) && curr.price.subscriberPrice
1184
- ? acc + ((_a = curr.price) === null || _a === void 0 ? void 0 : _a.subscriberPrice) * curr.quantity
1185
- : acc + curr.pricePaid * curr.quantity;
1186
- }, 0)) || 0);
1187
- }
1188
- getOrdersWithCoupon(coupon) {
1189
- return __awaiter(this, void 0, void 0, function* () {
1190
- return yield this.orderRepository
1191
- .find({
1192
- filters: {
1193
- coupon: { id: coupon.id },
1194
- payment: { status: 'paid' },
1195
- },
1196
- })
1197
- .then((result) => result.data);
1198
- });
1199
- }
1200
- getOrdersFromUser(email) {
1201
- return __awaiter(this, void 0, void 0, function* () {
1202
- return yield this.orderRepository
1203
- .find({
1204
- filters: {
1205
- user: { email: { operator: Where.EQUALS, value: email } },
1206
- payment: { status: 'paid' },
1207
- },
1208
- })
1209
- .then((result) => result.data);
1210
- });
1211
- }
1212
- countOrdersWithUser(orders, email) {
1213
- return orders.filter((o) => o.user.email == email).length;
1214
- }
1215
- getCouponUseLimits(coupon, checkoutType, user) {
1216
- let couponUseLimits;
1217
- if (checkoutType == CheckoutTypes.ECOMMERCE || checkoutType == CheckoutTypes.ALL) {
1218
- couponUseLimits = user && user.isSubscriber ? coupon.useLimits.subscriber : coupon.useLimits.non_subscriber;
1219
- }
1220
- else {
1221
- couponUseLimits = coupon.useLimits.subscription;
1222
- }
1223
- return couponUseLimits;
1224
- }
1225
- calcLineItenDiscount(type, lineItems, couponDiscount, subTotal) {
1226
- let lineItemsDiscount = [];
1227
- if (type === CouponTypes.ABSOLUTE) {
1228
- const couponDiscountMax = couponDiscount > subTotal ? subTotal : couponDiscount;
1229
- lineItemsDiscount = lineItems.map((item) => {
1230
- const totalItemPercentage = item.pricePaid / subTotal;
1231
- const discountItem = couponDiscountMax * totalItemPercentage;
1232
- return Object.assign(Object.assign({}, item), { discount: Number(discountItem.toFixed(2)) });
1233
- });
1234
- }
1235
- else {
1236
- lineItemsDiscount = lineItems.map((item) => {
1237
- const discountItem = item.pricePaid * (couponDiscount / 100);
1238
- return Object.assign(Object.assign({}, item), { discount: Number(discountItem.toFixed(2)) });
1239
- });
1240
- }
1241
- return lineItemsDiscount;
1242
- }
1243
- }
1244
- CouponService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, deps: [{ token: 'CouponRepository' }, { token: DEFAULT_SHOP }, { token: 'OrderRepository' }, { token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1245
- CouponService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, providedIn: 'root' });
1246
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, decorators: [{
1247
- type: Injectable,
1248
- args: [{
1249
- providedIn: 'root',
1250
- }]
1251
- }], ctorParameters: function () {
1252
- return [{ type: undefined, decorators: [{
1253
- type: Inject,
1254
- args: ['CouponRepository']
1255
- }] }, { type: i1$2.Shops, decorators: [{
1256
- type: Inject,
1257
- args: [DEFAULT_SHOP]
1258
- }] }, { type: undefined, decorators: [{
1259
- type: Inject,
1260
- args: ['OrderRepository']
1261
- }] }, { type: undefined, decorators: [{
1262
- type: Inject,
1263
- args: ['CategoryRepository']
1264
- }] }];
1007
+ class CouponService {
1008
+ constructor(couponRepository, defaultShop, orderRepository, categoryRepository) {
1009
+ this.couponRepository = couponRepository;
1010
+ this.defaultShop = defaultShop;
1011
+ this.orderRepository = orderRepository;
1012
+ this.categoryRepository = categoryRepository;
1013
+ this.emailIsFromCollaborator = (userEmail) => !!(userEmail === null || userEmail === void 0 ? void 0 : userEmail.match(/@b4a.com.br/g));
1014
+ }
1015
+ checkCoupon(nickname, checkoutType, checkout, plan) {
1016
+ return from(this.couponRepository
1017
+ .find({
1018
+ filters: {
1019
+ nickname: { operator: Where.EQUALS, value: nickname },
1020
+ active: { operator: Where.EQUALS, value: true },
1021
+ },
1022
+ })
1023
+ .then((result) => result.data[0])).pipe(concatMap((coupon) => this.couponValidation(coupon, checkoutType)), concatMap((couponValid) => this.couponRulesValidation(couponValid, checkoutType, checkout, plan)), map((couponValidated) => couponValidated));
1024
+ }
1025
+ couponValidation(coupon, checkoutType) {
1026
+ return __awaiter(this, void 0, void 0, function* () {
1027
+ if (!coupon)
1028
+ throw 'Cupom inválido.';
1029
+ if ((coupon === null || coupon === void 0 ? void 0 : coupon.beginAt) && (coupon === null || coupon === void 0 ? void 0 : coupon.beginAt.getTime()) > new Date().getTime())
1030
+ throw 'Cupom inválido.';
1031
+ if ((coupon === null || coupon === void 0 ? void 0 : coupon.expiresIn) && (coupon === null || coupon === void 0 ? void 0 : coupon.expiresIn.getTime()) < new Date().getTime())
1032
+ throw 'Cupom expirado.';
1033
+ const isInShop = coupon.shopAvailability === Shops.ALL || coupon.shopAvailability === this.defaultShop;
1034
+ if (!isInShop)
1035
+ throw 'Cupom inválido para loja.';
1036
+ const isCheckoutType = coupon.checkoutType === CheckoutTypes.ALL || coupon.checkoutType === checkoutType;
1037
+ if (!isCheckoutType)
1038
+ throw 'Cupom inválido. Erro de checkout.';
1039
+ return coupon;
1040
+ });
1041
+ }
1042
+ couponRulesValidation(coupon, checkoutType, checkout, plan) {
1043
+ return __awaiter(this, void 0, void 0, function* () {
1044
+ if (checkoutType == CheckoutTypes.SUBSCRIPTION) {
1045
+ if (coupon.plan && coupon.plan.toUpperCase() !== plan.toUpperCase())
1046
+ throw 'Cupom inválido para sua assinatura.';
1047
+ return coupon;
1048
+ }
1049
+ const validUser = this.coupomUserValidation(coupon, checkout === null || checkout === void 0 ? void 0 : checkout.user);
1050
+ if (!validUser)
1051
+ throw 'Usuário não elegível.';
1052
+ const couponUseLimits = this.getCouponUseLimits(coupon, checkoutType, checkout.user);
1053
+ if (couponUseLimits.firstOrder) {
1054
+ const ordersUser = yield this.getOrdersFromUser(checkout.user.email.toLocaleLowerCase());
1055
+ if (couponUseLimits.firstOrder && ordersUser.length >= 1)
1056
+ throw 'Limite de uso atingido';
1057
+ }
1058
+ if (!couponUseLimits.unlimited || couponUseLimits.limitedPerUser) {
1059
+ const orders = yield this.getOrdersWithCoupon(coupon);
1060
+ if (!couponUseLimits.unlimited && couponUseLimits.total && orders.length >= couponUseLimits.total)
1061
+ throw 'Limite de uso atingido.';
1062
+ if (couponUseLimits.limitedPerUser) {
1063
+ const ordersWithUser = this.countOrdersWithUser(orders, checkout.user.email);
1064
+ if (ordersWithUser > 0)
1065
+ throw 'Limite de uso por usuário atingido.';
1066
+ }
1067
+ }
1068
+ const hasProductCategories = yield this.hasProductCategories(coupon, checkout);
1069
+ if (!hasProductCategories)
1070
+ throw 'Seu carrinho não possui produtos elegíveis para desconto.';
1071
+ const hasMinSubTotal = yield this.hasMinSubTotal(coupon, checkout);
1072
+ if (!hasMinSubTotal)
1073
+ throw `Valor mínimo de ${Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(coupon.minSubTotalValue)} não atingido`;
1074
+ return coupon;
1075
+ });
1076
+ }
1077
+ calcDiscountSubscription(coupon, checkout) {
1078
+ let discount = 0;
1079
+ if (coupon.discount.subscription.type == CouponTypes.ABSOLUTE)
1080
+ discount = coupon.discount.subscription.value;
1081
+ else
1082
+ discount = checkout.subscriptionPlan.recurrencePrice * (coupon.discount.subscription.value / 100);
1083
+ return of(discount);
1084
+ }
1085
+ calcDiscountShopping(coupon, checkout) {
1086
+ return __awaiter(this, void 0, void 0, function* () {
1087
+ let discountInfo = null;
1088
+ if (checkout.user.isSubscriber && coupon.discount.subscriber.value) {
1089
+ discountInfo = yield this.calcDiscountByType(coupon.discount.subscriber.type, coupon.discount.subscriber.value, coupon.productsCategories, checkout);
1090
+ }
1091
+ else {
1092
+ discountInfo = yield this.calcDiscountByType(coupon.discount.non_subscriber.type, coupon.discount.non_subscriber.value, coupon.productsCategories, checkout);
1093
+ }
1094
+ return { discount: discountInfo.discount, lineItems: discountInfo.lineItems };
1095
+ });
1096
+ }
1097
+ calcDiscountByType(type, value, categories, checkout) {
1098
+ return __awaiter(this, void 0, void 0, function* () {
1099
+ let discount = 0;
1100
+ let lineItensElegibleForDiscount = yield this.getLineItensEligebleForDiscount(categories, checkout);
1101
+ const subTotal = this.calcCheckoutSubtotal(lineItensElegibleForDiscount, checkout.user);
1102
+ if (type == CouponTypes.ABSOLUTE) {
1103
+ discount = value > subTotal ? subTotal : value;
1104
+ }
1105
+ else {
1106
+ discount = subTotal * (value / 100);
1107
+ }
1108
+ const lineItems = this.calcLineItenDiscount(type, lineItensElegibleForDiscount, value, subTotal);
1109
+ return { discount, lineItems };
1110
+ });
1111
+ }
1112
+ hasMinSubTotal(coupon, checkout) {
1113
+ return __awaiter(this, void 0, void 0, function* () {
1114
+ if (!coupon.minSubTotalValue)
1115
+ return true;
1116
+ let lineItensDiscount = yield this.getLineItensEligebleForDiscount(coupon.productsCategories, checkout);
1117
+ const subTotal = this.calcCheckoutSubtotal(lineItensDiscount, checkout.user);
1118
+ if (coupon.minSubTotalValue <= subTotal)
1119
+ return true;
1120
+ return false;
1121
+ });
1122
+ }
1123
+ hasProductCategories(coupon, checkout) {
1124
+ var _a;
1125
+ return __awaiter(this, void 0, void 0, function* () {
1126
+ if (!coupon.productsCategories || !coupon.productsCategories.length) {
1127
+ return true;
1128
+ }
1129
+ const couponCategories = yield this.getCouponCategoriesId(coupon.productsCategories);
1130
+ const hasCategories = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.filter((i) => {
1131
+ var _a;
1132
+ if (!i.categories || !((_a = i.categories) === null || _a === void 0 ? void 0 : _a.length))
1133
+ return true;
1134
+ return i.categories.some((c) => couponCategories.some((cat) => cat == c));
1135
+ });
1136
+ return hasCategories.length ? true : false;
1137
+ });
1138
+ }
1139
+ coupomUserValidation(coupon, user) {
1140
+ if (!user || coupon.exclusivityType.includes(Exclusivities.ALL_USERS))
1141
+ return true;
1142
+ let userTypes = [];
1143
+ if (coupon.exclusivityType.includes(Exclusivities.COLLABORATORS) &&
1144
+ this.emailIsFromCollaborator(user.email.toLocaleLowerCase()))
1145
+ userTypes.push(Exclusivities.COLLABORATORS);
1146
+ if (coupon.exclusivityType.includes(Exclusivities.SPECIFIC_USER) &&
1147
+ coupon.userExclusiveEmail.includes(user.email.toLocaleLowerCase()))
1148
+ userTypes.push(Exclusivities.SPECIFIC_USER);
1149
+ if (coupon.exclusivityType.includes(Exclusivities.ACTIVE_SUBSCRIBER) &&
1150
+ user.isSubscriber &&
1151
+ user.subscriptionPlan != '')
1152
+ userTypes.push(Exclusivities.ACTIVE_SUBSCRIBER);
1153
+ if (user.isSubscriber &&
1154
+ user.subscriptionPlan == '' &&
1155
+ coupon.exclusivityType.includes(Exclusivities.INACTIVE_SUBSCRIBER))
1156
+ userTypes.push(Exclusivities.INACTIVE_SUBSCRIBER);
1157
+ if (coupon.exclusivityType.includes(Exclusivities.NON_SUBSCRIBER) && !user.isSubscriber)
1158
+ userTypes.push(Exclusivities.NON_SUBSCRIBER);
1159
+ return coupon.exclusivityType.some((r) => userTypes.includes(r));
1160
+ }
1161
+ getCouponCategoriesId(productsCategories) {
1162
+ return __awaiter(this, void 0, void 0, function* () {
1163
+ const couponCategories = [];
1164
+ for (let index = 0; index < productsCategories.length; index++) {
1165
+ const category = yield this.categoryRepository.get({
1166
+ id: productsCategories[index],
1167
+ });
1168
+ if (category) {
1169
+ const children = yield this.categoryRepository.getChildren(parseInt(productsCategories[index]));
1170
+ couponCategories.push(category.id, ...children.map((c) => c.id.toString()));
1171
+ }
1172
+ }
1173
+ return [...new Set(couponCategories)];
1174
+ });
1175
+ }
1176
+ getLineItensEligebleForDiscount(productsCategories, checkout) {
1177
+ var _a;
1178
+ return __awaiter(this, void 0, void 0, function* () {
1179
+ let lineItensDiscount = [];
1180
+ const couponCategories = yield this.getCouponCategoriesId(productsCategories);
1181
+ if (productsCategories && productsCategories.length) {
1182
+ lineItensDiscount = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.filter((i) => {
1183
+ var _a;
1184
+ if ((_a = i.categories) === null || _a === void 0 ? void 0 : _a.length) {
1185
+ return i.categories.some((c) => couponCategories.some((cat) => cat == c));
1186
+ }
1187
+ return true;
1188
+ });
1189
+ }
1190
+ else {
1191
+ lineItensDiscount = checkout.lineItems;
1192
+ }
1193
+ return lineItensDiscount;
1194
+ });
1195
+ }
1196
+ calcCheckoutSubtotal(lineItens, user) {
1197
+ return ((lineItens === null || lineItens === void 0 ? void 0 : lineItens.reduce((acc, curr) => {
1198
+ var _a;
1199
+ return (user === null || user === void 0 ? void 0 : user.isSubscriber) && curr.price.subscriberPrice
1200
+ ? acc + ((_a = curr.price) === null || _a === void 0 ? void 0 : _a.subscriberPrice) * curr.quantity
1201
+ : acc + curr.pricePaid * curr.quantity;
1202
+ }, 0)) || 0);
1203
+ }
1204
+ getOrdersWithCoupon(coupon) {
1205
+ return __awaiter(this, void 0, void 0, function* () {
1206
+ return yield this.orderRepository
1207
+ .find({
1208
+ filters: {
1209
+ coupon: { id: coupon.id },
1210
+ payment: { status: 'paid' },
1211
+ },
1212
+ })
1213
+ .then((result) => result.data);
1214
+ });
1215
+ }
1216
+ getOrdersFromUser(email) {
1217
+ return __awaiter(this, void 0, void 0, function* () {
1218
+ return yield this.orderRepository
1219
+ .find({
1220
+ filters: {
1221
+ user: { email: { operator: Where.EQUALS, value: email } },
1222
+ payment: { status: 'paid' },
1223
+ },
1224
+ })
1225
+ .then((result) => result.data);
1226
+ });
1227
+ }
1228
+ countOrdersWithUser(orders, email) {
1229
+ return orders.filter((o) => o.user.email == email).length;
1230
+ }
1231
+ getCouponUseLimits(coupon, checkoutType, user) {
1232
+ let couponUseLimits;
1233
+ if (checkoutType == CheckoutTypes.ECOMMERCE || checkoutType == CheckoutTypes.ALL) {
1234
+ couponUseLimits = user && user.isSubscriber ? coupon.useLimits.subscriber : coupon.useLimits.non_subscriber;
1235
+ }
1236
+ else {
1237
+ couponUseLimits = coupon.useLimits.subscription;
1238
+ }
1239
+ return couponUseLimits;
1240
+ }
1241
+ calcLineItenDiscount(type, lineItems, couponDiscount, subTotal) {
1242
+ let lineItemsDiscount = [];
1243
+ if (type === CouponTypes.ABSOLUTE) {
1244
+ const couponDiscountMax = couponDiscount > subTotal ? subTotal : couponDiscount;
1245
+ lineItemsDiscount = lineItems.map((item) => {
1246
+ const totalItemPercentage = item.pricePaid / subTotal;
1247
+ const discountItem = couponDiscountMax * totalItemPercentage;
1248
+ return Object.assign(Object.assign({}, item), { discount: Number(discountItem.toFixed(2)) });
1249
+ });
1250
+ }
1251
+ else {
1252
+ lineItemsDiscount = lineItems.map((item) => {
1253
+ const discountItem = item.pricePaid * (couponDiscount / 100);
1254
+ return Object.assign(Object.assign({}, item), { discount: Number(discountItem.toFixed(2)) });
1255
+ });
1256
+ }
1257
+ return lineItemsDiscount;
1258
+ }
1259
+ }
1260
+ CouponService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, deps: [{ token: 'CouponRepository' }, { token: DEFAULT_SHOP }, { token: 'OrderRepository' }, { token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1261
+ CouponService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, providedIn: 'root' });
1262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CouponService, decorators: [{
1263
+ type: Injectable,
1264
+ args: [{
1265
+ providedIn: 'root',
1266
+ }]
1267
+ }], ctorParameters: function () {
1268
+ return [{ type: undefined, decorators: [{
1269
+ type: Inject,
1270
+ args: ['CouponRepository']
1271
+ }] }, { type: i1$2.Shops, decorators: [{
1272
+ type: Inject,
1273
+ args: [DEFAULT_SHOP]
1274
+ }] }, { type: undefined, decorators: [{
1275
+ type: Inject,
1276
+ args: ['OrderRepository']
1277
+ }] }, { type: undefined, decorators: [{
1278
+ type: Inject,
1279
+ args: ['CategoryRepository']
1280
+ }] }];
1265
1281
  } });
1266
1282
 
1267
- class CheckoutService {
1268
- constructor(couponService, checkoutRepository, userRepository, defaultShop, dataPersistence) {
1269
- this.couponService = couponService;
1270
- this.checkoutRepository = checkoutRepository;
1271
- this.userRepository = userRepository;
1272
- this.defaultShop = defaultShop;
1273
- this.dataPersistence = dataPersistence;
1274
- }
1275
- getCheckout(checkoutData) {
1276
- return this.dataPersistence
1277
- .get('checkoutId')
1278
- .pipe(concatMap((id) => (!isNil(id) ? this.checkoutRepository.get({ id }) : this.createCheckout(checkoutData))));
1279
- }
1280
- getUserByCheckout(checkoutId) {
1281
- return from(this.checkoutRepository.get({ id: checkoutId })).pipe(concatMap((checkout) => { var _a; return ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.user) === null || _a === void 0 ? void 0 : _a.id) ? of(checkout.user) : from(this.userRepository.get({ id: checkout.user.id })); }), concatMap((user) => of(user) || throwError(() => new NotFoundError('User is not found'))));
1282
- }
1283
- updateCheckoutLineItems(checkout) {
1284
- return from(this.checkoutRepository.update(Checkout.toInstance({ id: checkout.id, lineItems: checkout.lineItems })));
1285
- }
1286
- updateCheckoutUser(checkout) {
1287
- return from(this.checkoutRepository.update(Checkout.toInstance({ id: checkout.id, user: checkout.user })));
1288
- }
1289
- clearCheckoutFromSession() {
1290
- return this.dataPersistence.remove('checkoutId');
1291
- }
1292
- calcDiscount(coupon) {
1293
- return this.getCheckout().pipe(concatMap((checkout) => __awaiter(this, void 0, void 0, function* () { return yield this.couponService.calcDiscountShopping(coupon, checkout); })));
1294
- }
1295
- checkCoupon(nickname, checkoutType) {
1296
- return this.getCheckout().pipe(concatMap((checkout) => this.couponService.checkCoupon(nickname, CheckoutTypes.ECOMMERCE, checkout, null).pipe()));
1297
- }
1298
- createCheckout(checkoutData) {
1299
- return __awaiter(this, void 0, void 0, function* () {
1300
- const checkout = yield this.checkoutRepository.create(Object.assign(Object.assign({ createdAt: new Date() }, Checkout.toInstance(pick(checkoutData, ['user', 'shop'])).toPlain()), { shop: (checkoutData === null || checkoutData === void 0 ? void 0 : checkoutData.shop) || this.defaultShop }));
1301
- yield this.dataPersistence.set('checkoutId', checkout.id).toPromise();
1302
- return checkout;
1303
- });
1304
- }
1305
- }
1306
- CheckoutService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService, deps: [{ token: CouponService }, { token: 'CheckoutRepository' }, { token: 'UserRepository' }, { token: DEFAULT_SHOP }, { token: PERSISTENCE_PROVIDER }], target: i0.ɵɵFactoryTarget.Injectable });
1307
- CheckoutService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService });
1308
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService, decorators: [{
1309
- type: Injectable
1310
- }], ctorParameters: function () {
1311
- return [{ type: CouponService }, { type: undefined, decorators: [{
1312
- type: Inject,
1313
- args: ['CheckoutRepository']
1314
- }] }, { type: undefined, decorators: [{
1315
- type: Inject,
1316
- args: ['UserRepository']
1317
- }] }, { type: i1$2.Shops, decorators: [{
1318
- type: Inject,
1319
- args: [DEFAULT_SHOP]
1320
- }] }, { type: undefined, decorators: [{
1321
- type: Inject,
1322
- args: [PERSISTENCE_PROVIDER]
1323
- }] }];
1283
+ class CheckoutService {
1284
+ constructor(couponService, checkoutRepository, userRepository, defaultShop, dataPersistence) {
1285
+ this.couponService = couponService;
1286
+ this.checkoutRepository = checkoutRepository;
1287
+ this.userRepository = userRepository;
1288
+ this.defaultShop = defaultShop;
1289
+ this.dataPersistence = dataPersistence;
1290
+ }
1291
+ getCheckout(checkoutData) {
1292
+ return this.dataPersistence
1293
+ .get('checkoutId')
1294
+ .pipe(concatMap((id) => (!isNil(id) ? this.checkoutRepository.get({ id }) : this.createCheckout(checkoutData))));
1295
+ }
1296
+ getUserByCheckout(checkoutId) {
1297
+ return from(this.checkoutRepository.get({ id: checkoutId })).pipe(concatMap((checkout) => { var _a; return ((_a = checkout === null || checkout === void 0 ? void 0 : checkout.user) === null || _a === void 0 ? void 0 : _a.id) ? of(checkout.user) : from(this.userRepository.get({ id: checkout.user.id })); }), concatMap((user) => of(user) || throwError(() => new NotFoundError('User is not found'))));
1298
+ }
1299
+ updateCheckoutLineItems(checkout) {
1300
+ return from(this.checkoutRepository.update(Checkout.toInstance({ id: checkout.id, lineItems: checkout.lineItems })));
1301
+ }
1302
+ updateCheckoutUser(checkout) {
1303
+ return from(this.checkoutRepository.update(Checkout.toInstance({ id: checkout.id, user: checkout.user })));
1304
+ }
1305
+ clearCheckoutFromSession() {
1306
+ return this.dataPersistence.remove('checkoutId');
1307
+ }
1308
+ calcDiscount(coupon) {
1309
+ return this.getCheckout().pipe(concatMap((checkout) => __awaiter(this, void 0, void 0, function* () { return yield this.couponService.calcDiscountShopping(coupon, checkout); })));
1310
+ }
1311
+ checkCoupon(nickname, checkoutType) {
1312
+ return this.getCheckout().pipe(concatMap((checkout) => this.couponService.checkCoupon(nickname, CheckoutTypes.ECOMMERCE, checkout, null).pipe()));
1313
+ }
1314
+ createCheckout(checkoutData) {
1315
+ return __awaiter(this, void 0, void 0, function* () {
1316
+ const checkout = yield this.checkoutRepository.create(Object.assign(Object.assign({ createdAt: new Date() }, Checkout.toInstance(pick(checkoutData, ['user', 'shop'])).toPlain()), { shop: (checkoutData === null || checkoutData === void 0 ? void 0 : checkoutData.shop) || this.defaultShop }));
1317
+ yield this.dataPersistence.set('checkoutId', checkout.id).toPromise();
1318
+ return checkout;
1319
+ });
1320
+ }
1321
+ }
1322
+ CheckoutService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService, deps: [{ token: CouponService }, { token: 'CheckoutRepository' }, { token: 'UserRepository' }, { token: DEFAULT_SHOP }, { token: PERSISTENCE_PROVIDER }], target: i0.ɵɵFactoryTarget.Injectable });
1323
+ CheckoutService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService });
1324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutService, decorators: [{
1325
+ type: Injectable
1326
+ }], ctorParameters: function () {
1327
+ return [{ type: CouponService }, { type: undefined, decorators: [{
1328
+ type: Inject,
1329
+ args: ['CheckoutRepository']
1330
+ }] }, { type: undefined, decorators: [{
1331
+ type: Inject,
1332
+ args: ['UserRepository']
1333
+ }] }, { type: i1$2.Shops, decorators: [{
1334
+ type: Inject,
1335
+ args: [DEFAULT_SHOP]
1336
+ }] }, { type: undefined, decorators: [{
1337
+ type: Inject,
1338
+ args: [PERSISTENCE_PROVIDER]
1339
+ }] }];
1324
1340
  } });
1325
1341
 
1326
- class CartService {
1327
- constructor(authService, checkoutService, defaultShop, productRepository, categoryRepository, variantRepository, buy2WinRepository) {
1328
- this.authService = authService;
1329
- this.checkoutService = checkoutService;
1330
- this.defaultShop = defaultShop;
1331
- this.productRepository = productRepository;
1332
- this.categoryRepository = categoryRepository;
1333
- this.variantRepository = variantRepository;
1334
- this.buy2WinRepository = buy2WinRepository;
1335
- this.cartSubject = new Subject();
1336
- this.updateLineItemInCart = (lineItem, quantity, checkout) => (isNil(checkout) ? this.checkoutService.getCheckout() : of(checkout)).pipe(concatMap((checkoutLoaded) => {
1337
- var _a;
1338
- const items = [];
1339
- const index = (_a = checkoutLoaded.lineItems) === null || _a === void 0 ? void 0 : _a.map((checkoutItem) => checkoutItem.id).indexOf(lineItem.id);
1340
- if (index > -1) {
1341
- checkoutLoaded.lineItems[index].quantity += quantity;
1342
- checkoutLoaded.lineItems[index].pricePaid = lineItem.pricePaid;
1343
- }
1344
- else
1345
- checkoutLoaded.lineItems = items.concat(checkoutLoaded.lineItems ? checkoutLoaded.lineItems.concat([lineItem]) : [lineItem]);
1346
- return this.checkoutService
1347
- .updateCheckoutLineItems(checkoutLoaded)
1348
- .pipe(map((updatedCheckout) => this.generateCartObject(updatedCheckout.lineItems)));
1349
- }));
1350
- this.generateCartObject = (items) => (items === null || items === void 0 ? void 0 : items.reduce((cart, item) => {
1351
- var _a;
1352
- return (Object.assign(Object.assign({}, cart), { [item.id]: LineItem.toInstance(Object.assign(Object.assign({}, (cart[item.id] || item)), { quantity: (((_a = cart[item.id]) === null || _a === void 0 ? void 0 : _a.quantity) || 0) + (item.quantity ? item.quantity : 1) })) }));
1353
- }, {})) || {};
1354
- this.buildLineItem = ({ checkout, item, quantity, }) => __awaiter(this, void 0, void 0, function* () {
1355
- var _a, _b, _c, _d, _e, _f, _g;
1356
- const product = yield this.getProductData(item.id);
1357
- item.quantity = (item === null || item === void 0 ? void 0 : item.quantity) || ((_b = (_a = checkout === null || checkout === void 0 ? void 0 : checkout.lineItems) === null || _a === void 0 ? void 0 : _a.find((lineItem) => lineItem.id === item.id)) === null || _b === void 0 ? void 0 : _b.quantity) || 0;
1358
- if (this.checkMaxStock(item, quantity || 0))
1359
- throw new Error('Desculpe! Temos apenas ' + ((_c = item.stock) === null || _c === void 0 ? void 0 : _c.quantity) + ' em estoque.');
1360
- const image = item.image || ((_d = item.images) === null || _d === void 0 ? void 0 : _d.shift());
1361
- const { id, name, EAN, slug, stock, price, weight, sku, type } = item;
1362
- const isGift = item.isGift || null;
1363
- const pricePaid = this.getProductPrice({
1364
- product: item,
1365
- shop: checkout.shop || this.defaultShop,
1366
- isSubscriber: (_e = checkout.user) === null || _e === void 0 ? void 0 : _e.isSubscriber,
1367
- });
1368
- RoundProductPricesHelper.roundProductPrices(item);
1369
- return {
1370
- checkout,
1371
- lineItem: LineItem.toInstance({
1372
- id,
1373
- name: name !== null && name !== void 0 ? name : product.name,
1374
- EAN: EAN !== null && EAN !== void 0 ? EAN : product.EAN,
1375
- brand: product.brand,
1376
- slug: slug !== null && slug !== void 0 ? slug : product.slug,
1377
- sku: sku !== null && sku !== void 0 ? sku : product.sku,
1378
- stock,
1379
- price: this.roundPrice(price),
1380
- image,
1381
- weight: weight !== null && weight !== void 0 ? weight : product.weight,
1382
- quantity: (item.quantity || 0) + (quantity || 0),
1383
- pricePaid,
1384
- discount: 0,
1385
- categories: (_f = product.categories) !== null && _f !== void 0 ? _f : [],
1386
- isGift: isGift !== null && isGift !== void 0 ? isGift : null,
1387
- costPrice: (_g = product.costPrice) !== null && _g !== void 0 ? _g : 0,
1388
- type,
1389
- }),
1390
- };
1391
- });
1392
- this.getProductPrice = ({ product, isSubscriber, }) => {
1393
- const info = product.price;
1394
- if (product.isGift)
1395
- return 0;
1396
- return isSubscriber && info.subscriberPrice > 0
1397
- ? Number(info.subscriberPrice.toFixed(2))
1398
- : Number(info.price.toFixed(2));
1399
- };
1400
- this.checkMaxStock = (item, quantity) => {
1401
- var _a;
1402
- const maxStock = ((_a = item.stock) === null || _a === void 0 ? void 0 : _a.quantity) || 0;
1403
- const currentItemAmount = item.quantity || 0;
1404
- return currentItemAmount + quantity > maxStock;
1405
- };
1406
- }
1407
- addItem(item, quantity = 1) {
1408
- return from(this.checkoutService.getCheckout()).pipe(concatMap((checkout) => __awaiter(this, void 0, void 0, function* () { return yield this.buildLineItem({ checkout, item, quantity: quantity || 1 }); })), mergeMap(({ checkout, lineItem }) => this.updateLineItemInCart(lineItem, quantity || 1, checkout)), tap((cart) => this.cartSubject.next(cart)));
1409
- }
1410
- decreaseItem(item) {
1411
- return this.checkoutService.getCheckout().pipe(map((checkout) => {
1412
- var _a;
1413
- const checkoutItem = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.find((lineItem) => lineItem.id === item.id);
1414
- if (!isNil(checkoutItem))
1415
- checkoutItem.quantity -= checkoutItem.quantity > 1 ? 1 : 0;
1416
- return checkout;
1417
- }), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1418
- }
1419
- getCart(checkout) {
1420
- this.buildCartFromCheckout(checkout).subscribe((cart) => this.cartSubject.next(cart));
1421
- return this.cartSubject;
1422
- }
1423
- /**
1424
- * @deprecated The method should not be used
1425
- */
1426
- getVariantPriceDiscount(item) {
1427
- return this.authService.getUser().pipe(concatMap((user) => iif(() => user.isSubscriber && !!item.price.subscriberPrice, of(item.price.subscriberPrice), of(item.price.price))), catchError(() => of(item.price.price)));
1428
- }
1429
- removeItem(item) {
1430
- return this.checkoutService.getCheckout().pipe(map((checkout) => {
1431
- const index = checkout.lineItems.findIndex((lineItem) => lineItem.id === item.id);
1432
- if (index >= 0)
1433
- checkout.lineItems.splice(index, 1);
1434
- return checkout;
1435
- }), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1436
- }
1437
- updateUserCart(user) {
1438
- return this.checkoutService.getCheckout().pipe(concatMap((checkout) => this.checkoutService.updateCheckoutUser(Checkout.toInstance(Object.assign(Object.assign({}, checkout.toPlain()), { user })))), concatMap((checkout) => __awaiter(this, void 0, void 0, function* () {
1439
- var _a, _b;
1440
- return yield this.checkoutService
1441
- .updateCheckoutLineItems(Checkout.toInstance(Object.assign(Object.assign({}, checkout.toPlain()), { lineItems: ((_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.length)
1442
- ? yield Promise.all((_b = checkout.lineItems) === null || _b === void 0 ? void 0 : _b.map((item) => __awaiter(this, void 0, void 0, function* () { return (yield this.buildLineItem({ checkout, item })).lineItem; })))
1443
- : [] })))
1444
- .toPromise();
1445
- })), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1446
- }
1447
- clearCart() {
1448
- return this.checkoutService.getCheckout().pipe(map((checkout) => {
1449
- this.checkoutService.clearCheckoutFromSession();
1450
- return checkout;
1451
- }), concatMap((oldCheckout) => this.buildCartFromCheckout(oldCheckout)), tap((cart) => this.cartSubject.next(cart)));
1452
- }
1453
- buildCartFromCheckout(checkoutData) {
1454
- return this.checkoutService.getCheckout(checkoutData).pipe(map((checkout) => checkout.lineItems), concatMap((lineItems) => of(this.generateCartObject(lineItems))));
1455
- }
1456
- roundPrice(productPrice) {
1457
- const { price, fullPrice, subscriberPrice } = productPrice;
1458
- return Object.assign(Object.assign(Object.assign({}, productPrice), { price: Number(price.toFixed(2)), fullPrice: Number(fullPrice.toFixed(2)) }), (subscriberPrice && { subscriberPrice: Number(subscriberPrice.toFixed(2)) }));
1459
- }
1460
- getProductData(productId) {
1461
- return __awaiter(this, void 0, void 0, function* () {
1462
- let product;
1463
- let variant;
1464
- try {
1465
- product = yield this.productRepository.get({ id: productId });
1466
- }
1467
- catch (error) {
1468
- if (!(error instanceof NotFoundError))
1469
- throw error;
1470
- const { data: variants } = yield this.variantRepository.find({ filters: { id: productId } });
1471
- variant = variants.shift();
1472
- if (!variant)
1473
- throw error;
1474
- product = yield this.productRepository.get({ id: variant.productId });
1475
- }
1476
- return Object.assign(Object.assign({}, product.toPlain()), (variant && Object.assign({}, variant.toPlain())));
1477
- });
1478
- }
1479
- getGifts() {
1480
- return this.checkoutService.getCheckout().pipe(mergeMap((checkout) => __awaiter(this, void 0, void 0, function* () {
1481
- const notGiftItems = checkout.lineItems ? checkout.lineItems.filter((item) => !item.isGift) : [];
1482
- if (!notGiftItems.length)
1483
- return Object.assign(Object.assign({}, checkout), { lineItems: [] });
1484
- const cartTotal = notGiftItems.reduce((a, b) => a + b.pricePaid * b.quantity, 0);
1485
- const campaigns = yield this.buy2WinRepository
1486
- .find({
1487
- filters: {
1488
- active: { operator: Where.EQUALS, value: true },
1489
- shop: { operator: Where.EQUALS, value: this.defaultShop },
1490
- },
1491
- })
1492
- .then((data) => data.data);
1493
- if (!campaigns.length)
1494
- return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1495
- const elegibleCampaigns = [];
1496
- for (const campaign of campaigns) {
1497
- const today = new Date().getTime();
1498
- if (!(campaign.startDate.getTime() <= today) && !(campaign.endDate.getTime() >= today))
1499
- continue;
1500
- if (campaign.activeCategory) {
1501
- const categoriesCampaing = campaign.categories.map((c) => c.id.toString());
1502
- const categoriesCampaingFullTree = [];
1503
- for (const id of categoriesCampaing) {
1504
- const children = yield this.categoryRepository.getChildren(parseInt(id));
1505
- categoriesCampaingFullTree.push(id, ...children.map((c) => c.id.toString()));
1506
- }
1507
- const categoriesCampaingTree = [...new Set(categoriesCampaingFullTree)];
1508
- const filterProductsCategories = checkout.lineItems.filter((l) => {
1509
- var _a;
1510
- if (!l.categories || !((_a = l.categories) === null || _a === void 0 ? void 0 : _a.length))
1511
- return true;
1512
- return l.categories.some((c) => categoriesCampaingTree.some((cat) => cat == c));
1513
- });
1514
- if (filterProductsCategories.length) {
1515
- const cartTotalCategories = filterProductsCategories.reduce((a, b) => a + b.pricePaid * b.quantity, 0);
1516
- if (cartTotalCategories >= campaign.cartValueMin)
1517
- elegibleCampaigns.push(campaign);
1518
- }
1519
- }
1520
- else {
1521
- if (campaign.cartValue && campaign.cartValue > 0) {
1522
- if (campaign.cartValue <= cartTotal)
1523
- elegibleCampaigns.push(campaign);
1524
- }
1525
- }
1526
- }
1527
- if (!elegibleCampaigns.length)
1528
- return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1529
- const campaingnProducts = [];
1530
- for (const campaign of elegibleCampaigns) {
1531
- let elegibleProducts = [];
1532
- for (const product of campaign.products) {
1533
- const { data: productData } = yield this.productRepository.find({ filters: { sku: product } });
1534
- if (!productData.length)
1535
- continue;
1536
- const gift = productData.shift();
1537
- if (gift.stock.quantity < 1)
1538
- continue;
1539
- elegibleProducts.push(gift);
1540
- }
1541
- campaingnProducts.push(elegibleProducts);
1542
- }
1543
- if (!campaingnProducts.length)
1544
- return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1545
- const gifts = this.giftToLineItems([].concat(...campaingnProducts));
1546
- return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems.concat(gifts) });
1547
- })), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1548
- }
1549
- giftToLineItems(items) {
1550
- return items.map((item) => {
1551
- var _a;
1552
- const { brand, categories, id, name, price, sku, slug, stock, weight, EAN } = item;
1553
- const image = ((_a = item === null || item === void 0 ? void 0 : item.miniatures) === null || _a === void 0 ? void 0 : _a.length) ? item.miniatures[0] : item.images[0];
1554
- return LineItem.toInstance({
1555
- brand,
1556
- categories,
1557
- id: id.toString(),
1558
- name,
1559
- price,
1560
- sku,
1561
- slug,
1562
- stock,
1563
- weight,
1564
- EAN,
1565
- image,
1566
- pricePaid: 0,
1567
- quantity: 1,
1568
- isGift: true,
1569
- });
1570
- });
1571
- }
1572
- }
1573
- CartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService, deps: [{ token: AuthService }, { token: CheckoutService }, { token: DEFAULT_SHOP }, { token: 'ProductRepository' }, { token: 'CategoryRepository' }, { token: 'VariantRepository' }, { token: 'Buy2WinRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1574
- CartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService });
1575
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService, decorators: [{
1576
- type: Injectable
1577
- }], ctorParameters: function () {
1578
- return [{ type: AuthService }, { type: CheckoutService }, { type: i1$2.Shops, decorators: [{
1579
- type: Inject,
1580
- args: [DEFAULT_SHOP]
1581
- }] }, { type: undefined, decorators: [{
1582
- type: Inject,
1583
- args: ['ProductRepository']
1584
- }] }, { type: undefined, decorators: [{
1585
- type: Inject,
1586
- args: ['CategoryRepository']
1587
- }] }, { type: undefined, decorators: [{
1588
- type: Inject,
1589
- args: ['VariantRepository']
1590
- }] }, { type: i1$2.Buy2WinFirestoreRepository, decorators: [{
1591
- type: Inject,
1592
- args: ['Buy2WinRepository']
1593
- }] }];
1342
+ class CartService {
1343
+ constructor(authService, checkoutService, defaultShop, productRepository, categoryRepository, variantRepository, buy2WinRepository) {
1344
+ this.authService = authService;
1345
+ this.checkoutService = checkoutService;
1346
+ this.defaultShop = defaultShop;
1347
+ this.productRepository = productRepository;
1348
+ this.categoryRepository = categoryRepository;
1349
+ this.variantRepository = variantRepository;
1350
+ this.buy2WinRepository = buy2WinRepository;
1351
+ this.cartSubject = new Subject();
1352
+ this.updateLineItemInCart = (lineItem, quantity, checkout) => (isNil(checkout) ? this.checkoutService.getCheckout() : of(checkout)).pipe(concatMap((checkoutLoaded) => {
1353
+ var _a;
1354
+ const items = [];
1355
+ const index = (_a = checkoutLoaded.lineItems) === null || _a === void 0 ? void 0 : _a.map((checkoutItem) => checkoutItem.id).indexOf(lineItem.id);
1356
+ if (index > -1) {
1357
+ checkoutLoaded.lineItems[index].quantity += quantity;
1358
+ checkoutLoaded.lineItems[index].pricePaid = lineItem.pricePaid;
1359
+ }
1360
+ else
1361
+ checkoutLoaded.lineItems = items.concat(checkoutLoaded.lineItems ? checkoutLoaded.lineItems.concat([lineItem]) : [lineItem]);
1362
+ return this.checkoutService
1363
+ .updateCheckoutLineItems(checkoutLoaded)
1364
+ .pipe(map((updatedCheckout) => this.generateCartObject(updatedCheckout.lineItems)));
1365
+ }));
1366
+ this.generateCartObject = (items) => (items === null || items === void 0 ? void 0 : items.reduce((cart, item) => {
1367
+ var _a;
1368
+ return (Object.assign(Object.assign({}, cart), { [item.id]: LineItem.toInstance(Object.assign(Object.assign({}, (cart[item.id] || item)), { quantity: (((_a = cart[item.id]) === null || _a === void 0 ? void 0 : _a.quantity) || 0) + (item.quantity ? item.quantity : 1) })) }));
1369
+ }, {})) || {};
1370
+ this.buildLineItem = ({ checkout, item, quantity, }) => __awaiter(this, void 0, void 0, function* () {
1371
+ var _a, _b, _c, _d, _e, _f, _g;
1372
+ const product = yield this.getProductData(item.id);
1373
+ item.quantity = (item === null || item === void 0 ? void 0 : item.quantity) || ((_b = (_a = checkout === null || checkout === void 0 ? void 0 : checkout.lineItems) === null || _a === void 0 ? void 0 : _a.find((lineItem) => lineItem.id === item.id)) === null || _b === void 0 ? void 0 : _b.quantity) || 0;
1374
+ if (this.checkMaxStock(item, quantity || 0))
1375
+ throw new Error('Desculpe! Temos apenas ' + ((_c = item.stock) === null || _c === void 0 ? void 0 : _c.quantity) + ' em estoque.');
1376
+ const image = item.image || ((_d = item.images) === null || _d === void 0 ? void 0 : _d.shift());
1377
+ const { id, name, EAN, slug, stock, price, weight, sku, type } = item;
1378
+ const isGift = item.isGift || null;
1379
+ const pricePaid = this.getProductPrice({
1380
+ product: item,
1381
+ shop: checkout.shop || this.defaultShop,
1382
+ isSubscriber: (_e = checkout.user) === null || _e === void 0 ? void 0 : _e.isSubscriber,
1383
+ });
1384
+ RoundProductPricesHelper.roundProductPrices(item);
1385
+ return {
1386
+ checkout,
1387
+ lineItem: LineItem.toInstance({
1388
+ id,
1389
+ name: name !== null && name !== void 0 ? name : product.name,
1390
+ EAN: EAN !== null && EAN !== void 0 ? EAN : product.EAN,
1391
+ brand: product.brand,
1392
+ slug: slug !== null && slug !== void 0 ? slug : product.slug,
1393
+ sku: sku !== null && sku !== void 0 ? sku : product.sku,
1394
+ stock,
1395
+ price: this.roundPrice(price),
1396
+ image,
1397
+ weight: weight !== null && weight !== void 0 ? weight : product.weight,
1398
+ quantity: (item.quantity || 0) + (quantity || 0),
1399
+ pricePaid,
1400
+ discount: 0,
1401
+ categories: (_f = product.categories) !== null && _f !== void 0 ? _f : [],
1402
+ isGift: isGift !== null && isGift !== void 0 ? isGift : null,
1403
+ costPrice: (_g = product.costPrice) !== null && _g !== void 0 ? _g : 0,
1404
+ type,
1405
+ }),
1406
+ };
1407
+ });
1408
+ this.getProductPrice = ({ product, isSubscriber, }) => {
1409
+ const info = product.price;
1410
+ if (product.isGift)
1411
+ return 0;
1412
+ return isSubscriber && info.subscriberPrice > 0
1413
+ ? Number(info.subscriberPrice.toFixed(2))
1414
+ : Number(info.price.toFixed(2));
1415
+ };
1416
+ this.checkMaxStock = (item, quantity) => {
1417
+ var _a;
1418
+ const maxStock = ((_a = item.stock) === null || _a === void 0 ? void 0 : _a.quantity) || 0;
1419
+ const currentItemAmount = item.quantity || 0;
1420
+ return currentItemAmount + quantity > maxStock;
1421
+ };
1422
+ }
1423
+ addItem(item, quantity = 1) {
1424
+ return from(this.checkoutService.getCheckout()).pipe(concatMap((checkout) => __awaiter(this, void 0, void 0, function* () { return yield this.buildLineItem({ checkout, item, quantity: quantity || 1 }); })), mergeMap(({ checkout, lineItem }) => this.updateLineItemInCart(lineItem, quantity || 1, checkout)), tap((cart) => this.cartSubject.next(cart)));
1425
+ }
1426
+ decreaseItem(item) {
1427
+ return this.checkoutService.getCheckout().pipe(map((checkout) => {
1428
+ var _a;
1429
+ const checkoutItem = (_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.find((lineItem) => lineItem.id === item.id);
1430
+ if (!isNil(checkoutItem))
1431
+ checkoutItem.quantity -= checkoutItem.quantity > 1 ? 1 : 0;
1432
+ return checkout;
1433
+ }), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1434
+ }
1435
+ getCart(checkout) {
1436
+ this.buildCartFromCheckout(checkout).subscribe((cart) => this.cartSubject.next(cart));
1437
+ return this.cartSubject;
1438
+ }
1439
+ /**
1440
+ * @deprecated The method should not be used
1441
+ */
1442
+ getVariantPriceDiscount(item) {
1443
+ return this.authService.getUser().pipe(concatMap((user) => iif(() => user.isSubscriber && !!item.price.subscriberPrice, of(item.price.subscriberPrice), of(item.price.price))), catchError(() => of(item.price.price)));
1444
+ }
1445
+ removeItem(item) {
1446
+ return this.checkoutService.getCheckout().pipe(map((checkout) => {
1447
+ const index = checkout.lineItems.findIndex((lineItem) => lineItem.id === item.id);
1448
+ if (index >= 0)
1449
+ checkout.lineItems.splice(index, 1);
1450
+ return checkout;
1451
+ }), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1452
+ }
1453
+ updateUserCart(user) {
1454
+ return this.checkoutService.getCheckout().pipe(concatMap((checkout) => this.checkoutService.updateCheckoutUser(Checkout.toInstance(Object.assign(Object.assign({}, checkout.toPlain()), { user })))), concatMap((checkout) => __awaiter(this, void 0, void 0, function* () {
1455
+ var _a, _b;
1456
+ return yield this.checkoutService
1457
+ .updateCheckoutLineItems(Checkout.toInstance(Object.assign(Object.assign({}, checkout.toPlain()), { lineItems: ((_a = checkout.lineItems) === null || _a === void 0 ? void 0 : _a.length)
1458
+ ? yield Promise.all((_b = checkout.lineItems) === null || _b === void 0 ? void 0 : _b.map((item) => __awaiter(this, void 0, void 0, function* () { return (yield this.buildLineItem({ checkout, item })).lineItem; })))
1459
+ : [] })))
1460
+ .toPromise();
1461
+ })), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1462
+ }
1463
+ clearCart() {
1464
+ return this.checkoutService.getCheckout().pipe(map((checkout) => {
1465
+ this.checkoutService.clearCheckoutFromSession();
1466
+ return checkout;
1467
+ }), concatMap((oldCheckout) => this.buildCartFromCheckout(oldCheckout)), tap((cart) => this.cartSubject.next(cart)));
1468
+ }
1469
+ buildCartFromCheckout(checkoutData) {
1470
+ return this.checkoutService.getCheckout(checkoutData).pipe(map((checkout) => checkout.lineItems), concatMap((lineItems) => of(this.generateCartObject(lineItems))));
1471
+ }
1472
+ roundPrice(productPrice) {
1473
+ const { price, fullPrice, subscriberPrice } = productPrice;
1474
+ return Object.assign(Object.assign(Object.assign({}, productPrice), { price: Number(price.toFixed(2)), fullPrice: Number(fullPrice.toFixed(2)) }), (subscriberPrice && { subscriberPrice: Number(subscriberPrice.toFixed(2)) }));
1475
+ }
1476
+ getProductData(productId) {
1477
+ return __awaiter(this, void 0, void 0, function* () {
1478
+ let product;
1479
+ let variant;
1480
+ try {
1481
+ product = yield this.productRepository.get({ id: productId });
1482
+ }
1483
+ catch (error) {
1484
+ if (!(error instanceof NotFoundError))
1485
+ throw error;
1486
+ const { data: variants } = yield this.variantRepository.find({ filters: { id: productId } });
1487
+ variant = variants.shift();
1488
+ if (!variant)
1489
+ throw error;
1490
+ product = yield this.productRepository.get({ id: variant.productId });
1491
+ }
1492
+ return Object.assign(Object.assign({}, product.toPlain()), (variant && Object.assign({}, variant.toPlain())));
1493
+ });
1494
+ }
1495
+ getGifts() {
1496
+ return this.checkoutService.getCheckout().pipe(mergeMap((checkout) => __awaiter(this, void 0, void 0, function* () {
1497
+ const notGiftItems = checkout.lineItems ? checkout.lineItems.filter((item) => !item.isGift) : [];
1498
+ if (!notGiftItems.length)
1499
+ return Object.assign(Object.assign({}, checkout), { lineItems: [] });
1500
+ const cartTotal = notGiftItems.reduce((a, b) => a + b.pricePaid * b.quantity, 0);
1501
+ const campaigns = yield this.buy2WinRepository
1502
+ .find({
1503
+ filters: {
1504
+ active: { operator: Where.EQUALS, value: true },
1505
+ shop: { operator: Where.EQUALS, value: this.defaultShop },
1506
+ },
1507
+ })
1508
+ .then((data) => data.data);
1509
+ if (!campaigns.length)
1510
+ return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1511
+ const elegibleCampaigns = [];
1512
+ for (const campaign of campaigns) {
1513
+ const today = new Date().getTime();
1514
+ if (!(campaign.startDate.getTime() <= today) && !(campaign.endDate.getTime() >= today))
1515
+ continue;
1516
+ if (campaign.activeCategory) {
1517
+ const categoriesCampaing = campaign.categories.map((c) => c.id.toString());
1518
+ const categoriesCampaingFullTree = [];
1519
+ for (const id of categoriesCampaing) {
1520
+ const children = yield this.categoryRepository.getChildren(parseInt(id));
1521
+ categoriesCampaingFullTree.push(id, ...children.map((c) => c.id.toString()));
1522
+ }
1523
+ const categoriesCampaingTree = [...new Set(categoriesCampaingFullTree)];
1524
+ const filterProductsCategories = checkout.lineItems.filter((l) => {
1525
+ var _a;
1526
+ if (!l.categories || !((_a = l.categories) === null || _a === void 0 ? void 0 : _a.length))
1527
+ return true;
1528
+ return l.categories.some((c) => categoriesCampaingTree.some((cat) => cat == c));
1529
+ });
1530
+ if (filterProductsCategories.length) {
1531
+ const cartTotalCategories = filterProductsCategories.reduce((a, b) => a + b.pricePaid * b.quantity, 0);
1532
+ if (cartTotalCategories >= campaign.cartValueMin)
1533
+ elegibleCampaigns.push(campaign);
1534
+ }
1535
+ }
1536
+ else {
1537
+ if (campaign.cartValue && campaign.cartValue > 0) {
1538
+ if (campaign.cartValue <= cartTotal)
1539
+ elegibleCampaigns.push(campaign);
1540
+ }
1541
+ }
1542
+ }
1543
+ if (!elegibleCampaigns.length)
1544
+ return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1545
+ const campaingnProducts = [];
1546
+ for (const campaign of elegibleCampaigns) {
1547
+ let elegibleProducts = [];
1548
+ for (const product of campaign.products) {
1549
+ const { data: productData } = yield this.productRepository.find({ filters: { sku: product } });
1550
+ if (!productData.length)
1551
+ continue;
1552
+ const gift = productData.shift();
1553
+ if (gift.stock.quantity < 1)
1554
+ continue;
1555
+ elegibleProducts.push(gift);
1556
+ }
1557
+ campaingnProducts.push(elegibleProducts);
1558
+ }
1559
+ if (!campaingnProducts.length)
1560
+ return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems });
1561
+ const gifts = this.giftToLineItems([].concat(...campaingnProducts));
1562
+ return Object.assign(Object.assign({}, checkout), { lineItems: notGiftItems.concat(gifts) });
1563
+ })), concatMap((checkout) => this.checkoutService.updateCheckoutLineItems(checkout)), map((checkout) => this.generateCartObject(checkout.lineItems)), tap((cart) => this.cartSubject.next(cart)));
1564
+ }
1565
+ giftToLineItems(items) {
1566
+ return items.map((item) => {
1567
+ var _a;
1568
+ const { brand, categories, id, name, price, sku, slug, stock, weight, EAN } = item;
1569
+ const image = ((_a = item === null || item === void 0 ? void 0 : item.miniatures) === null || _a === void 0 ? void 0 : _a.length) ? item.miniatures[0] : item.images[0];
1570
+ return LineItem.toInstance({
1571
+ brand,
1572
+ categories,
1573
+ id: id.toString(),
1574
+ name,
1575
+ price,
1576
+ sku,
1577
+ slug,
1578
+ stock,
1579
+ weight,
1580
+ EAN,
1581
+ image,
1582
+ pricePaid: 0,
1583
+ quantity: 1,
1584
+ isGift: true,
1585
+ });
1586
+ });
1587
+ }
1588
+ }
1589
+ CartService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService, deps: [{ token: AuthService }, { token: CheckoutService }, { token: DEFAULT_SHOP }, { token: 'ProductRepository' }, { token: 'CategoryRepository' }, { token: 'VariantRepository' }, { token: 'Buy2WinRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1590
+ CartService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService });
1591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CartService, decorators: [{
1592
+ type: Injectable
1593
+ }], ctorParameters: function () {
1594
+ return [{ type: AuthService }, { type: CheckoutService }, { type: i1$2.Shops, decorators: [{
1595
+ type: Inject,
1596
+ args: [DEFAULT_SHOP]
1597
+ }] }, { type: undefined, decorators: [{
1598
+ type: Inject,
1599
+ args: ['ProductRepository']
1600
+ }] }, { type: undefined, decorators: [{
1601
+ type: Inject,
1602
+ args: ['CategoryRepository']
1603
+ }] }, { type: undefined, decorators: [{
1604
+ type: Inject,
1605
+ args: ['VariantRepository']
1606
+ }] }, { type: i1$2.Buy2WinFirestoreRepository, decorators: [{
1607
+ type: Inject,
1608
+ args: ['Buy2WinRepository']
1609
+ }] }];
1594
1610
  } });
1595
1611
 
1596
- class NewCategoryStructureAdapter {
1597
- constructor(categoryRepository) {
1598
- this.categoryRepository = categoryRepository;
1599
- }
1600
- buildProductFilterByCategory(category) {
1601
- return __awaiter(this, void 0, void 0, function* () {
1602
- const loadedCategory = yield this.getCategory(category);
1603
- if (loadedCategory.isCollection)
1604
- return { id: { operator: Where.IN, value: loadedCategory.products } };
1605
- const categoryIds = [...(yield this.getAllCategoriesIdFromCategory(category)), category.id.toString()];
1606
- return {
1607
- category: {
1608
- id: {
1609
- operator: Where.IN,
1610
- value: categoryIds,
1611
- },
1612
- },
1613
- };
1614
- });
1615
- }
1616
- getAllCategoriesIdFromCategory(category) {
1617
- return __awaiter(this, void 0, void 0, function* () {
1618
- return this.categoryRepository
1619
- .getChildren(+category.id)
1620
- .then((categories) => categories.map((category) => category.id.toString()));
1621
- });
1622
- }
1623
- getCategory(category) {
1624
- var _a;
1625
- return __awaiter(this, void 0, void 0, function* () {
1626
- const collectionCategory = category.isCollection ||
1627
- (isNil(category.isCollection) && !((_a = category.products) === null || _a === void 0 ? void 0 : _a.length)) ||
1628
- category.isWishlist ||
1629
- category.brandCategory;
1630
- return collectionCategory ? this.categoryRepository.get({ id: category.id }) : category;
1631
- });
1632
- }
1633
- }
1634
- NewCategoryStructureAdapter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter, deps: [{ token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1635
- NewCategoryStructureAdapter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter });
1636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter, decorators: [{
1637
- type: Injectable
1638
- }], ctorParameters: function () {
1639
- return [{ type: undefined, decorators: [{
1640
- type: Inject,
1641
- args: ['CategoryRepository']
1642
- }] }];
1612
+ class NewCategoryStructureAdapter {
1613
+ constructor(categoryRepository) {
1614
+ this.categoryRepository = categoryRepository;
1615
+ }
1616
+ buildProductFilterByCategory(category) {
1617
+ return __awaiter(this, void 0, void 0, function* () {
1618
+ const loadedCategory = yield this.getCategory(category);
1619
+ if (loadedCategory.isCollection)
1620
+ return { id: { operator: Where.IN, value: loadedCategory.products } };
1621
+ const categoryIds = [...(yield this.getAllCategoriesIdFromCategory(category)), category.id.toString()];
1622
+ return {
1623
+ category: {
1624
+ id: {
1625
+ operator: Where.IN,
1626
+ value: categoryIds,
1627
+ },
1628
+ },
1629
+ };
1630
+ });
1631
+ }
1632
+ getAllCategoriesIdFromCategory(category) {
1633
+ return __awaiter(this, void 0, void 0, function* () {
1634
+ return this.categoryRepository
1635
+ .getChildren(+category.id)
1636
+ .then((categories) => categories.map((category) => category.id.toString()));
1637
+ });
1638
+ }
1639
+ getCategory(category) {
1640
+ var _a;
1641
+ return __awaiter(this, void 0, void 0, function* () {
1642
+ const collectionCategory = category.isCollection ||
1643
+ (isNil(category.isCollection) && !((_a = category.products) === null || _a === void 0 ? void 0 : _a.length)) ||
1644
+ category.isWishlist ||
1645
+ category.brandCategory;
1646
+ return collectionCategory ? this.categoryRepository.get({ id: category.id }) : category;
1647
+ });
1648
+ }
1649
+ }
1650
+ NewCategoryStructureAdapter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter, deps: [{ token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1651
+ NewCategoryStructureAdapter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter });
1652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: NewCategoryStructureAdapter, decorators: [{
1653
+ type: Injectable
1654
+ }], ctorParameters: function () {
1655
+ return [{ type: undefined, decorators: [{
1656
+ type: Inject,
1657
+ args: ['CategoryRepository']
1658
+ }] }];
1643
1659
  } });
1644
1660
 
1645
- class OldCategoryStructureAdapter {
1646
- constructor(categoryRepository) {
1647
- this.categoryRepository = categoryRepository;
1648
- }
1649
- buildProductFilterByCategory(category) {
1650
- var _a;
1651
- return __awaiter(this, void 0, void 0, function* () {
1652
- const productsIds = ((_a = category.products) === null || _a === void 0 ? void 0 : _a.length)
1653
- ? category.products
1654
- : yield this.categoryRepository.get({ id: category.id }).then((categoryFound) => categoryFound.products);
1655
- return { id: { operator: Where.IN, value: productsIds } };
1656
- });
1657
- }
1658
- }
1659
- OldCategoryStructureAdapter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter, deps: [{ token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1660
- OldCategoryStructureAdapter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter });
1661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter, decorators: [{
1662
- type: Injectable
1663
- }], ctorParameters: function () {
1664
- return [{ type: undefined, decorators: [{
1665
- type: Inject,
1666
- args: ['CategoryRepository']
1667
- }] }];
1661
+ class OldCategoryStructureAdapter {
1662
+ constructor(categoryRepository) {
1663
+ this.categoryRepository = categoryRepository;
1664
+ }
1665
+ buildProductFilterByCategory(category) {
1666
+ var _a;
1667
+ return __awaiter(this, void 0, void 0, function* () {
1668
+ const productsIds = ((_a = category.products) === null || _a === void 0 ? void 0 : _a.length)
1669
+ ? category.products
1670
+ : yield this.categoryRepository.get({ id: category.id }).then((categoryFound) => categoryFound.products);
1671
+ return { id: { operator: Where.IN, value: productsIds } };
1672
+ });
1673
+ }
1674
+ }
1675
+ OldCategoryStructureAdapter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter, deps: [{ token: 'CategoryRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
1676
+ OldCategoryStructureAdapter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter });
1677
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OldCategoryStructureAdapter, decorators: [{
1678
+ type: Injectable
1679
+ }], ctorParameters: function () {
1680
+ return [{ type: undefined, decorators: [{
1681
+ type: Inject,
1682
+ args: ['CategoryRepository']
1683
+ }] }];
1668
1684
  } });
1669
1685
 
1670
- class CatalogService {
1671
- constructor(productRepository, productStockNotificationRepository, categoryRepository, categoryStructureAdapter, shop, productIndex) {
1672
- this.productRepository = productRepository;
1673
- this.productStockNotificationRepository = productStockNotificationRepository;
1674
- this.categoryRepository = categoryRepository;
1675
- this.categoryStructureAdapter = categoryStructureAdapter;
1676
- this.shop = shop;
1677
- this.productIndex = productIndex;
1678
- this.productsByTerm = {};
1679
- this.buildFilterQuery = ({ clubDiscount, brands, prices, gender, tags, rate, customOptions, }) => {
1680
- const filters = {};
1681
- if (clubDiscount === null || clubDiscount === void 0 ? void 0 : clubDiscount.length)
1682
- set(filters, 'price.subscriberDiscountPercentage', { operator: Where.IN, value: clubDiscount });
1683
- if (brands === null || brands === void 0 ? void 0 : brands.length)
1684
- filters.brand = { operator: Where.IN, value: brands };
1685
- if (gender === null || gender === void 0 ? void 0 : gender.length)
1686
- filters.gender = { operator: Where.IN, value: gender };
1687
- if ((prices === null || prices === void 0 ? void 0 : prices.min) || (prices === null || prices === void 0 ? void 0 : prices.max))
1688
- set(filters, prices.subscriberPrice ? 'price.subscriberPrice' : 'price.price', [
1689
- ...(prices.min ? [{ operator: Where.GTE, value: Math.round(prices.min) }] : []),
1690
- ...(prices.max ? [{ operator: Where.LTE, value: Math.ceil(prices.max) }] : []),
1691
- ]);
1692
- if (rate)
1693
- filters.rate = { operator: Where.GTE, value: rate };
1694
- if (tags === null || tags === void 0 ? void 0 : tags.length)
1695
- filters.tags = { operator: Where.LIKE, value: tags };
1696
- if (customOptions === null || customOptions === void 0 ? void 0 : customOptions.length)
1697
- filters.filters = { operator: Where.LIKE, value: customOptions };
1698
- return filters;
1699
- };
1700
- this.buildSortQuery = (sort) => {
1701
- if (!sort || sort === 'most-relevant')
1702
- return {};
1703
- if (sort === 'best-sellers')
1704
- return {
1705
- shoppingCount: 'desc',
1706
- rate: 'desc',
1707
- stock: 'desc',
1708
- name: 'asc',
1709
- };
1710
- if (sort === 'biggest-price')
1711
- return { subscriberPrice: 'desc', rate: 'desc', shoppingCount: 'desc' };
1712
- if (sort === 'lowest-price')
1713
- return { subscriberPrice: 'asc', rate: 'desc', shoppingCount: 'desc' };
1714
- if (sort === 'best-rating')
1715
- return { rate: 'desc', shoppingCount: 'desc', stock: 'desc', name: 'asc' };
1716
- if (sort === 'news')
1717
- return { createdAt: 'desc' };
1718
- if (sort === 'biggest-discount')
1719
- return { subscriberDiscountPercentage: 'desc', rate: 'desc', shoppingCount: 'desc' };
1720
- };
1721
- this.buildLimitQuery = (options) => {
1722
- const limit = (options === null || options === void 0 ? void 0 : options.perPage) || 20;
1723
- return {
1724
- limit,
1725
- offset: (((options === null || options === void 0 ? void 0 : options.page) || 1) - 1) * limit,
1726
- };
1727
- };
1728
- this.hasProfile = (options) => 'profile' in options;
1729
- this.hasTerm = (options) => 'term' in options;
1730
- this.hasCategory = (options) => 'category' in options;
1731
- }
1732
- fetchProducts(options) {
1733
- var _a, _b, _c;
1734
- return __awaiter(this, void 0, void 0, function* () {
1735
- const limits = this.buildLimitQuery(options);
1736
- if (this.hasProfile(options) && ((_a = options.filters) === null || _a === void 0 ? void 0 : _a.customOptions))
1737
- throw new InvalidArgumentError(`It couldn't filled customOptions when profile is given`);
1738
- if (this.hasProfile(options) && ((_b = options.filters) === null || _b === void 0 ? void 0 : _b.tags))
1739
- throw new InvalidArgumentError(`It couldn't filled tags when profile is given`);
1740
- if (this.hasTerm(options) && ((_c = options.filters) === null || _c === void 0 ? void 0 : _c.customOptions))
1741
- throw new InvalidArgumentError(`It couldn't filled customOptions when term is given`);
1742
- return yield this.findCatalog(options, limits).then(({ data, count: total, maximum, minimal, distinct }) => {
1743
- var _a, _b, _c, _d, _e, _f, _g, _h;
1744
- return ({
1745
- products: { data: data.map((product) => RoundProductPricesHelper.roundProductPrices(product)), total },
1746
- pages: Math.ceil(total / limits.limit),
1747
- prices: {
1748
- price: { min: +((_b = (_a = minimal === null || minimal === void 0 ? void 0 : minimal.price) === null || _a === void 0 ? void 0 : _a.price) === null || _b === void 0 ? void 0 : _b.toFixed(2)), max: +((_d = (_c = maximum === null || maximum === void 0 ? void 0 : maximum.price) === null || _c === void 0 ? void 0 : _c.price) === null || _d === void 0 ? void 0 : _d.toFixed(2)) },
1749
- subscriberPrice: {
1750
- min: +((_f = (_e = minimal === null || minimal === void 0 ? void 0 : minimal.price) === null || _e === void 0 ? void 0 : _e.subscriberPrice) === null || _f === void 0 ? void 0 : _f.toFixed(2)),
1751
- max: +((_h = (_g = maximum === null || maximum === void 0 ? void 0 : maximum.price) === null || _g === void 0 ? void 0 : _g.subscriberPrice) === null || _h === void 0 ? void 0 : _h.toFixed(2)),
1752
- },
1753
- },
1754
- brands: distinct === null || distinct === void 0 ? void 0 : distinct.brand,
1755
- });
1756
- });
1757
- });
1758
- }
1759
- addCustomerToStockNotification(shop, productId, name, email) {
1760
- return __awaiter(this, void 0, void 0, function* () {
1761
- return this.productStockNotificationRepository.addCustomerEmail(shop, productId, name, email);
1762
- });
1763
- }
1764
- findCatalog(options, limits) {
1765
- return __awaiter(this, void 0, void 0, function* () {
1766
- if (this.hasTerm(options) && options.sort === 'most-relevant') {
1767
- const productsIds = yield this.findCatalogIdsByElasticSearch(options.term);
1768
- return this.findCatalogAndSortByMostRevelant(productsIds, options, limits);
1769
- }
1770
- if (this.hasCategory(options) && options.sort === 'most-relevant') {
1771
- const productsIds = yield this.productRepository
1772
- .find({
1773
- filters: Object.assign({}, (yield this.buildMainFilter(options))),
1774
- })
1775
- .then((products) => products.data.map((product) => product.id));
1776
- return this.findCatalogAndSortByMostRevelant(productsIds, options, limits);
1777
- }
1778
- const repoParams = Object.assign(Object.assign({ filters: Object.assign(Object.assign({}, (yield this.buildMainFilter(options))), this.buildFilterQuery((options === null || options === void 0 ? void 0 : options.filters) || {})) }, ((options === null || options === void 0 ? void 0 : options.sort) ? { orderBy: this.buildSortQuery(options === null || options === void 0 ? void 0 : options.sort) } : {})), { limits, options: Object.assign({ minimal: ['price'], maximum: ['price'] }, (!this.hasCategory(options) ? { distinct: ['brand'] } : {})) });
1779
- if (['biggest-price', 'lowest-price', 'biggest-discount', 'best-rating'].includes(options.sort))
1780
- return this.productRepository.findCatalog(repoParams);
1781
- return this.productRepository.findCatalog(repoParams, (options === null || options === void 0 ? void 0 : options.mainGender) || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1782
- });
1783
- }
1784
- buildMainFilter({ category, profile, term, }) {
1785
- return __awaiter(this, void 0, void 0, function* () {
1786
- if (category)
1787
- return this.categoryStructureAdapter.buildProductFilterByCategory(category);
1788
- if (profile)
1789
- return { tags: { operator: Where.LIKE, value: profile } };
1790
- if (term)
1791
- return this.productIndex
1792
- .search(term, 999, this.shop)
1793
- .then((data) => ({ id: { operator: Where.IN, value: data.hits.map(({ _source }) => _source.id) } }));
1794
- });
1795
- }
1796
- findCatalogAndSortByMostRevelant(productIds, options, limits) {
1797
- return __awaiter(this, void 0, void 0, function* () {
1798
- const totalResult = yield this.productRepository.findCatalog({
1799
- fields: ['id', 'stock'],
1800
- filters: Object.assign({ id: { operator: Where.IN, value: productIds } }, this.buildFilterQuery((options === null || options === void 0 ? void 0 : options.filters) || {})),
1801
- options: {
1802
- minimal: ['price'],
1803
- maximum: ['price'],
1804
- distinct: ['brand'],
1805
- },
1806
- }, (options === null || options === void 0 ? void 0 : options.mainGender) || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1807
- const stockData = totalResult.data.filter((product) => product.stock.quantity > 0);
1808
- const stockOut = totalResult.data.filter((product) => product.stock.quantity <= 0);
1809
- const productIdsStock = productIds.filter((product) => stockData.some((result) => result.id == product));
1810
- const productIdsStockOut = productIds.filter((product) => stockOut.some((result) => result.id == product));
1811
- const limitedProductId = productIdsStock
1812
- .concat(productIdsStockOut)
1813
- .slice(limits.offset, limits.offset + limits.limit);
1814
- const orderedId = productIds.filter((product) => limitedProductId.includes(product));
1815
- const productResult = yield this.productRepository.findCatalog({
1816
- filters: {
1817
- id: { operator: Where.IN, value: orderedId },
1818
- },
1819
- });
1820
- return {
1821
- data: limitedProductId.map((id) => productResult.data.find((product) => product.id === id)).filter(Boolean),
1822
- count: totalResult.count,
1823
- maximum: totalResult.maximum,
1824
- minimal: totalResult.minimal,
1825
- distinct: totalResult.distinct,
1826
- };
1827
- });
1828
- }
1829
- findCatalogIdsByElasticSearch(term) {
1830
- return __awaiter(this, void 0, void 0, function* () {
1831
- if (this.productsByTerm[term])
1832
- return this.productsByTerm[term];
1833
- return (this.productsByTerm[term] = yield this.productIndex
1834
- .search(term, 999, this.shop)
1835
- .then(({ hits: products }) => {
1836
- const withStock = products.filter(({ _source }) => _source.stock.quantity > 0);
1837
- const withOutStock = products.filter(({ _source }) => _source.stock.quantity <= 0);
1838
- const sorted = [...withStock, ...withOutStock];
1839
- return [...new Set(sorted.map(({ _source }) => _source.id))];
1840
- }));
1841
- });
1842
- }
1843
- }
1844
- CatalogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService, deps: [{ token: 'ProductRepository' }, { token: 'ProductStockNotificationRepository' }, { token: 'CategoryRepository' }, { token: CATEGORY_STRUCTURE }, { token: DEFAULT_SHOP }, { token: i1$2.ProductsIndex }], target: i0.ɵɵFactoryTarget.Injectable });
1845
- CatalogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService });
1846
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService, decorators: [{
1847
- type: Injectable
1848
- }], ctorParameters: function () {
1849
- return [{ type: undefined, decorators: [{
1850
- type: Inject,
1851
- args: ['ProductRepository']
1852
- }] }, { type: undefined, decorators: [{
1853
- type: Inject,
1854
- args: ['ProductStockNotificationRepository']
1855
- }] }, { type: undefined, decorators: [{
1856
- type: Inject,
1857
- args: ['CategoryRepository']
1858
- }] }, { type: undefined, decorators: [{
1859
- type: Inject,
1860
- args: [CATEGORY_STRUCTURE]
1861
- }] }, { type: i1$2.Shops, decorators: [{
1862
- type: Inject,
1863
- args: [DEFAULT_SHOP]
1864
- }] }, { type: i1$2.ProductsIndex }];
1686
+ class CatalogService {
1687
+ constructor(productRepository, productStockNotificationRepository, categoryRepository, categoryStructureAdapter, shop, productIndex) {
1688
+ this.productRepository = productRepository;
1689
+ this.productStockNotificationRepository = productStockNotificationRepository;
1690
+ this.categoryRepository = categoryRepository;
1691
+ this.categoryStructureAdapter = categoryStructureAdapter;
1692
+ this.shop = shop;
1693
+ this.productIndex = productIndex;
1694
+ this.productsByTerm = {};
1695
+ this.buildFilterQuery = ({ clubDiscount, brands, prices, gender, tags, rate, customOptions, }) => {
1696
+ const filters = {};
1697
+ if (clubDiscount === null || clubDiscount === void 0 ? void 0 : clubDiscount.length)
1698
+ set(filters, 'price.subscriberDiscountPercentage', { operator: Where.IN, value: clubDiscount });
1699
+ if (brands === null || brands === void 0 ? void 0 : brands.length)
1700
+ filters.brand = { operator: Where.IN, value: brands };
1701
+ if (gender === null || gender === void 0 ? void 0 : gender.length)
1702
+ filters.gender = { operator: Where.IN, value: gender };
1703
+ if ((prices === null || prices === void 0 ? void 0 : prices.min) || (prices === null || prices === void 0 ? void 0 : prices.max))
1704
+ set(filters, prices.subscriberPrice ? 'price.subscriberPrice' : 'price.price', [
1705
+ ...(prices.min ? [{ operator: Where.GTE, value: Math.round(prices.min) }] : []),
1706
+ ...(prices.max ? [{ operator: Where.LTE, value: Math.ceil(prices.max) }] : []),
1707
+ ]);
1708
+ if (rate)
1709
+ filters.rate = { operator: Where.GTE, value: rate };
1710
+ if (tags === null || tags === void 0 ? void 0 : tags.length)
1711
+ filters.tags = { operator: Where.LIKE, value: tags };
1712
+ if (customOptions === null || customOptions === void 0 ? void 0 : customOptions.length)
1713
+ filters.filters = { operator: Where.LIKE, value: customOptions };
1714
+ return filters;
1715
+ };
1716
+ this.buildSortQuery = (sort) => {
1717
+ if (!sort || sort === 'most-relevant')
1718
+ return {};
1719
+ if (sort === 'best-sellers')
1720
+ return {
1721
+ shoppingCount: 'desc',
1722
+ rate: 'desc',
1723
+ stock: 'desc',
1724
+ name: 'asc',
1725
+ };
1726
+ if (sort === 'biggest-price')
1727
+ return { subscriberPrice: 'desc', rate: 'desc', shoppingCount: 'desc' };
1728
+ if (sort === 'lowest-price')
1729
+ return { subscriberPrice: 'asc', rate: 'desc', shoppingCount: 'desc' };
1730
+ if (sort === 'best-rating')
1731
+ return { rate: 'desc', shoppingCount: 'desc', stock: 'desc', name: 'asc' };
1732
+ if (sort === 'news')
1733
+ return { createdAt: 'desc' };
1734
+ if (sort === 'biggest-discount')
1735
+ return { subscriberDiscountPercentage: 'desc', rate: 'desc', shoppingCount: 'desc' };
1736
+ };
1737
+ this.buildLimitQuery = (options) => {
1738
+ const limit = (options === null || options === void 0 ? void 0 : options.perPage) || 20;
1739
+ return {
1740
+ limit,
1741
+ offset: (((options === null || options === void 0 ? void 0 : options.page) || 1) - 1) * limit,
1742
+ };
1743
+ };
1744
+ this.hasProfile = (options) => 'profile' in options;
1745
+ this.hasTerm = (options) => 'term' in options;
1746
+ this.hasCategory = (options) => 'category' in options;
1747
+ }
1748
+ fetchProducts(options) {
1749
+ var _a, _b, _c;
1750
+ return __awaiter(this, void 0, void 0, function* () {
1751
+ const limits = this.buildLimitQuery(options);
1752
+ if (this.hasProfile(options) && ((_a = options.filters) === null || _a === void 0 ? void 0 : _a.customOptions))
1753
+ throw new InvalidArgumentError(`It couldn't filled customOptions when profile is given`);
1754
+ if (this.hasProfile(options) && ((_b = options.filters) === null || _b === void 0 ? void 0 : _b.tags))
1755
+ throw new InvalidArgumentError(`It couldn't filled tags when profile is given`);
1756
+ if (this.hasTerm(options) && ((_c = options.filters) === null || _c === void 0 ? void 0 : _c.customOptions))
1757
+ throw new InvalidArgumentError(`It couldn't filled customOptions when term is given`);
1758
+ return yield this.findCatalog(options, limits).then(({ data, count: total, maximum, minimal, distinct }) => {
1759
+ var _a, _b, _c, _d, _e, _f, _g, _h;
1760
+ return ({
1761
+ products: { data: data.map((product) => RoundProductPricesHelper.roundProductPrices(product)), total },
1762
+ pages: Math.ceil(total / limits.limit),
1763
+ prices: {
1764
+ price: { min: +((_b = (_a = minimal === null || minimal === void 0 ? void 0 : minimal.price) === null || _a === void 0 ? void 0 : _a.price) === null || _b === void 0 ? void 0 : _b.toFixed(2)), max: +((_d = (_c = maximum === null || maximum === void 0 ? void 0 : maximum.price) === null || _c === void 0 ? void 0 : _c.price) === null || _d === void 0 ? void 0 : _d.toFixed(2)) },
1765
+ subscriberPrice: {
1766
+ min: +((_f = (_e = minimal === null || minimal === void 0 ? void 0 : minimal.price) === null || _e === void 0 ? void 0 : _e.subscriberPrice) === null || _f === void 0 ? void 0 : _f.toFixed(2)),
1767
+ max: +((_h = (_g = maximum === null || maximum === void 0 ? void 0 : maximum.price) === null || _g === void 0 ? void 0 : _g.subscriberPrice) === null || _h === void 0 ? void 0 : _h.toFixed(2)),
1768
+ },
1769
+ },
1770
+ brands: distinct === null || distinct === void 0 ? void 0 : distinct.brand,
1771
+ });
1772
+ });
1773
+ });
1774
+ }
1775
+ addCustomerToStockNotification(shop, productId, name, email) {
1776
+ return __awaiter(this, void 0, void 0, function* () {
1777
+ return this.productStockNotificationRepository.addCustomerEmail(shop, productId, name, email);
1778
+ });
1779
+ }
1780
+ findCatalog(options, limits) {
1781
+ return __awaiter(this, void 0, void 0, function* () {
1782
+ if (this.hasTerm(options) && options.sort === 'most-relevant') {
1783
+ const productsIds = yield this.findCatalogIdsByElasticSearch(options.term);
1784
+ return this.findCatalogAndSortByMostRevelantByTerm(productsIds, options, limits);
1785
+ }
1786
+ if (this.hasCategory(options) && options.sort === 'most-relevant') {
1787
+ const { mostRelevant } = options.category;
1788
+ console.log('mostRelevant', mostRelevant);
1789
+ const productsIds = yield this.productRepository
1790
+ .find({
1791
+ filters: Object.assign({}, (yield this.buildMainFilter(options))),
1792
+ })
1793
+ .then((products) => products.data.map((product) => product.id));
1794
+ return this.findCatalogAndSortByMostRevelant(mostRelevant, productsIds, options, limits);
1795
+ }
1796
+ const repoParams = Object.assign(Object.assign({ filters: Object.assign(Object.assign({}, (yield this.buildMainFilter(options))), this.buildFilterQuery((options === null || options === void 0 ? void 0 : options.filters) || {})) }, ((options === null || options === void 0 ? void 0 : options.sort) ? { orderBy: this.buildSortQuery(options === null || options === void 0 ? void 0 : options.sort) } : {})), { limits, options: Object.assign({ minimal: ['price'], maximum: ['price'] }, (!this.hasCategory(options) ? { distinct: ['brand'] } : {})) });
1797
+ if (['biggest-price', 'lowest-price', 'biggest-discount', 'best-rating'].includes(options.sort))
1798
+ return this.productRepository.findCatalog(repoParams);
1799
+ return this.productRepository.findCatalog(repoParams, (options === null || options === void 0 ? void 0 : options.mainGender) || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1800
+ });
1801
+ }
1802
+ buildMainFilter({ category, profile, term, }) {
1803
+ return __awaiter(this, void 0, void 0, function* () {
1804
+ if (category)
1805
+ return this.categoryStructureAdapter.buildProductFilterByCategory(category);
1806
+ if (profile)
1807
+ return { tags: { operator: Where.LIKE, value: profile } };
1808
+ if (term)
1809
+ return this.productIndex
1810
+ .search(term, 999, this.shop)
1811
+ .then((data) => ({ id: { operator: Where.IN, value: data.hits.map(({ _source }) => _source.id) } }));
1812
+ });
1813
+ }
1814
+ findCatalogAndSortByMostRevelant(mostRelevants, productIds, options, limits) {
1815
+ return __awaiter(this, void 0, void 0, function* () {
1816
+ const { offset } = limits;
1817
+ if (offset === 0) {
1818
+ limits.limit -= mostRelevants.length;
1819
+ }
1820
+ if (offset > 0) {
1821
+ limits.offset -= mostRelevants.length;
1822
+ }
1823
+ const mostRelevantProductsIds = [...new Set(...mostRelevants, ...productIds)];
1824
+ const totalResult = yield this.productRepository.findCatalog({
1825
+ fields: ['id', 'stock'],
1826
+ filters: Object.assign({ id: { operator: Where.IN, value: mostRelevantProductsIds } }, this.buildFilterQuery((options === null || options === void 0 ? void 0 : options.filters) || {})),
1827
+ options: {
1828
+ minimal: ['price'],
1829
+ maximum: ['price'],
1830
+ distinct: ['brand'],
1831
+ },
1832
+ }, (options === null || options === void 0 ? void 0 : options.mainGender) || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1833
+ const stockData = totalResult.data.filter((product) => product.stock.quantity > 0);
1834
+ const stockOut = totalResult.data.filter((product) => product.stock.quantity <= 0);
1835
+ const productIdsStock = mostRelevantProductsIds.filter((product) => stockData.some((result) => result.id == product));
1836
+ const productIdsStockOut = mostRelevantProductsIds.filter((product) => stockOut.some((result) => result.id == product));
1837
+ const limitedProductId = productIdsStock
1838
+ .concat(productIdsStockOut)
1839
+ .slice(limits.offset, limits.offset + limits.limit);
1840
+ const orderedId = productIds.filter((product) => limitedProductId.includes(product));
1841
+ const productResult = yield this.productRepository.findCatalog({
1842
+ filters: {
1843
+ id: { operator: Where.IN, value: orderedId },
1844
+ },
1845
+ });
1846
+ return {
1847
+ data: limitedProductId.map((id) => productResult.data.find((product) => product.id === id)).filter(Boolean),
1848
+ count: totalResult.count,
1849
+ maximum: totalResult.maximum,
1850
+ minimal: totalResult.minimal,
1851
+ distinct: totalResult.distinct,
1852
+ };
1853
+ });
1854
+ }
1855
+ findCatalogAndSortByMostRevelantByTerm(productIds, options, limits) {
1856
+ return __awaiter(this, void 0, void 0, function* () {
1857
+ const totalResult = yield this.productRepository.findCatalog({
1858
+ fields: ['id', 'stock'],
1859
+ filters: Object.assign({ id: { operator: Where.IN, value: productIds } }, this.buildFilterQuery((options === null || options === void 0 ? void 0 : options.filters) || {})),
1860
+ options: {
1861
+ minimal: ['price'],
1862
+ maximum: ['price'],
1863
+ distinct: ['brand'],
1864
+ },
1865
+ }, (options === null || options === void 0 ? void 0 : options.mainGender) || this.shop === Shops.MENSMARKET ? 'male' : 'female');
1866
+ const stockData = totalResult.data.filter((product) => product.stock.quantity > 0);
1867
+ const stockOut = totalResult.data.filter((product) => product.stock.quantity <= 0);
1868
+ const productIdsStock = productIds.filter((product) => stockData.some((result) => result.id == product));
1869
+ const productIdsStockOut = productIds.filter((product) => stockOut.some((result) => result.id == product));
1870
+ const limitedProductId = productIdsStock
1871
+ .concat(productIdsStockOut)
1872
+ .slice(limits.offset, limits.offset + limits.limit);
1873
+ const orderedId = productIds.filter((product) => limitedProductId.includes(product));
1874
+ const productResult = yield this.productRepository.findCatalog({
1875
+ filters: {
1876
+ id: { operator: Where.IN, value: orderedId },
1877
+ },
1878
+ });
1879
+ return {
1880
+ data: limitedProductId.map((id) => productResult.data.find((product) => product.id === id)).filter(Boolean),
1881
+ count: totalResult.count,
1882
+ maximum: totalResult.maximum,
1883
+ minimal: totalResult.minimal,
1884
+ distinct: totalResult.distinct,
1885
+ };
1886
+ });
1887
+ }
1888
+ findCatalogIdsByElasticSearch(term) {
1889
+ return __awaiter(this, void 0, void 0, function* () {
1890
+ if (this.productsByTerm[term])
1891
+ return this.productsByTerm[term];
1892
+ return (this.productsByTerm[term] = yield this.productIndex
1893
+ .search(term, 999, this.shop)
1894
+ .then(({ hits: products }) => {
1895
+ const withStock = products.filter(({ _source }) => _source.stock.quantity > 0);
1896
+ const withOutStock = products.filter(({ _source }) => _source.stock.quantity <= 0);
1897
+ const sorted = [...withStock, ...withOutStock];
1898
+ return [...new Set(sorted.map(({ _source }) => _source.id))];
1899
+ }));
1900
+ });
1901
+ }
1902
+ }
1903
+ CatalogService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService, deps: [{ token: 'ProductRepository' }, { token: 'ProductStockNotificationRepository' }, { token: 'CategoryRepository' }, { token: CATEGORY_STRUCTURE }, { token: DEFAULT_SHOP }, { token: i1$2.ProductsIndex }], target: i0.ɵɵFactoryTarget.Injectable });
1904
+ CatalogService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService });
1905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CatalogService, decorators: [{
1906
+ type: Injectable
1907
+ }], ctorParameters: function () {
1908
+ return [{ type: undefined, decorators: [{
1909
+ type: Inject,
1910
+ args: ['ProductRepository']
1911
+ }] }, { type: undefined, decorators: [{
1912
+ type: Inject,
1913
+ args: ['ProductStockNotificationRepository']
1914
+ }] }, { type: undefined, decorators: [{
1915
+ type: Inject,
1916
+ args: ['CategoryRepository']
1917
+ }] }, { type: undefined, decorators: [{
1918
+ type: Inject,
1919
+ args: [CATEGORY_STRUCTURE]
1920
+ }] }, { type: i1$2.Shops, decorators: [{
1921
+ type: Inject,
1922
+ args: [DEFAULT_SHOP]
1923
+ }] }, { type: i1$2.ProductsIndex }];
1865
1924
  } });
1866
1925
 
1867
- class CategoryService {
1868
- constructor(productRepository, categoryRepository, categoryFilterRepository, categoryStructureAdapter, shop) {
1869
- this.productRepository = productRepository;
1870
- this.categoryRepository = categoryRepository;
1871
- this.categoryFilterRepository = categoryFilterRepository;
1872
- this.categoryStructureAdapter = categoryStructureAdapter;
1873
- this.shop = shop;
1874
- }
1875
- fetchBrands(category, options) {
1876
- return __awaiter(this, void 0, void 0, function* () {
1877
- const brands = yield this.productRepository
1878
- .findCatalog({
1879
- filters: yield this.categoryStructureAdapter.buildProductFilterByCategory(category),
1880
- fields: ['brand'],
1881
- }, (options === null || options === void 0 ? void 0 : options.mainGender) ? options === null || options === void 0 ? void 0 : options.mainGender : this.shop === Shops.MENSMARKET ? 'male' : 'female')
1882
- .then(({ data }) => Object.keys(data.map((product) => product.brand).reduce((brands, brand) => (Object.assign(Object.assign({}, brands), { [brand]: true })), {})));
1883
- return this.categoryRepository
1884
- .find({ filters: { brandCategory: true, shop: (options === null || options === void 0 ? void 0 : options.shop) || this.shop }, orderBy: { name: 'asc' } })
1885
- .then(({ data }) => data.filter((category) => brands.includes(category.conditions.brand)));
1886
- });
1887
- }
1888
- fetchFilterOptions(category) {
1889
- return __awaiter(this, void 0, void 0, function* () {
1890
- return yield this.categoryFilterRepository
1891
- .find({ filters: { categoryId: +category.id } })
1892
- .then(({ data }) => data.map((categoryFilter) => categoryFilter.filter));
1893
- });
1894
- }
1895
- }
1896
- CategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService, deps: [{ token: 'ProductRepository' }, { token: 'CategoryRepository' }, { token: 'CategoryFilterRepository' }, { token: CATEGORY_STRUCTURE }, { token: DEFAULT_SHOP }], target: i0.ɵɵFactoryTarget.Injectable });
1897
- CategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService });
1898
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService, decorators: [{
1899
- type: Injectable
1900
- }], ctorParameters: function () {
1901
- return [{ type: undefined, decorators: [{
1902
- type: Inject,
1903
- args: ['ProductRepository']
1904
- }] }, { type: undefined, decorators: [{
1905
- type: Inject,
1906
- args: ['CategoryRepository']
1907
- }] }, { type: undefined, decorators: [{
1908
- type: Inject,
1909
- args: ['CategoryFilterRepository']
1910
- }] }, { type: undefined, decorators: [{
1911
- type: Inject,
1912
- args: [CATEGORY_STRUCTURE]
1913
- }] }, { type: i1$2.Shops, decorators: [{
1914
- type: Inject,
1915
- args: [DEFAULT_SHOP]
1916
- }] }];
1926
+ class CategoryService {
1927
+ constructor(productRepository, categoryRepository, categoryFilterRepository, categoryStructureAdapter, shop) {
1928
+ this.productRepository = productRepository;
1929
+ this.categoryRepository = categoryRepository;
1930
+ this.categoryFilterRepository = categoryFilterRepository;
1931
+ this.categoryStructureAdapter = categoryStructureAdapter;
1932
+ this.shop = shop;
1933
+ }
1934
+ fetchBrands(category, options) {
1935
+ return __awaiter(this, void 0, void 0, function* () {
1936
+ const brands = yield this.productRepository
1937
+ .findCatalog({
1938
+ filters: yield this.categoryStructureAdapter.buildProductFilterByCategory(category),
1939
+ fields: ['brand'],
1940
+ }, (options === null || options === void 0 ? void 0 : options.mainGender) ? options === null || options === void 0 ? void 0 : options.mainGender : this.shop === Shops.MENSMARKET ? 'male' : 'female')
1941
+ .then(({ data }) => Object.keys(data.map((product) => product.brand).reduce((brands, brand) => (Object.assign(Object.assign({}, brands), { [brand]: true })), {})));
1942
+ return this.categoryRepository
1943
+ .find({ filters: { brandCategory: true, shop: (options === null || options === void 0 ? void 0 : options.shop) || this.shop }, orderBy: { name: 'asc' } })
1944
+ .then(({ data }) => data.filter((category) => brands.includes(category.conditions.brand)));
1945
+ });
1946
+ }
1947
+ fetchFilterOptions(category) {
1948
+ return __awaiter(this, void 0, void 0, function* () {
1949
+ return yield this.categoryFilterRepository
1950
+ .find({ filters: { categoryId: +category.id } })
1951
+ .then(({ data }) => data.map((categoryFilter) => categoryFilter.filter));
1952
+ });
1953
+ }
1954
+ }
1955
+ CategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService, deps: [{ token: 'ProductRepository' }, { token: 'CategoryRepository' }, { token: 'CategoryFilterRepository' }, { token: CATEGORY_STRUCTURE }, { token: DEFAULT_SHOP }], target: i0.ɵɵFactoryTarget.Injectable });
1956
+ CategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService });
1957
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CategoryService, decorators: [{
1958
+ type: Injectable
1959
+ }], ctorParameters: function () {
1960
+ return [{ type: undefined, decorators: [{
1961
+ type: Inject,
1962
+ args: ['ProductRepository']
1963
+ }] }, { type: undefined, decorators: [{
1964
+ type: Inject,
1965
+ args: ['CategoryRepository']
1966
+ }] }, { type: undefined, decorators: [{
1967
+ type: Inject,
1968
+ args: ['CategoryFilterRepository']
1969
+ }] }, { type: undefined, decorators: [{
1970
+ type: Inject,
1971
+ args: [CATEGORY_STRUCTURE]
1972
+ }] }, { type: i1$2.Shops, decorators: [{
1973
+ type: Inject,
1974
+ args: [DEFAULT_SHOP]
1975
+ }] }];
1917
1976
  } });
1918
1977
 
1919
- var ProductSorts;
1920
- (function (ProductSorts) {
1921
- ProductSorts["MOST_RELEVANT"] = "most-relevant";
1922
- ProductSorts["BEST_SELLER"] = "best-sellers";
1923
- ProductSorts["BIGGEST_PRICE"] = "biggest-price";
1924
- ProductSorts["LOWEST_PRICE"] = "lowest-price";
1925
- ProductSorts["BIGGEST_DISCOUNT"] = "biggest-discount";
1926
- ProductSorts["BEST_RATING"] = "best-rating";
1927
- ProductSorts["NEWS"] = "news";
1978
+ var ProductSorts;
1979
+ (function (ProductSorts) {
1980
+ ProductSorts["MOST_RELEVANT"] = "most-relevant";
1981
+ ProductSorts["BEST_SELLER"] = "best-sellers";
1982
+ ProductSorts["BIGGEST_PRICE"] = "biggest-price";
1983
+ ProductSorts["LOWEST_PRICE"] = "lowest-price";
1984
+ ProductSorts["BIGGEST_DISCOUNT"] = "biggest-discount";
1985
+ ProductSorts["BEST_RATING"] = "best-rating";
1986
+ ProductSorts["NEWS"] = "news";
1928
1987
  })(ProductSorts || (ProductSorts = {}));
1929
1988
 
1930
- class CategoryWithTree extends Category {
1931
- }
1932
- __decorate([
1933
- Type(() => CategoryWithTree),
1934
- __metadata("design:type", Array)
1989
+ class CategoryWithTree extends Category {
1990
+ }
1991
+ __decorate([
1992
+ Type(() => CategoryWithTree),
1993
+ __metadata("design:type", Array)
1935
1994
  ], CategoryWithTree.prototype, "children", void 0);
1936
1995
 
1937
- class WishlistService {
1938
- constructor(wishlistRepository, shop, productRepository, categoryFilterRepository, categoryRepository, productStockNotificationRepository, productIndex) {
1939
- this.wishlistRepository = wishlistRepository;
1940
- this.shop = shop;
1941
- const categoryStructureAdapter = new NewCategoryStructureAdapter(wishlistRepository);
1942
- this.catalogService = new CatalogService(productRepository, productStockNotificationRepository, categoryRepository, categoryStructureAdapter, shop, productIndex);
1943
- this.categoryService = new CategoryService(productRepository, categoryRepository, categoryFilterRepository, categoryStructureAdapter, shop);
1944
- }
1945
- getCatalogService() {
1946
- return this.catalogService;
1947
- }
1948
- getCategoryService() {
1949
- return this.categoryService;
1950
- }
1951
- create({ personId, title, description, published, userFullName, userPhoto, theme, bannerUrl, }) {
1952
- return __awaiter(this, void 0, void 0, function* () {
1953
- const data = {
1954
- slug: '',
1955
- name: title,
1956
- description,
1957
- metadata: {
1958
- title: `${userFullName} - ${title}`,
1959
- description: `${userFullName} - ${description}`,
1960
- },
1961
- shop: this.shop,
1962
- shops: [this.shop],
1963
- personId,
1964
- personName: userFullName,
1965
- personPhoto: userPhoto,
1966
- brandCategory: false,
1967
- published,
1968
- theme,
1969
- bannerUrl,
1970
- };
1971
- const newWishlist = yield this.wishlistRepository.create(data);
1972
- yield this.wishlistRepository.update({ id: newWishlist.id, slug: newWishlist.id });
1973
- return Wishlist.toInstance(Object.assign(Object.assign({}, newWishlist.toPlain()), { slug: newWishlist.id }));
1974
- });
1975
- }
1976
- update({ id, title, description, published, userFullName, userPhoto, theme, bannerUrl, }) {
1977
- const data = {
1978
- id,
1979
- name: title,
1980
- description,
1981
- published,
1982
- metadata: {
1983
- title: `${userFullName} - ${title}`,
1984
- description: `${userFullName} - ${description}`,
1985
- },
1986
- personName: userFullName,
1987
- personPhoto: userPhoto,
1988
- theme,
1989
- bannerUrl,
1990
- };
1991
- return this.wishlistRepository.update(data);
1992
- }
1993
- delete(wishlistId) {
1994
- return this.wishlistRepository.delete({ id: wishlistId });
1995
- }
1996
- getWishlistBySlug(slug) {
1997
- const [id] = slug.split('-');
1998
- if (+id)
1999
- return this.wishlistRepository.get({ id });
2000
- return this.wishlistRepository.getWishlistBySlug(slug);
2001
- }
2002
- getWishlistsByPerson(personId) {
2003
- return this.wishlistRepository.getWishlistByPerson(personId);
2004
- }
2005
- addProduct(wishlistId, productId) {
2006
- return __awaiter(this, void 0, void 0, function* () {
2007
- const wishlist = yield this.wishlistRepository.get({ id: wishlistId });
2008
- const hasProduct = wishlist.products.some((p) => p == productId);
2009
- if (!hasProduct) {
2010
- wishlist.products = [...wishlist.products, productId];
2011
- return this.wishlistRepository.update({ id: wishlistId, products: wishlist.products });
2012
- }
2013
- return wishlist;
2014
- });
2015
- }
2016
- removeProduct(wishlistId, productId) {
2017
- return __awaiter(this, void 0, void 0, function* () {
2018
- const wishlist = yield this.wishlistRepository.get({ id: wishlistId });
2019
- const productIndex = wishlist.products.findIndex((p) => p == productId);
2020
- if (productIndex != -1) {
2021
- wishlist.products.splice(productIndex, 1);
2022
- if (!wishlist.products.length)
2023
- return this.wishlistRepository.update({ id: wishlistId, products: { action: 'remove' } });
2024
- return this.wishlistRepository.update({ id: wishlistId, products: wishlist.products });
2025
- }
2026
- return wishlist;
2027
- });
2028
- }
2029
- }
2030
- WishlistService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService, deps: [{ token: 'WishlistRepository' }, { token: DEFAULT_SHOP }, { token: 'ProductRepository' }, { token: 'CategoryFilterRepository' }, { token: 'CategoryRepository' }, { token: 'ProductStockNotificationRepository' }, { token: i1$2.ProductsIndex }], target: i0.ɵɵFactoryTarget.Injectable });
2031
- WishlistService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService });
2032
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService, decorators: [{
2033
- type: Injectable
2034
- }], ctorParameters: function () {
2035
- return [{ type: undefined, decorators: [{
2036
- type: Inject,
2037
- args: ['WishlistRepository']
2038
- }] }, { type: i1$2.Shops, decorators: [{
2039
- type: Inject,
2040
- args: [DEFAULT_SHOP]
2041
- }] }, { type: undefined, decorators: [{
2042
- type: Inject,
2043
- args: ['ProductRepository']
2044
- }] }, { type: undefined, decorators: [{
2045
- type: Inject,
2046
- args: ['CategoryFilterRepository']
2047
- }] }, { type: undefined, decorators: [{
2048
- type: Inject,
2049
- args: ['CategoryRepository']
2050
- }] }, { type: undefined, decorators: [{
2051
- type: Inject,
2052
- args: ['ProductStockNotificationRepository']
2053
- }] }, { type: i1$2.ProductsIndex }];
1996
+ class WishlistService {
1997
+ constructor(wishlistRepository, shop, productRepository, categoryFilterRepository, categoryRepository, productStockNotificationRepository, productIndex) {
1998
+ this.wishlistRepository = wishlistRepository;
1999
+ this.shop = shop;
2000
+ const categoryStructureAdapter = new NewCategoryStructureAdapter(wishlistRepository);
2001
+ this.catalogService = new CatalogService(productRepository, productStockNotificationRepository, categoryRepository, categoryStructureAdapter, shop, productIndex);
2002
+ this.categoryService = new CategoryService(productRepository, categoryRepository, categoryFilterRepository, categoryStructureAdapter, shop);
2003
+ }
2004
+ getCatalogService() {
2005
+ return this.catalogService;
2006
+ }
2007
+ getCategoryService() {
2008
+ return this.categoryService;
2009
+ }
2010
+ create({ personId, title, description, published, userFullName, userPhoto, theme, bannerUrl, }) {
2011
+ return __awaiter(this, void 0, void 0, function* () {
2012
+ const data = {
2013
+ slug: '',
2014
+ name: title,
2015
+ description,
2016
+ metadata: {
2017
+ title: `${userFullName} - ${title}`,
2018
+ description: `${userFullName} - ${description}`,
2019
+ },
2020
+ shop: this.shop,
2021
+ shops: [this.shop],
2022
+ personId,
2023
+ personName: userFullName,
2024
+ personPhoto: userPhoto,
2025
+ brandCategory: false,
2026
+ published,
2027
+ theme,
2028
+ bannerUrl,
2029
+ };
2030
+ const newWishlist = yield this.wishlistRepository.create(data);
2031
+ yield this.wishlistRepository.update({ id: newWishlist.id, slug: newWishlist.id });
2032
+ return Wishlist.toInstance(Object.assign(Object.assign({}, newWishlist.toPlain()), { slug: newWishlist.id }));
2033
+ });
2034
+ }
2035
+ update({ id, title, description, published, userFullName, userPhoto, theme, bannerUrl, }) {
2036
+ const data = {
2037
+ id,
2038
+ name: title,
2039
+ description,
2040
+ published,
2041
+ metadata: {
2042
+ title: `${userFullName} - ${title}`,
2043
+ description: `${userFullName} - ${description}`,
2044
+ },
2045
+ personName: userFullName,
2046
+ personPhoto: userPhoto,
2047
+ theme,
2048
+ bannerUrl,
2049
+ };
2050
+ return this.wishlistRepository.update(data);
2051
+ }
2052
+ delete(wishlistId) {
2053
+ return this.wishlistRepository.delete({ id: wishlistId });
2054
+ }
2055
+ getWishlistBySlug(slug) {
2056
+ const [id] = slug.split('-');
2057
+ if (+id)
2058
+ return this.wishlistRepository.get({ id });
2059
+ return this.wishlistRepository.getWishlistBySlug(slug);
2060
+ }
2061
+ getWishlistsByPerson(personId) {
2062
+ return this.wishlistRepository.getWishlistByPerson(personId);
2063
+ }
2064
+ addProduct(wishlistId, productId) {
2065
+ return __awaiter(this, void 0, void 0, function* () {
2066
+ const wishlist = yield this.wishlistRepository.get({ id: wishlistId });
2067
+ const hasProduct = wishlist.products.some((p) => p == productId);
2068
+ if (!hasProduct) {
2069
+ wishlist.products = [...wishlist.products, productId];
2070
+ return this.wishlistRepository.update({ id: wishlistId, products: wishlist.products });
2071
+ }
2072
+ return wishlist;
2073
+ });
2074
+ }
2075
+ removeProduct(wishlistId, productId) {
2076
+ return __awaiter(this, void 0, void 0, function* () {
2077
+ const wishlist = yield this.wishlistRepository.get({ id: wishlistId });
2078
+ const productIndex = wishlist.products.findIndex((p) => p == productId);
2079
+ if (productIndex != -1) {
2080
+ wishlist.products.splice(productIndex, 1);
2081
+ if (!wishlist.products.length)
2082
+ return this.wishlistRepository.update({ id: wishlistId, products: { action: 'remove' } });
2083
+ return this.wishlistRepository.update({ id: wishlistId, products: wishlist.products });
2084
+ }
2085
+ return wishlist;
2086
+ });
2087
+ }
2088
+ }
2089
+ WishlistService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService, deps: [{ token: 'WishlistRepository' }, { token: DEFAULT_SHOP }, { token: 'ProductRepository' }, { token: 'CategoryFilterRepository' }, { token: 'CategoryRepository' }, { token: 'ProductStockNotificationRepository' }, { token: i1$2.ProductsIndex }], target: i0.ɵɵFactoryTarget.Injectable });
2090
+ WishlistService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService });
2091
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: WishlistService, decorators: [{
2092
+ type: Injectable
2093
+ }], ctorParameters: function () {
2094
+ return [{ type: undefined, decorators: [{
2095
+ type: Inject,
2096
+ args: ['WishlistRepository']
2097
+ }] }, { type: i1$2.Shops, decorators: [{
2098
+ type: Inject,
2099
+ args: [DEFAULT_SHOP]
2100
+ }] }, { type: undefined, decorators: [{
2101
+ type: Inject,
2102
+ args: ['ProductRepository']
2103
+ }] }, { type: undefined, decorators: [{
2104
+ type: Inject,
2105
+ args: ['CategoryFilterRepository']
2106
+ }] }, { type: undefined, decorators: [{
2107
+ type: Inject,
2108
+ args: ['CategoryRepository']
2109
+ }] }, { type: undefined, decorators: [{
2110
+ type: Inject,
2111
+ args: ['ProductStockNotificationRepository']
2112
+ }] }, { type: i1$2.ProductsIndex }];
2054
2113
  } });
2055
2114
 
2056
- class CheckoutSubscriptionService {
2057
- constructor(checkoutSubscriptionRepository, dataPersistence, couponService) {
2058
- this.checkoutSubscriptionRepository = checkoutSubscriptionRepository;
2059
- this.dataPersistence = dataPersistence;
2060
- this.couponService = couponService;
2061
- }
2062
- getCheckoutSubscription(checkoutData) {
2063
- return this.dataPersistence
2064
- .get('checkoutSubscriptionId')
2065
- .pipe(concatMap((id) => !isNil(id) ? this.checkoutSubscriptionRepository.get({ id }) : this.createCheckoutSubscription(checkoutData)));
2066
- }
2067
- clearCheckoutSubscriptionFromSession() {
2068
- return this.dataPersistence.remove('checkoutSubscriptionId');
2069
- }
2070
- checkCoupon(nickname, userEmail) {
2071
- return this.getCheckoutSubscription().pipe(concatMap((checkout) => this.couponService
2072
- .checkCoupon(nickname, CheckoutTypes.SUBSCRIPTION, checkout, checkout.subscriptionPlan.name)
2073
- .pipe()));
2074
- }
2075
- calcDiscountSubscription(coupon) {
2076
- return this.getCheckoutSubscription().pipe(concatMap((checkout) => this.couponService.calcDiscountSubscription(coupon, checkout).pipe()));
2077
- }
2078
- createCheckoutSubscription(checkoutData) {
2079
- return __awaiter(this, void 0, void 0, function* () {
2080
- const checkout = yield this.checkoutSubscriptionRepository.create(Object.assign({ createdAt: new Date() }, CheckoutSubscription.toInstance(pick(checkoutData, ['user', 'shop'])).toPlain()));
2081
- yield this.dataPersistence.set('checkoutSubscriptionId', checkout.id).toPromise();
2082
- return checkout;
2083
- });
2084
- }
2085
- }
2086
- CheckoutSubscriptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService, deps: [{ token: 'CheckoutSubscriptionRepository' }, { token: PERSISTENCE_PROVIDER }, { token: CouponService }], target: i0.ɵɵFactoryTarget.Injectable });
2087
- CheckoutSubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService });
2088
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService, decorators: [{
2089
- type: Injectable
2090
- }], ctorParameters: function () {
2091
- return [{ type: undefined, decorators: [{
2092
- type: Inject,
2093
- args: ['CheckoutSubscriptionRepository']
2094
- }] }, { type: undefined, decorators: [{
2095
- type: Inject,
2096
- args: [PERSISTENCE_PROVIDER]
2097
- }] }, { type: CouponService }];
2115
+ class CheckoutSubscriptionService {
2116
+ constructor(checkoutSubscriptionRepository, dataPersistence, couponService) {
2117
+ this.checkoutSubscriptionRepository = checkoutSubscriptionRepository;
2118
+ this.dataPersistence = dataPersistence;
2119
+ this.couponService = couponService;
2120
+ }
2121
+ getCheckoutSubscription(checkoutData) {
2122
+ return this.dataPersistence
2123
+ .get('checkoutSubscriptionId')
2124
+ .pipe(concatMap((id) => !isNil(id) ? this.checkoutSubscriptionRepository.get({ id }) : this.createCheckoutSubscription(checkoutData)));
2125
+ }
2126
+ clearCheckoutSubscriptionFromSession() {
2127
+ return this.dataPersistence.remove('checkoutSubscriptionId');
2128
+ }
2129
+ checkCoupon(nickname, userEmail) {
2130
+ return this.getCheckoutSubscription().pipe(concatMap((checkout) => this.couponService
2131
+ .checkCoupon(nickname, CheckoutTypes.SUBSCRIPTION, checkout, checkout.subscriptionPlan.name)
2132
+ .pipe()));
2133
+ }
2134
+ calcDiscountSubscription(coupon) {
2135
+ return this.getCheckoutSubscription().pipe(concatMap((checkout) => this.couponService.calcDiscountSubscription(coupon, checkout).pipe()));
2136
+ }
2137
+ createCheckoutSubscription(checkoutData) {
2138
+ return __awaiter(this, void 0, void 0, function* () {
2139
+ const checkout = yield this.checkoutSubscriptionRepository.create(Object.assign({ createdAt: new Date() }, CheckoutSubscription.toInstance(pick(checkoutData, ['user', 'shop'])).toPlain()));
2140
+ yield this.dataPersistence.set('checkoutSubscriptionId', checkout.id).toPromise();
2141
+ return checkout;
2142
+ });
2143
+ }
2144
+ }
2145
+ CheckoutSubscriptionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService, deps: [{ token: 'CheckoutSubscriptionRepository' }, { token: PERSISTENCE_PROVIDER }, { token: CouponService }], target: i0.ɵɵFactoryTarget.Injectable });
2146
+ CheckoutSubscriptionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService });
2147
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: CheckoutSubscriptionService, decorators: [{
2148
+ type: Injectable
2149
+ }], ctorParameters: function () {
2150
+ return [{ type: undefined, decorators: [{
2151
+ type: Inject,
2152
+ args: ['CheckoutSubscriptionRepository']
2153
+ }] }, { type: undefined, decorators: [{
2154
+ type: Inject,
2155
+ args: [PERSISTENCE_PROVIDER]
2156
+ }] }, { type: CouponService }];
2098
2157
  } });
2099
2158
 
2100
- class UtilHelper {
2101
- static createSlug(name) {
2102
- return name
2103
- .toLowerCase()
2104
- .replace(/\s+/g, '-') // Replace spaces with -
2105
- .replace(/[ãàáäâ]/g, 'a') // Replace spaces with -
2106
- .replace(/[ẽèéëê]/g, 'e') // Replace spaces with -
2107
- .replace(/[ìíïî]/g, 'i') // Replace spaces with -
2108
- .replace(/[õòóöô]/g, 'o') // Replace spaces with -
2109
- .replace(/[ùúüû]/g, 'u') // Replace spaces with -
2110
- .replace(/[ñ]/g, 'n') // Replace spaces with -
2111
- .replace(/[ç]/g, 'c') // Replace spaces with -
2112
- .replace(/[&]/g, 'and') // Replace spaces with -
2113
- .replace(/[^\w\-]+/g, '') // Remove all non-word chars
2114
- .replace(/\-\-+/g, '-'); // Replace multiple - with single -
2115
- }
2159
+ class UtilHelper {
2160
+ static createSlug(name) {
2161
+ return name
2162
+ .toLowerCase()
2163
+ .replace(/\s+/g, '-') // Replace spaces with -
2164
+ .replace(/[ãàáäâ]/g, 'a') // Replace spaces with -
2165
+ .replace(/[ẽèéëê]/g, 'e') // Replace spaces with -
2166
+ .replace(/[ìíïî]/g, 'i') // Replace spaces with -
2167
+ .replace(/[õòóöô]/g, 'o') // Replace spaces with -
2168
+ .replace(/[ùúüû]/g, 'u') // Replace spaces with -
2169
+ .replace(/[ñ]/g, 'n') // Replace spaces with -
2170
+ .replace(/[ç]/g, 'c') // Replace spaces with -
2171
+ .replace(/[&]/g, 'and') // Replace spaces with -
2172
+ .replace(/[^\w\-]+/g, '') // Remove all non-word chars
2173
+ .replace(/\-\-+/g, '-'); // Replace multiple - with single -
2174
+ }
2116
2175
  }
2117
2176
 
2118
- class HomeShopService {
2119
- get homeId() {
2120
- if (this.defaultShop === Shops.GLAMSHOP)
2121
- return 'glamshop';
2122
- if (this.defaultShop === Shops.MENSMARKET)
2123
- return 'mens_market';
2124
- return null;
2125
- }
2126
- constructor(categoryRepository, homeRepository, productRepository, defaultShop) {
2127
- this.categoryRepository = categoryRepository;
2128
- this.homeRepository = homeRepository;
2129
- this.productRepository = productRepository;
2130
- this.defaultShop = defaultShop;
2131
- this.buildCategoryGroupWithRequiredData = (group) => {
2132
- var _a, _b;
2133
- return ({
2134
- category: Category.toInstance(pick(((_a = group === null || group === void 0 ? void 0 : group.category) === null || _a === void 0 ? void 0 : _a.toPlain()) || {}, ['id', 'name', 'slug', 'conditions'])),
2135
- products: ((_b = group === null || group === void 0 ? void 0 : group.products) === null || _b === void 0 ? void 0 : _b.map((product) => Product.toInstance(pick((product === null || product === void 0 ? void 0 : product.toPlain()) || {}, [
2136
- 'id',
2137
- 'price',
2138
- 'reviews',
2139
- 'hasVariants',
2140
- 'slug',
2141
- 'sku',
2142
- 'stock',
2143
- 'costPrice',
2144
- 'images',
2145
- 'miniatures',
2146
- 'name',
2147
- 'weight',
2148
- 'rate',
2149
- 'type',
2150
- 'brand',
2151
- ])))) || [],
2152
- });
2153
- };
2154
- }
2155
- getHomeData() {
2156
- return this.getHomeConfiguration().pipe(map((home) => { var _a; return (((_a = home === null || home === void 0 ? void 0 : home.data) === null || _a === void 0 ? void 0 : _a.expiresAt) > new Date() ? home : null); }), concatMap((home) => home
2157
- ? of(home)
2158
- : forkJoin([
2159
- this.getDiscoverProducts(this.gender),
2160
- this.getFeaturedProducts(this.gender),
2161
- this.getVerticalProducts(this.gender),
2162
- ]).pipe(map(([discoverProducts, featuredProducts, verticalProducts]) => ({
2163
- discoverProducts,
2164
- featuredProducts,
2165
- verticalProducts,
2166
- })), concatMap((data) => this.saveHomeData(data)))));
2167
- }
2168
- getBanners(type) {
2169
- return this.getHomeConfiguration().pipe(map((home) => {
2170
- if (type === 'brand')
2171
- return home.brandsCarousel;
2172
- if (type === 'buyToWin')
2173
- return [home.buyToWinBanner];
2174
- if (type === 'block')
2175
- return home.blockBanners;
2176
- if (type === 'blog')
2177
- return [home.blogBanner];
2178
- return [];
2179
- }));
2180
- }
2181
- getMinValueForFreeShipping() {
2182
- return this.getHomeConfiguration().pipe(map((home) => home.minValueForFreeShipping));
2183
- }
2184
- getDiscoverProducts(gender) {
2185
- return this.getHomeConfiguration().pipe(concatMap((home) => from(this.categoryRepository.getCategoriesForHome(home.discoverCategories, undefined, gender)).pipe(map((groups) => groups.map(this.buildCategoryGroupWithRequiredData)))));
2186
- }
2187
- getFeaturedProducts(gender) {
2188
- return this.getHomeConfiguration().pipe(concatMap((home) => from(this.categoryRepository.getCategoriesForHome(home.featuredCategories, undefined, gender)).pipe(map((groups) => groups.map(this.buildCategoryGroupWithRequiredData)))));
2189
- }
2190
- getVerticalProducts(gender) {
2191
- return this.getHomeConfiguration().pipe(concatMap((home) => forkJoin(home.verticalCarousels.filter(Boolean).map((id) => from(this.categoryRepository.get({ id })).pipe(concatMap((category) => from(this.productRepository.find({
2192
- filters: Object.assign({ categories: { operator: Where.IN, value: [category.id] } }, (gender ? { tags: { operator: Where.IN, value: [gender] } } : {})),
2193
- limits: { limit: 12 },
2194
- })).pipe(map((products) => ({ category, products })))), map(({ category, products }) => ({ category, products: products.data })), map(this.buildCategoryGroupWithRequiredData))))));
2195
- }
2196
- getHomeConfiguration() {
2197
- return of(this.homeConfiguration).pipe(concatMap((home) => home
2198
- ? of(home)
2199
- : !this.homeId
2200
- ? throwError(new RequiredArgumentError(['homeId']))
2201
- : from(this.homeRepository.get({ id: this.homeId })).pipe(tap((homeLoaded) => (this.homeConfiguration = homeLoaded)))));
2202
- }
2203
- saveHomeData(homeData) {
2204
- const data = {
2205
- createdAt: new Date(),
2206
- expiresAt: add(new Date(), { hours: 1 }),
2207
- data: homeData,
2208
- };
2209
- return from(this.homeRepository.update({
2210
- id: this.homeId,
2211
- data,
2212
- })).pipe(tap(() => (this.homeConfiguration.data = data)), map(() => this.homeConfiguration));
2213
- }
2214
- get gender() {
2215
- return this.homeId === 'mens_market' ? 'masculino' : undefined;
2216
- }
2217
- }
2218
- HomeShopService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService, deps: [{ token: 'CategoryRepository' }, { token: 'HomeRepository' }, { token: 'ProductRepository' }, { token: DEFAULT_SHOP }], target: i0.ɵɵFactoryTarget.Injectable });
2219
- HomeShopService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService });
2220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService, decorators: [{
2221
- type: Injectable
2222
- }], ctorParameters: function () {
2223
- return [{ type: undefined, decorators: [{
2224
- type: Inject,
2225
- args: ['CategoryRepository']
2226
- }] }, { type: undefined, decorators: [{
2227
- type: Inject,
2228
- args: ['HomeRepository']
2229
- }] }, { type: undefined, decorators: [{
2230
- type: Inject,
2231
- args: ['ProductRepository']
2232
- }] }, { type: i1$2.Shops, decorators: [{
2233
- type: Inject,
2234
- args: [DEFAULT_SHOP]
2235
- }] }];
2177
+ class HomeShopService {
2178
+ get homeId() {
2179
+ if (this.defaultShop === Shops.GLAMSHOP)
2180
+ return 'glamshop';
2181
+ if (this.defaultShop === Shops.MENSMARKET)
2182
+ return 'mens_market';
2183
+ return null;
2184
+ }
2185
+ constructor(categoryRepository, homeRepository, productRepository, defaultShop) {
2186
+ this.categoryRepository = categoryRepository;
2187
+ this.homeRepository = homeRepository;
2188
+ this.productRepository = productRepository;
2189
+ this.defaultShop = defaultShop;
2190
+ this.buildCategoryGroupWithRequiredData = (group) => {
2191
+ var _a, _b;
2192
+ return ({
2193
+ category: Category.toInstance(pick(((_a = group === null || group === void 0 ? void 0 : group.category) === null || _a === void 0 ? void 0 : _a.toPlain()) || {}, ['id', 'name', 'slug', 'conditions'])),
2194
+ products: ((_b = group === null || group === void 0 ? void 0 : group.products) === null || _b === void 0 ? void 0 : _b.map((product) => Product.toInstance(pick((product === null || product === void 0 ? void 0 : product.toPlain()) || {}, [
2195
+ 'id',
2196
+ 'price',
2197
+ 'reviews',
2198
+ 'hasVariants',
2199
+ 'slug',
2200
+ 'sku',
2201
+ 'stock',
2202
+ 'costPrice',
2203
+ 'images',
2204
+ 'miniatures',
2205
+ 'name',
2206
+ 'weight',
2207
+ 'rate',
2208
+ 'type',
2209
+ 'brand',
2210
+ ])))) || [],
2211
+ });
2212
+ };
2213
+ }
2214
+ getHomeData() {
2215
+ return this.getHomeConfiguration().pipe(map((home) => { var _a; return (((_a = home === null || home === void 0 ? void 0 : home.data) === null || _a === void 0 ? void 0 : _a.expiresAt) > new Date() ? home : null); }), concatMap((home) => home
2216
+ ? of(home)
2217
+ : forkJoin([
2218
+ this.getDiscoverProducts(this.gender),
2219
+ this.getFeaturedProducts(this.gender),
2220
+ this.getVerticalProducts(this.gender),
2221
+ ]).pipe(map(([discoverProducts, featuredProducts, verticalProducts]) => ({
2222
+ discoverProducts,
2223
+ featuredProducts,
2224
+ verticalProducts,
2225
+ })), concatMap((data) => this.saveHomeData(data)))));
2226
+ }
2227
+ getBanners(type) {
2228
+ return this.getHomeConfiguration().pipe(map((home) => {
2229
+ if (type === 'brand')
2230
+ return home.brandsCarousel;
2231
+ if (type === 'buyToWin')
2232
+ return [home.buyToWinBanner];
2233
+ if (type === 'block')
2234
+ return home.blockBanners;
2235
+ if (type === 'blog')
2236
+ return [home.blogBanner];
2237
+ return [];
2238
+ }));
2239
+ }
2240
+ getMinValueForFreeShipping() {
2241
+ return this.getHomeConfiguration().pipe(map((home) => home.minValueForFreeShipping));
2242
+ }
2243
+ getDiscoverProducts(gender) {
2244
+ return this.getHomeConfiguration().pipe(concatMap((home) => from(this.categoryRepository.getCategoriesForHome(home.discoverCategories, undefined, gender)).pipe(map((groups) => groups.map(this.buildCategoryGroupWithRequiredData)))));
2245
+ }
2246
+ getFeaturedProducts(gender) {
2247
+ return this.getHomeConfiguration().pipe(concatMap((home) => from(this.categoryRepository.getCategoriesForHome(home.featuredCategories, undefined, gender)).pipe(map((groups) => groups.map(this.buildCategoryGroupWithRequiredData)))));
2248
+ }
2249
+ getVerticalProducts(gender) {
2250
+ return this.getHomeConfiguration().pipe(concatMap((home) => forkJoin(home.verticalCarousels.filter(Boolean).map((id) => from(this.categoryRepository.get({ id })).pipe(concatMap((category) => from(this.productRepository.find({
2251
+ filters: Object.assign({ categories: { operator: Where.IN, value: [category.id] } }, (gender ? { tags: { operator: Where.IN, value: [gender] } } : {})),
2252
+ limits: { limit: 12 },
2253
+ })).pipe(map((products) => ({ category, products })))), map(({ category, products }) => ({ category, products: products.data })), map(this.buildCategoryGroupWithRequiredData))))));
2254
+ }
2255
+ getHomeConfiguration() {
2256
+ return of(this.homeConfiguration).pipe(concatMap((home) => home
2257
+ ? of(home)
2258
+ : !this.homeId
2259
+ ? throwError(new RequiredArgumentError(['homeId']))
2260
+ : from(this.homeRepository.get({ id: this.homeId })).pipe(tap((homeLoaded) => (this.homeConfiguration = homeLoaded)))));
2261
+ }
2262
+ saveHomeData(homeData) {
2263
+ const data = {
2264
+ createdAt: new Date(),
2265
+ expiresAt: add(new Date(), { hours: 1 }),
2266
+ data: homeData,
2267
+ };
2268
+ return from(this.homeRepository.update({
2269
+ id: this.homeId,
2270
+ data,
2271
+ })).pipe(tap(() => (this.homeConfiguration.data = data)), map(() => this.homeConfiguration));
2272
+ }
2273
+ get gender() {
2274
+ return this.homeId === 'mens_market' ? 'masculino' : undefined;
2275
+ }
2276
+ }
2277
+ HomeShopService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService, deps: [{ token: 'CategoryRepository' }, { token: 'HomeRepository' }, { token: 'ProductRepository' }, { token: DEFAULT_SHOP }], target: i0.ɵɵFactoryTarget.Injectable });
2278
+ HomeShopService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService });
2279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: HomeShopService, decorators: [{
2280
+ type: Injectable
2281
+ }], ctorParameters: function () {
2282
+ return [{ type: undefined, decorators: [{
2283
+ type: Inject,
2284
+ args: ['CategoryRepository']
2285
+ }] }, { type: undefined, decorators: [{
2286
+ type: Inject,
2287
+ args: ['HomeRepository']
2288
+ }] }, { type: undefined, decorators: [{
2289
+ type: Inject,
2290
+ args: ['ProductRepository']
2291
+ }] }, { type: i1$2.Shops, decorators: [{
2292
+ type: Inject,
2293
+ args: [DEFAULT_SHOP]
2294
+ }] }];
2236
2295
  } });
2237
2296
 
2238
- class OrderService {
2239
- constructor(angularFirestore, orderRepository) {
2240
- this.angularFirestore = angularFirestore;
2241
- this.orderRepository = orderRepository;
2242
- this.orderSubject = new Subject();
2243
- }
2244
- getOrder(id) {
2245
- docSnapshots(doc(this.angularFirestore, `${this.orderRepository.collectionName}/${id}`))
2246
- .pipe(map((doc) => Order.toInstance(doc.data())))
2247
- .subscribe((doc) => this.orderSubject.next(doc));
2248
- return this.orderSubject;
2249
- }
2250
- }
2251
- OrderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService, deps: [{ token: i1$1.Firestore }, { token: 'OrderRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
2252
- OrderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService });
2253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService, decorators: [{
2254
- type: Injectable
2255
- }], ctorParameters: function () {
2256
- return [{ type: i1$1.Firestore }, { type: i1$2.OrderFirestoreRepository, decorators: [{
2257
- type: Inject,
2258
- args: ['OrderRepository']
2259
- }] }];
2297
+ class OrderService {
2298
+ constructor(angularFirestore, orderRepository) {
2299
+ this.angularFirestore = angularFirestore;
2300
+ this.orderRepository = orderRepository;
2301
+ this.orderSubject = new Subject();
2302
+ }
2303
+ getOrder(id) {
2304
+ docSnapshots(doc(this.angularFirestore, `${this.orderRepository.collectionName}/${id}`))
2305
+ .pipe(map((doc) => Order.toInstance(doc.data())))
2306
+ .subscribe((doc) => this.orderSubject.next(doc));
2307
+ return this.orderSubject;
2308
+ }
2309
+ }
2310
+ OrderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService, deps: [{ token: i1$1.Firestore }, { token: 'OrderRepository' }], target: i0.ɵɵFactoryTarget.Injectable });
2311
+ OrderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService });
2312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: OrderService, decorators: [{
2313
+ type: Injectable
2314
+ }], ctorParameters: function () {
2315
+ return [{ type: i1$1.Firestore }, { type: i1$2.OrderFirestoreRepository, decorators: [{
2316
+ type: Inject,
2317
+ args: ['OrderRepository']
2318
+ }] }];
2260
2319
  } });
2261
2320
 
2262
- class ShippingService {
2263
- constructor(http, apiUrl, homeService) {
2264
- this.http = http;
2265
- this.apiUrl = apiUrl;
2266
- this.homeService = homeService;
2267
- }
2268
- getShippingMethods(shop, zip, weightGrams, totalPrice, personId, subscriptionPlan) {
2269
- return combineLatest([
2270
- this.homeService.getHomeData(),
2271
- this.http.get(`${this.apiUrl}open/checkshippingcompany?personId=${personId}&postalCode=${zip}&weightGrams=${weightGrams}`),
2272
- ]).pipe(map(([datas, shippingMethodsResponse]) => {
2273
- let shippingMethods = shippingMethodsResponse.result;
2274
- if (!shippingMethods.length)
2275
- return [];
2276
- shippingMethods = shippingMethods.map((shippingMethod) => {
2277
- if (shippingMethod.ShippingCompanyName == 'Same Day EG')
2278
- shippingMethod.ShippingCompanyName = 'Same Day';
2279
- return shippingMethod;
2280
- });
2281
- const datasSameDayNotAvaliable = datas.sameDayNotAvaliable;
2282
- if (this.isHolidays(datasSameDayNotAvaliable)) {
2283
- shippingMethods = shippingMethods.filter((method) => method.serviceName !== 'Same Day');
2284
- }
2285
- if (totalPrice >= 200) {
2286
- shippingMethods = shippingMethods.map((s) => {
2287
- if (s.serviceName !== 'Same Day')
2288
- return Object.assign(Object.assign({}, s), { totalPrice: 0 });
2289
- else
2290
- return s;
2291
- });
2292
- }
2293
- if (shop == Shops.GLAMSHOP)
2294
- return shippingMethods;
2295
- if (this.isFreeShippingBySubscription(shop, subscriptionPlan)) {
2296
- shippingMethods = shippingMethods.map((s) => {
2297
- if (s.serviceName == 'Same Day')
2298
- return Object.assign(Object.assign({}, s), { totalPrice: s.totalPrice / 2 });
2299
- else
2300
- return Object.assign(Object.assign({}, s), { totalPrice: 0 });
2301
- });
2302
- }
2303
- if (this.isHalfShippingBySubscription(shop, subscriptionPlan)) {
2304
- shippingMethods = shippingMethods.map((s) => {
2305
- return Object.assign(Object.assign({}, s), { totalPrice: s.totalPrice / 2 });
2306
- });
2307
- }
2308
- return shippingMethods;
2309
- }));
2310
- }
2311
- isFreeShippingBySubscription(shop, subscriptionPlan) {
2312
- if (!subscriptionPlan)
2313
- return false;
2314
- if (shop == Shops.MENSMARKET && subscriptionPlan == 'SELECT')
2315
- return true;
2316
- return false;
2317
- }
2318
- isHalfShippingBySubscription(shop, subscriptionPlan) {
2319
- if (!subscriptionPlan)
2320
- return false;
2321
- if (shop == Shops.MENSMARKET && subscriptionPlan == 'PRIME') {
2322
- return true;
2323
- }
2324
- return false;
2325
- }
2326
- isHolidays(datas) {
2327
- const today = new Date();
2328
- for (const key in datas) {
2329
- let start = new Date(`${today.getFullYear()}-${datas[key].beginDate}`);
2330
- let end = new Date(`${today.getFullYear()}-${datas[key].endDate}`);
2331
- if (start > end)
2332
- end = new Date(`${today.getFullYear() + 1}-${datas[key].endDate}`);
2333
- if (today >= start && today <= end)
2334
- return true;
2335
- }
2336
- return false;
2337
- }
2338
- }
2339
- ShippingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService, deps: [{ token: i1$3.HttpClient }, { token: BACKEND_URL }, { token: HomeShopService }], target: i0.ɵɵFactoryTarget.Injectable });
2340
- ShippingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService });
2341
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService, decorators: [{
2342
- type: Injectable
2343
- }], ctorParameters: function () {
2344
- return [{ type: i1$3.HttpClient }, { type: undefined, decorators: [{
2345
- type: Inject,
2346
- args: [BACKEND_URL]
2347
- }] }, { type: HomeShopService }];
2321
+ class ShippingService {
2322
+ constructor(http, apiUrl, homeService) {
2323
+ this.http = http;
2324
+ this.apiUrl = apiUrl;
2325
+ this.homeService = homeService;
2326
+ }
2327
+ getShippingMethods(shop, zip, weightGrams, totalPrice, personId, subscriptionPlan) {
2328
+ return combineLatest([
2329
+ this.homeService.getHomeData(),
2330
+ this.http.get(`${this.apiUrl}open/checkshippingcompany?personId=${personId}&postalCode=${zip}&weightGrams=${weightGrams}`),
2331
+ ]).pipe(map(([datas, shippingMethodsResponse]) => {
2332
+ let shippingMethods = shippingMethodsResponse.result;
2333
+ if (!shippingMethods.length)
2334
+ return [];
2335
+ shippingMethods = shippingMethods.map((shippingMethod) => {
2336
+ if (shippingMethod.ShippingCompanyName == 'Same Day EG')
2337
+ shippingMethod.ShippingCompanyName = 'Same Day';
2338
+ return shippingMethod;
2339
+ });
2340
+ const datasSameDayNotAvaliable = datas.sameDayNotAvaliable;
2341
+ if (this.isHolidays(datasSameDayNotAvaliable)) {
2342
+ shippingMethods = shippingMethods.filter((method) => method.serviceName !== 'Same Day');
2343
+ }
2344
+ if (totalPrice >= 200) {
2345
+ shippingMethods = shippingMethods.map((s) => {
2346
+ if (s.serviceName !== 'Same Day')
2347
+ return Object.assign(Object.assign({}, s), { totalPrice: 0 });
2348
+ else
2349
+ return s;
2350
+ });
2351
+ }
2352
+ if (shop == Shops.GLAMSHOP)
2353
+ return shippingMethods;
2354
+ if (this.isFreeShippingBySubscription(shop, subscriptionPlan)) {
2355
+ shippingMethods = shippingMethods.map((s) => {
2356
+ if (s.serviceName == 'Same Day')
2357
+ return Object.assign(Object.assign({}, s), { totalPrice: s.totalPrice / 2 });
2358
+ else
2359
+ return Object.assign(Object.assign({}, s), { totalPrice: 0 });
2360
+ });
2361
+ }
2362
+ if (this.isHalfShippingBySubscription(shop, subscriptionPlan)) {
2363
+ shippingMethods = shippingMethods.map((s) => {
2364
+ return Object.assign(Object.assign({}, s), { totalPrice: s.totalPrice / 2 });
2365
+ });
2366
+ }
2367
+ return shippingMethods;
2368
+ }));
2369
+ }
2370
+ isFreeShippingBySubscription(shop, subscriptionPlan) {
2371
+ if (!subscriptionPlan)
2372
+ return false;
2373
+ if (shop == Shops.MENSMARKET && subscriptionPlan == 'SELECT')
2374
+ return true;
2375
+ return false;
2376
+ }
2377
+ isHalfShippingBySubscription(shop, subscriptionPlan) {
2378
+ if (!subscriptionPlan)
2379
+ return false;
2380
+ if (shop == Shops.MENSMARKET && subscriptionPlan == 'PRIME') {
2381
+ return true;
2382
+ }
2383
+ return false;
2384
+ }
2385
+ isHolidays(datas) {
2386
+ const today = new Date();
2387
+ for (const key in datas) {
2388
+ let start = new Date(`${today.getFullYear()}-${datas[key].beginDate}`);
2389
+ let end = new Date(`${today.getFullYear()}-${datas[key].endDate}`);
2390
+ if (start > end)
2391
+ end = new Date(`${today.getFullYear() + 1}-${datas[key].endDate}`);
2392
+ if (today >= start && today <= end)
2393
+ return true;
2394
+ }
2395
+ return false;
2396
+ }
2397
+ }
2398
+ ShippingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService, deps: [{ token: i1$3.HttpClient }, { token: BACKEND_URL }, { token: HomeShopService }], target: i0.ɵɵFactoryTarget.Injectable });
2399
+ ShippingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService });
2400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: ShippingService, decorators: [{
2401
+ type: Injectable
2402
+ }], ctorParameters: function () {
2403
+ return [{ type: i1$3.HttpClient }, { type: undefined, decorators: [{
2404
+ type: Inject,
2405
+ args: [BACKEND_URL]
2406
+ }] }, { type: HomeShopService }];
2348
2407
  } });
2349
2408
 
2350
- class AngularConnectModule {
2351
- static initializeApp(defaultShop, options, nameOrConfig) {
2352
- return {
2353
- ngModule: AngularConnectModule,
2354
- providers: [
2355
- {
2356
- provide: CATEGORY_STRUCTURE,
2357
- useClass: isNil(options === null || options === void 0 ? void 0 : options.oldCategoryStructure) || (options === null || options === void 0 ? void 0 : options.oldCategoryStructure)
2358
- ? OldCategoryStructureAdapter
2359
- : NewCategoryStructureAdapter,
2360
- },
2361
- { provide: PERSISTENCE_PROVIDER, useClass: (options === null || options === void 0 ? void 0 : options.persistenceProvider) || CookieDataPersistence },
2362
- ...(isNil(defaultShop) ? [] : [{ provide: DEFAULT_SHOP, useValue: defaultShop }]),
2363
- ...(isNil(options === null || options === void 0 ? void 0 : options.firebase) ? [] : [{ provide: FIREBASE_OPTIONS, useValue: options === null || options === void 0 ? void 0 : options.firebase }]),
2364
- ...(isNil(options === null || options === void 0 ? void 0 : options.firebase) ? [] : [{ provide: FIREBASE_APP_NAME, useValue: nameOrConfig }]),
2365
- ...(isNil(options === null || options === void 0 ? void 0 : options.elasticSearch) ? [] : [{ provide: ES_CONFIG, useValue: options.elasticSearch }]),
2366
- ...(isNil(options === null || options === void 0 ? void 0 : options.hasura) ? [] : [{ provide: HASURA_OPTIONS, useValue: options.hasura }]),
2367
- ...(isNil(options === null || options === void 0 ? void 0 : options.backendUrl) ? [] : [{ provide: BACKEND_URL, useValue: options.backendUrl }]),
2368
- ...(isNil(options === null || options === void 0 ? void 0 : options.storageBaseUrl) ? [] : [{ provide: STORAGE_BASE_URL, useValue: options.storageBaseUrl }]),
2369
- ],
2370
- };
2371
- }
2372
- }
2373
- AngularConnectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2374
- AngularConnectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, imports: [i1$4.FirebaseAppModule, i2.StorageModule, AngularElasticSeachModule,
2375
- AngularFirebaseAuthModule,
2376
- AngularFirestoreModule,
2377
- AngularHasuraGraphQLModule] });
2378
- AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, providers: [
2379
- AuthService,
2380
- CartService,
2381
- CatalogService,
2382
- CategoryService,
2383
- CheckoutService,
2384
- CheckoutSubscriptionService,
2385
- CouponService,
2386
- HomeShopService,
2387
- OrderService,
2388
- ShippingService,
2389
- WishlistService,
2390
- {
2391
- provide: UpdateUserImage,
2392
- useFactory: (userRepository, fileUploader) => {
2393
- return new UpdateUserImage(userRepository, fileUploader);
2394
- },
2395
- deps: ['UserRepository', 'FileUploaderService'],
2396
- },
2397
- {
2398
- provide: 'FileUploaderService',
2399
- useFactory: (storage, baseUrl) => {
2400
- return new FirebaseFileUploaderService(storage, baseUrl);
2401
- },
2402
- deps: [Storage, STORAGE_BASE_URL],
2403
- },
2404
- ], imports: [provideFirebaseApp((injector) => {
2405
- const appName = injector.get(FIREBASE_APP_NAME) || '[DEFAULT]';
2406
- try {
2407
- return getApp(appName);
2408
- }
2409
- catch (error) {
2410
- return initializeApp(injector.get(FIREBASE_OPTIONS), appName);
2411
- }
2412
- }),
2413
- provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
2414
- AngularElasticSeachModule,
2415
- AngularFirebaseAuthModule,
2416
- AngularFirestoreModule,
2417
- AngularHasuraGraphQLModule] });
2418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, decorators: [{
2419
- type: NgModule,
2420
- args: [{
2421
- imports: [
2422
- provideFirebaseApp((injector) => {
2423
- const appName = injector.get(FIREBASE_APP_NAME) || '[DEFAULT]';
2424
- try {
2425
- return getApp(appName);
2426
- }
2427
- catch (error) {
2428
- return initializeApp(injector.get(FIREBASE_OPTIONS), appName);
2429
- }
2430
- }),
2431
- provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
2432
- AngularElasticSeachModule,
2433
- AngularFirebaseAuthModule,
2434
- AngularFirestoreModule,
2435
- AngularHasuraGraphQLModule,
2436
- ],
2437
- providers: [
2438
- AuthService,
2439
- CartService,
2440
- CatalogService,
2441
- CategoryService,
2442
- CheckoutService,
2443
- CheckoutSubscriptionService,
2444
- CouponService,
2445
- HomeShopService,
2446
- OrderService,
2447
- ShippingService,
2448
- WishlistService,
2449
- {
2450
- provide: UpdateUserImage,
2451
- useFactory: (userRepository, fileUploader) => {
2452
- return new UpdateUserImage(userRepository, fileUploader);
2453
- },
2454
- deps: ['UserRepository', 'FileUploaderService'],
2455
- },
2456
- {
2457
- provide: 'FileUploaderService',
2458
- useFactory: (storage, baseUrl) => {
2459
- return new FirebaseFileUploaderService(storage, baseUrl);
2460
- },
2461
- deps: [Storage, STORAGE_BASE_URL],
2462
- },
2463
- ],
2464
- }]
2409
+ class AngularConnectModule {
2410
+ static initializeApp(defaultShop, options, nameOrConfig) {
2411
+ return {
2412
+ ngModule: AngularConnectModule,
2413
+ providers: [
2414
+ {
2415
+ provide: CATEGORY_STRUCTURE,
2416
+ useClass: isNil(options === null || options === void 0 ? void 0 : options.oldCategoryStructure) || (options === null || options === void 0 ? void 0 : options.oldCategoryStructure)
2417
+ ? OldCategoryStructureAdapter
2418
+ : NewCategoryStructureAdapter,
2419
+ },
2420
+ { provide: PERSISTENCE_PROVIDER, useClass: (options === null || options === void 0 ? void 0 : options.persistenceProvider) || CookieDataPersistence },
2421
+ ...(isNil(defaultShop) ? [] : [{ provide: DEFAULT_SHOP, useValue: defaultShop }]),
2422
+ ...(isNil(options === null || options === void 0 ? void 0 : options.firebase) ? [] : [{ provide: FIREBASE_OPTIONS, useValue: options === null || options === void 0 ? void 0 : options.firebase }]),
2423
+ ...(isNil(options === null || options === void 0 ? void 0 : options.firebase) ? [] : [{ provide: FIREBASE_APP_NAME, useValue: nameOrConfig }]),
2424
+ ...(isNil(options === null || options === void 0 ? void 0 : options.elasticSearch) ? [] : [{ provide: ES_CONFIG, useValue: options.elasticSearch }]),
2425
+ ...(isNil(options === null || options === void 0 ? void 0 : options.hasura) ? [] : [{ provide: HASURA_OPTIONS, useValue: options.hasura }]),
2426
+ ...(isNil(options === null || options === void 0 ? void 0 : options.backendUrl) ? [] : [{ provide: BACKEND_URL, useValue: options.backendUrl }]),
2427
+ ...(isNil(options === null || options === void 0 ? void 0 : options.storageBaseUrl) ? [] : [{ provide: STORAGE_BASE_URL, useValue: options.storageBaseUrl }]),
2428
+ ],
2429
+ };
2430
+ }
2431
+ }
2432
+ AngularConnectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2433
+ AngularConnectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, imports: [i1$4.FirebaseAppModule, AngularElasticSeachModule,
2434
+ AngularFirebaseAuthModule,
2435
+ AngularFirestoreModule,
2436
+ AngularHasuraGraphQLModule] });
2437
+ AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, providers: [
2438
+ AuthService,
2439
+ CartService,
2440
+ CatalogService,
2441
+ CategoryService,
2442
+ CheckoutService,
2443
+ CheckoutSubscriptionService,
2444
+ CouponService,
2445
+ HomeShopService,
2446
+ OrderService,
2447
+ ShippingService,
2448
+ WishlistService,
2449
+ {
2450
+ provide: UpdateUserImage,
2451
+ useFactory: (userRepository, fileUploader) => {
2452
+ return new UpdateUserImage(userRepository, fileUploader);
2453
+ },
2454
+ deps: ['UserRepository', 'FileUploaderService'],
2455
+ },
2456
+ ], imports: [provideFirebaseApp((injector) => {
2457
+ const appName = injector.get(FIREBASE_APP_NAME) || '[DEFAULT]';
2458
+ try {
2459
+ return getApp(appName);
2460
+ }
2461
+ catch (error) {
2462
+ return initializeApp(injector.get(FIREBASE_OPTIONS), appName);
2463
+ }
2464
+ }),
2465
+ AngularElasticSeachModule,
2466
+ AngularFirebaseAuthModule,
2467
+ AngularFirestoreModule,
2468
+ AngularHasuraGraphQLModule] });
2469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: AngularConnectModule, decorators: [{
2470
+ type: NgModule,
2471
+ args: [{
2472
+ imports: [
2473
+ provideFirebaseApp((injector) => {
2474
+ const appName = injector.get(FIREBASE_APP_NAME) || '[DEFAULT]';
2475
+ try {
2476
+ return getApp(appName);
2477
+ }
2478
+ catch (error) {
2479
+ return initializeApp(injector.get(FIREBASE_OPTIONS), appName);
2480
+ }
2481
+ }),
2482
+ AngularElasticSeachModule,
2483
+ AngularFirebaseAuthModule,
2484
+ AngularFirestoreModule,
2485
+ AngularHasuraGraphQLModule,
2486
+ ],
2487
+ providers: [
2488
+ AuthService,
2489
+ CartService,
2490
+ CatalogService,
2491
+ CategoryService,
2492
+ CheckoutService,
2493
+ CheckoutSubscriptionService,
2494
+ CouponService,
2495
+ HomeShopService,
2496
+ OrderService,
2497
+ ShippingService,
2498
+ WishlistService,
2499
+ {
2500
+ provide: UpdateUserImage,
2501
+ useFactory: (userRepository, fileUploader) => {
2502
+ return new UpdateUserImage(userRepository, fileUploader);
2503
+ },
2504
+ deps: ['UserRepository', 'FileUploaderService'],
2505
+ },
2506
+ ],
2507
+ }]
2465
2508
  }] });
2466
2509
 
2467
- /**
2468
- * Generated bundle index. Do not edit.
2510
+ /**
2511
+ * Generated bundle index. Do not edit.
2469
2512
  */
2470
2513
 
2471
2514
  export { AngularConnectModule, AngularFirebaseAuthModule, AngularFirestoreModule, AngularHasuraGraphQLModule, AuthService, CartService, CatalogService, CategoryService, CategoryWithTree, CheckoutService, CheckoutSubscriptionService, CookieDataPersistence, CouponService, HomeShopService, NewCategoryStructureAdapter, OldCategoryStructureAdapter, OrderService, ProductSorts, ShippingService, UtilHelper, WishlistService };