ng-easycommerce-v18 0.1.4 → 0.2.0

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 (32) hide show
  1. package/assets/ec-i18n/es.json +1 -0
  2. package/esm2022/lib/ec-components/abstractions-components/menu-ec.component.mjs +2 -1
  3. package/esm2022/lib/ec-components/account-ec/order-ec/order-ec.component.mjs +5 -9
  4. package/esm2022/lib/ec-components/auth-ec/confirm-account-ec/confirm-account-ec.component.mjs +3 -3
  5. package/esm2022/lib/ec-components/auth-ec/forgot-password-ec/forgot-password-ec.component.mjs +3 -3
  6. package/esm2022/lib/ec-components/auth-ec/index.mjs +2 -1
  7. package/esm2022/lib/ec-components/auth-ec/password-reset-ec/password-reset-ec.component.mjs +105 -0
  8. package/esm2022/lib/ec-components/blocks-ec/block-products-ec/block-products-ec.component.mjs +147 -38
  9. package/esm2022/lib/ec-components/blocks-ec/blocks-ec.component.mjs +2 -2
  10. package/esm2022/lib/ec-components/cart-ec/cart-ec.component.mjs +27 -3
  11. package/esm2022/lib/ec-components/cart-ec/cart-item-ec/cart-item-ec.component.mjs +10 -1
  12. package/esm2022/lib/ec-components/checkout-ec/success-ec/success-ec.component.mjs +3 -3
  13. package/esm2022/lib/ec-components/contact-ec/contact-ec.component.mjs +3 -2
  14. package/esm2022/lib/ec-components/product-detail-ec/product-detail-ec.component.mjs +7 -2
  15. package/esm2022/lib/ec-components/product-ec/product-ec.component.mjs +3 -3
  16. package/esm2022/lib/ec-components/sidebar-ec/sidebar-ec.component.mjs +5 -1
  17. package/esm2022/lib/ec-services/auth.service.mjs +9 -2
  18. package/esm2022/lib/ec-services/cart.service.mjs +51 -32
  19. package/esm2022/lib/ec-services/checkout.service.mjs +2 -1
  20. package/fesm2022/ng-easycommerce-v18.mjs +372 -101
  21. package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
  22. package/lib/ec-components/account-ec/order-ec/order-ec.component.d.ts +1 -2
  23. package/lib/ec-components/auth-ec/index.d.ts +1 -0
  24. package/lib/ec-components/auth-ec/password-reset-ec/password-reset-ec.component.d.ts +29 -0
  25. package/lib/ec-components/blocks-ec/block-products-ec/block-products-ec.component.d.ts +36 -8
  26. package/lib/ec-components/cart-ec/cart-ec.component.d.ts +6 -0
  27. package/lib/ec-components/cart-ec/cart-item-ec/cart-item-ec.component.d.ts +1 -0
  28. package/lib/ec-components/product-detail-ec/product-detail-ec.component.d.ts +2 -0
  29. package/lib/ec-components/sidebar-ec/sidebar-ec.component.d.ts +1 -0
  30. package/lib/ec-services/auth.service.d.ts +2 -0
  31. package/lib/ec-services/cart.service.d.ts +8 -7
  32. package/package.json +1 -1
