forked from cecilphillip/ContosoCraftsStriped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductList.razor
31 lines (30 loc) · 1.19 KB
/
ProductList.razor
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
@inherits ProductListBase
<div>
<div class="card-columns">
@if (products != null)
{
@foreach (var product in products)
{
<div class="card">
<div class="card-img" style="background-image: url('@product.Image');">
</div>
<div class="card-body">
<h5 class="card-title">@product.Title</h5>
</div>
<div class="card-footer">
<small class="text-muted">
<button @onclick="(e => SelectProduct(product.Id))" data-toggle="modal" data-target="#productModal"
class="btn btn-primary">
Info
</button>
<button class="btn btn-primary" @onclick="(e => AddToCart(product.Id, product.Title))">
Add to cart
</button>
</small>
</div>
</div>
}
}
</div>
<ProductModal Product="selectedProduct" OnSubmitRating="SubmitRating"></ProductModal>
</div>