|
|
@@ -29,19 +29,16 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="results-utilities-holder no-padding"> |
|
|
|
<h5> Food Types </h5> |
|
|
|
<ion-button color="default" fill="clear"> SEE ALL </ion-button> |
|
|
|
<h5> Categories </h5> |
|
|
|
<ion-button disabled color="default" fill="clear"> SEE ALL </ion-button> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="food-types-holder"> |
|
|
|
<button (click)="getMallsByFoodType('breakfast')" |
|
|
|
[ngClass]="{'active' : selectedFoodType === 'breakfast'}"> <ion-icon src="assets/custom/food-3.svg"></ion-icon> <span> Breakfast </span> </button> |
|
|
|
<button (click)="getMallsByFoodType('pizza')" |
|
|
|
[ngClass]="{'active' : selectedFoodType === 'pizza'}"> <ion-icon src="assets/custom/food-1.svg"></ion-icon> <span> Pizza </span> </button> |
|
|
|
<button (click)="getMallsByFoodType('donuts')" |
|
|
|
[ngClass]="{'active' : selectedFoodType === 'donuts'}"> <ion-icon src="assets/custom/food-2.svg"></ion-icon> <span> Doughnuts </span> </button> |
|
|
|
<button (click)="getMallsByFoodType('cake')" |
|
|
|
[ngClass]="{'active' : selectedFoodType === 'cake'}"> <ion-icon src="assets/custom/food-4.svg"></ion-icon> <span> Cake </span> </button> |
|
|
|
<ng-container *ngFor="let foodType of foodTypes"> |
|
|
|
<button (click)="getMallsByFoodType(foodType.name)" [ngClass]="{'active' : selectedFoodType === foodType.name}"> |
|
|
|
<img [src]="foodType.icon" alt=""> <span> {{ foodType.name }} </span> |
|
|
|
</button> |
|
|
|
</ng-container> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="results-utilities-holder"> |
|
|
@@ -63,7 +60,7 @@ |
|
|
|
<div class="offers-holder"> |
|
|
|
<div class="offer"> |
|
|
|
<ion-icon src="assets/custom/restaurant.svg"></ion-icon> |
|
|
|
Food Offers: <strong> {{ mallData.mall.offers_count }} </strong> |
|
|
|
Offers: <strong> {{ mallData.mall.offers_count }} </strong> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="utilities-holder"> |
|
|
|