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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| import { Component } from '@angular/core';
import { trigger, state, style, transition, animate } from '@angular/core';
import store from '../../store';
import Book from './book.component';
@Component({
selector: 'books',
template: `
<div *ngIf='status === "Fetching..."'
style='width: 100%; padding: 20px; text-align: center'>
<img src="../images/spinner.gif" role="presentation" />
</div>
<div *ngIf='displayMode === "LIST"' style='width: 100%; padding: 20px;'>
<ul>
<li *ngFor='let book of books'>
<book [item]='book'
[displayMode]='displayMode'></book>
</li>
</ul>
</div>
<div *ngIf='displayMode === "THUMBNAIL"' style='padding: 20px;'>
<book *ngFor='let book of books'
[item]='book'
[displayMode]='displayMode'>
</book>
</div>
`
})
export default class Books {
private books: Array<Book>;
private displayMode: string;
private status: string;
private unsubscribe: any;
constructor() {
this.unsubscribe = store.subscribe(() => {
const state = store.getState();
this.books = state.books;
this.displayMode = state.displayMode;
this.status = state.currentStatus;
});
}
ngOnDestroy() {
this.unsubscribe();
}
}
|