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 | 1x 1x 1x 1x 1x 1x 6x 6x 6x 6x 6x | import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { ProductContextFacade } from 'ish-core/facades/product-context.facade';
import { ProductHelper } from 'ish-core/models/product/product.helper';
import { GenerateLazyComponent } from 'ish-core/utils/module-loader/generate-lazy-component.decorator';
/**
* The Product Rating Component renders rating stars for a product (besides variation masters) with rounded average rating as number. *
*/
@Component({
selector: 'ish-product-rating',
standalone: false,
templateUrl: './product-rating.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
@GenerateLazyComponent()
export class ProductRatingComponent implements OnInit {
@Input() hideNumberOfReviews = false;
rating$: Observable<{ value: number }>;
numberOfReviews$: Observable<number>;
isVariationMaster$: Observable<boolean>;
constructor(private context: ProductContextFacade) {}
ngOnInit() {
this.rating$ = this.context.select('product', 'roundedAverageRating').pipe(map(r => ({ value: r ?? 0 })));
this.numberOfReviews$ = this.context.select('product', 'numberOfReviews');
this.isVariationMaster$ = this.context.select('product').pipe(map(ProductHelper.isMasterProduct));
}
}
|