Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 17x 17x 17x 17x 17x 17x 17x | import { Injectable } from '@angular/core'; import { Store, select } from '@ngrx/store'; import { Observable, take } from 'rxjs'; import { SearchParameter, SearchResponse } from 'ish-core/models/search/search.model'; import { ProductsService } from 'ish-core/services/products/products.service'; import { SparqueProductsService } from 'ish-core/services/sparque-products/sparque-products.service'; import { getSparqueConfig } from 'ish-core/store/core/configuration'; import { URLFormParams } from 'ish-core/utils/url-form-params'; @Injectable({ providedIn: 'root' }) export class ProductsServiceProvider { constructor( private productsService: ProductsService, private sparqueProductsService: SparqueProductsService, private store: Store ) {} /** * Gets the appropriate products service based on the store configuration. * * @returns An instance of either SparqueProductsService or ProductsService. */ // TODO: (Sparque handling) remove 'skipSparque' parameter once the category navigation will be handled by Sparque get(skipSparque: boolean = false): ProductsServiceInterface { let isSparque = false; this.store .pipe(select(getSparqueConfig), take(1)) .subscribe(sparqueConfig => (sparqueConfig ? (isSparque = true) : (isSparque = false))); return isSparque && !skipSparque ? this.sparqueProductsService : this.productsService; } } /** * Service for handling search-related operations. * This abstract class provides methods for searching suggestions, products, * and filtered products. Implementations of this service should define the * behavior for these search functionalities. */ export interface ProductsServiceInterface { /** * Searches for products based on the provided search parameters. * * @param searchParams - The parameters to filter and search for products. * @returns An observable that emits the search response containing the products. */ searchProducts(searchParams: SearchParameter): Observable<SearchResponse>; /** * Retrieves filtered products based on the provided search parameters. * * @param searchParameter - The URL-formatted parameters for filtering the products. * @param amount - The number of products to retrieve. * @param sortKey - (Optional) The key to sort the products by. * @param offset - (Optional) The offset for pagination. * @returns An observable that emits the filtered search response. */ getFilteredProducts( searchParameter: URLFormParams, amount: number, sortKey?: string, offset?: number ): Observable<SearchResponse>; } |