Initial search implementation

- Add search box to demo-shell toolbar
- Initial search component to display results

Refs #69
This commit is contained in:
Will Abson
2016-05-19 17:20:53 +01:00
parent 90452d34f8
commit f8627a59e9
20 changed files with 962 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
<h1>Search results</h1>
<p *ngIf="results">Found {{results.length}} results for {{currentSearchTerm}}</p>
<table *ngIf="results" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp full-width">
<thead>
<tr>
<th>
<span class="mdl-data-table__cell--non-numeric">Name</span>
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="#result of results; #idx = index">
<td>{{result.entry.name}}</td>
</tr>
</tbody>
</table>