2016-12-01 10:39:04 -05:00
|
|
|
<ion-header>
|
|
|
|
<ion-navbar>
|
2016-12-31 18:12:50 -05:00
|
|
|
<button ion-button icon-only menuToggle left>
|
|
|
|
<ion-icon name="menu" large></ion-icon>
|
2016-12-01 10:39:04 -05:00
|
|
|
</button>
|
2016-12-27 21:10:00 -05:00
|
|
|
<ion-searchbar (search)="getQuery($event)" (input)="setQuery($event)" [showCancelButton]="true"></ion-searchbar>
|
2016-12-01 10:39:04 -05:00
|
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
2017-01-18 17:51:06 -05:00
|
|
|
|
2016-12-01 10:39:04 -05:00
|
|
|
<ion-content padding class="search-card">
|
2017-01-18 17:51:06 -05:00
|
|
|
<ion-card>
|
|
|
|
<ion-grid>
|
|
|
|
<ion-row>
|
|
|
|
<ion-col style="width: 95px;">
|
|
|
|
<button ion-button right small (click)="addPage()">
|
|
|
|
<ion-icon name="cloud-upload"></ion-icon><div> Save</div>
|
|
|
|
</button>
|
|
|
|
</ion-col>
|
|
|
|
<ion-col style="flex-grow: 100 !important">
|
|
|
|
<ion-item>
|
|
|
|
<ion-input type="text" placeholder="Saved Results Title goes here" [(ngModel)]="saved_results_title"></ion-input>
|
|
|
|
</ion-item>
|
|
|
|
</ion-col>
|
|
|
|
|
|
|
|
</ion-row>
|
|
|
|
</ion-grid>
|
|
|
|
</ion-card>
|
2017-01-01 10:53:44 -05:00
|
|
|
|
2016-12-31 18:12:50 -05:00
|
|
|
<ion-card *ngFor="let item of userProfile.user.items">
|
2017-01-18 17:51:06 -05:00
|
|
|
<error *ngIf="isError(item.type)" [cardItem]="item" [item]="item.data" (onClose)="removeItem($event)"></error>
|
2017-01-20 18:57:02 -05:00
|
|
|
<passage *ngIf="isPassage(item.type)" [cardItem]="item" [item]="item.data" (onClose)="removeItem($event)" [dict]="item.dict" (onItemClicked)="getItemsNextToCard($event)"></passage>
|
|
|
|
<strongs *ngIf="isStrongs(item.type)" [cardItem]="item" [item]="item.data" (onClose)="removeItem($event)" (onItemClicked)="getItemsNextToCard($event)"></strongs>
|
|
|
|
<words *ngIf="isWords(item.type)" [cardItem]="item" [item]="item.data" (onClose)="removeItem($event)" (onItemClicked)="getItemsNextToCard($event)"></words>
|
2016-12-01 10:39:04 -05:00
|
|
|
</ion-card>
|
|
|
|
</ion-content>
|