@@ -12,8 +12,7 @@ export declare class OrderEcComponent implements OnInit {
12
12
  order$: Observable<any>;
13
13
  allowRepeatOrders: boolean;
14
14
  loading: boolean;
15
- showPrice: boolean;
16
- creditAmountConfigured: boolean;
15
+ creditAccountShowPrices: boolean | null;
17
16
  hidePrices: boolean;
18
17
  hideDiscounts: boolean;
19
18
  hideTaxes: boolean;
@@ -4,3 +4,4 @@ export * from './forgot-password-ec/forgot-password-ec.component';
4
4
  export * from './confirm-account-ec/confirm-account-ec.component';
5
5
  export * from './register-form-ec/register-form-ec.component';
6
6
  export * from './register-wholesaler-form-ec/register-wholesaler-form-ec.component';
7
+ export * from './password-reset-ec/password-reset-ec.component';
@@ -0,0 +1,29 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { ActivatedRoute, Router } from '@angular/router';
4
+ import { ComponentHelper } from '../../../classes/component-helper';
5
+ import { AuthService, ToastService } from '../../../ec-services';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PasswordResetEcComponent extends ComponentHelper implements OnInit {
8
+ protected authService: AuthService;
9
+ protected toastr: ToastService;
10
+ protected activedRoute: ActivatedRoute;
11
+ router: Router;
12
+ protected formBuilder: FormBuilder;
13
+ email: string;
14
+ loading: boolean;
15
+ ready: boolean;
16
+ protected token: string | undefined;
17
+ formGroup: FormGroup;
18
+ constructor(authService: AuthService, toastr: ToastService, activedRoute: ActivatedRoute, router: Router, formBuilder: FormBuilder);
19
+ ngOnInit(): void;
20
+ sendNewPassword: (event: Event) => void;
21
+ invalidForm: () => boolean;
22
+ processOk: (response: any) => void;
23
+ processError: (response: any) => void;
24
+ sendToLogin: () => Promise<boolean>;
25
+ showPassword: () => void;
26
+ showPassword2: () => void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<PasswordResetEcComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<PasswordResetEcComponent, "app-password-reset-ec", never, {}, {}, never, never, true, never>;
29
+ }
@@ -1,6 +1,5 @@
1
- import { TemplateRef } from '@angular/core';
1
+ import { AfterViewInit, TemplateRef } from '@angular/core';
2
2
  import { BlockEcComponent } from '../../abstractions-components';
3
- import { SwiperOptions } from 'swiper/types';
4
3
  import { SwiperContainer } from 'swiper/element/bundle';
5
4
  import * as i0 from "@angular/core";
6
5
  /**
@@ -8,7 +7,11 @@ import * as i0 from "@angular/core";
8
7
  * @extends {BlockEcComponent}
9
8
  * @class BlockProductsEcComponent
10
9
  */
11
- export declare class BlockProductsEcComponent extends BlockEcComponent {
10
+ export declare class BlockProductsEcComponent extends BlockEcComponent implements AfterViewInit {
11
+ prevArrowImage?: string;
12
+ nextArrowImage?: string;
13
+ prevArrowText: string;
14
+ nextArrowText: string;
12
15
  /**
13
16
  * Servicio de Analytics
14
17
  */
@@ -29,10 +32,7 @@ export declare class BlockProductsEcComponent extends BlockEcComponent {
29
32
  * Bloque principal que contiene los productos
30
33
  */
31
34
  meta: any;
32
- /**
33
- * Método original en: {@link BlockEcComponent}
34
- */
35
- swiperOptions: () => SwiperOptions;
35
+ ngAfterViewInit(): void;
36
36
  private document?;
37
37
  private platformId;
38
38
  /**
@@ -46,6 +46,34 @@ export declare class BlockProductsEcComponent extends BlockEcComponent {
46
46
  * @param banner
47
47
  */
48
48
  selectPromotion(item: any): void;
49
+ /**
50
+ * Configura la navegación personalizada del Swiper.
51
+ * Esta función está diseñada para ser movida al componente base BlockProductsEcComponent.
52
+ * Permite personalización de las imágenes de las flechas mediante @Input.
53
+ */
54
+ private setupSwiperNavigation;
55
+ /**
56
+ * Inicializa el Swiper con navegación personalizada.
57
+ * Esta función puede ser movida al componente base para reutilización.
58
+ */
59
+ private initializeSwiperWithCustomNavigation;
60
+ /**
61
+ * Obtiene la configuración base del Swiper.
62
+ * Esta configuración puede ser personalizada en el futuro mediante @Input.
63
+ */
64
+ private getSwiperConfiguration;
65
+ /**
66
+ * Inicializa un nuevo Swiper con la configuración proporcionada.
67
+ */
68
+ private initializeNewSwiper;
69
+ /**
70
+ * Actualiza un Swiper existente para asegurar la configuración correcta.
71
+ */
72
+ private updateExistingSwiper;
73
+ /**
74
+ * Configura los event listeners para los botones de navegación.
75
+ */
76
+ private setupNavigationEventListeners;
49
77
  static ɵfac: i0.ɵɵFactoryDeclaration<BlockProductsEcComponent, never>;
50
- static ɵcmp: i0.ɵɵComponentDeclaration<BlockProductsEcComponent, "app-block-products-ec", never, { "appProduct": { "alias": "appProduct"; "required": false; }; "products": { "alias": "products"; "required": true; }; "meta": { "alias": "meta"; "required": true; }; }, {}, never, never, true, never>;
78
+ static ɵcmp: i0.ɵɵComponentDeclaration<BlockProductsEcComponent, "app-block-products-ec", never, { "prevArrowImage": { "alias": "prevArrowImage"; "required": false; }; "nextArrowImage": { "alias": "nextArrowImage"; "required": false; }; "prevArrowText": { "alias": "prevArrowText"; "required": false; }; "nextArrowText": { "alias": "nextArrowText"; "required": false; }; "appProduct": { "alias": "appProduct"; "required": false; }; "products": { "alias": "products"; "required": true; }; "meta": { "alias": "meta"; "required": true; }; }, {}, never, never, true, never>;
51
79
  }
@@ -1,6 +1,9 @@
1
1
  import { Router } from '@angular/router';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class CartEcComponent {
4
+ private _channelService;
5
+ channel: any;
6
+ private _toastrService;
4
7
  private _cartService;
5
8
  router: Router;
6
9
  cartItems$: import("rxjs").Observable<any[]>;
@@ -12,8 +15,11 @@ export declare class CartEcComponent {
12
15
  isAuthenticated$: boolean;
13
16
  getTotalAmount: import("rxjs").Observable<any>;
14
17
  couponCode$: import("rxjs").Observable<string | null>;
18
+ constructor();
15
19
  removeCoupon(): void;
16
20
  redirectCheckout(): boolean;
21
+ getMinimumPurchaseAmount: () => any;
22
+ exceedsMinimumAmount: (value: number) => boolean;
17
23
  static ɵfac: i0.ɵɵFactoryDeclaration<CartEcComponent, never>;
18
24
  static ɵcmp: i0.ɵɵComponentDeclaration<CartEcComponent, "lib-cart-ec", never, {}, {}, never, never, true, never>;
19
25
  }
@@ -10,6 +10,7 @@ export declare class CartItemEcComponent implements OnInit {
10
10
  quantity: number;
11
11
  variantsToShow: string[];
12
12
  updateStock: boolean;
13
+ isQuantityUpdating: boolean;
13
14
  ngOnInit(): void;
14
15
  updateQuantity(stock: number): void;
15
16
  less(stock: number, value?: number): void;
@@ -6,6 +6,7 @@ import { Observable } from 'rxjs';
6
6
  import { Product } from '../../interfaces';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class ProductDetailEcComponent {
9
+ private _cartService;
9
10
  private _optionsService;
10
11
  private _productDetailService;
11
12
  private _productService;
@@ -31,6 +32,7 @@ export declare class ProductDetailEcComponent {
31
32
  quantity: WritableSignal<number>;
32
33
  parameters$: Observable<Parameter[] | null>;
33
34
  hasParams: (params: any, code: string) => any;
35
+ creditAccountShowPrices: boolean | null;
34
36
  constructor();
35
37
  ngOnInit(): void;
36
38
  updateMetaTags(product: Product): void;
@@ -13,6 +13,7 @@ export declare class SidebarEcComponent {
13
13
  variantsToShow: string[];
14
14
  hideDiscounts: boolean;
15
15
  hideTaxes: boolean;
16
+ creditAccountShowPrices: boolean | null;
16
17
  cartItems$: import("rxjs").Observable<any[]>;
17
18
  subTotalAmount$: import("rxjs").Observable<number>;
18
19
  totalPromotionAmount$: import("rxjs").Observable<number>;
@@ -60,6 +60,7 @@ export declare class AuthService {
60
60
  private channelApi;
61
61
  private tokenApi;
62
62
  private recoverPasswordApi;
63
+ private resetPasswordApi;
63
64
  private confirmAccountApi;
64
65
  private registerApi;
65
66
  private registerWholesalerApi;
@@ -157,6 +158,7 @@ export declare class AuthService {
157
158
  * @returns
158
159
  */
159
160
  private loadUserFromStorage;
161
+ passwordReset: (new_password: string, token: string) => Observable<any>;
160
162
  /**
161
163
  * Envia la solicitud para cambiar la contraseña.
162
164
  * @param email email del solicitante.
@@ -29,12 +29,12 @@ export declare class CartService {
29
29
  cart$: Observable<any>;
30
30
  loading$: Observable<boolean>;
31
31
  private _haveToUpdate;
32
- balanceCustomer$: Observable<BalanceCustomer>;
33
- allowAnyPaymentMethod$: Observable<boolean | undefined>;
34
- allowExceedBalance$: Observable<boolean | undefined>;
35
- creditAmount$: Observable<number | null | undefined>;
36
- showMax$: Observable<boolean | undefined>;
37
- showPrice$: Observable<boolean | undefined>;
32
+ balanceCustomer$: Observable<BalanceCustomer | null>;
33
+ allowAnyPaymentMethod$: Observable<boolean | null>;
34
+ allowExceedBalance$: Observable<boolean | null>;
35
+ creditAmount$: Observable<number | null>;
36
+ showMax$: Observable<boolean | null>;
37
+ showPrice$: Observable<boolean | null>;
38
38
  promotions$: Observable<any>;
39
39
  private _cartBaseUrl;
40
40
  updateItemQuantityApi(item_id: any): string;
@@ -212,11 +212,12 @@ export declare class CartService {
212
212
  private getCartByCustomer;
213
213
  private resetCart;
214
214
  clearAndResetCart(): void;
215
- updateBalanceAttributes(cartData: any): void;
215
+ updateBalanceAttributes(balance: any, total?: number | null): void;
216
216
  addToLot(product: Product, quantity: number, variant_id: any, id?: number, order_item_id?: any, lot_quantity?: any, unit_price?: any, unit_total?: any, ajustement_total?: any, total_lot?: number, lot_status?: string, date_request?: string, notes?: string, shipping_address_id?: number, shipping_address_name?: string, action?: string): void;
217
217
  getCreditAmount: () => Observable<number | null>;
218
218
  getRemainingCredits: () => Observable<number | undefined>;
219
219
  hasSufficientCreditsForCartTotal: () => boolean;
220
+ private validatePriceAndCredits;
220
221
  static ɵfac: i0.ɵɵFactoryDeclaration<CartService, never>;
221
222
  static ɵprov: i0.ɵɵInjectableDeclaration<CartService>;
222
223
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-easycommerce-v18",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"