All files / src/app/extensions/wishlists/pages/shared-wishlist shared-wishlist-page.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

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 331x                                                                
@if (wishlist$ | async; as wishlist) {
<div class="col-9" data-testing-id="shared-wishlist">
  <h1>{{ wishlist.title }}</h1>
  @if (wishlist.itemsCount) {
  <div class="container">
    <div class="list-header row">
      <div class="col-3 col-sm-3 list-header-item">{{ 'wishlist.table.header.item' | translate }}</div>
      <div class="col-sm-9 col-9 list-header-item column-price">
        {{ 'wishlist.table.header.price' | translate }}
      </div>
    </div>
    <div class="list-body">
      @for (item of wishlist.items; track item.id) {
      <div class="list-item-row">
        <ish-wishlist-line-item
          ishProductContext
          [sku]="item.sku"
          [wishlistItemData]="item"
          [currentWishlist]="wishlist"
          [readOnly]="true"
        />
      </div>
      }
    </div>
  </div>
  } @else {
  <p>{{ 'wishlist.no_entries' | translate }}</p>
  }
</div>
} @if (wishlistLoading$ | async) {
<ish-loading />
}