diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
commit | 28798b5d949826551740fc893d06e6424b77aa6a (patch) | |
tree | e235a7f49164a06c4b76df49ca61b89998d4ed81 /client/src/app/+admin | |
parent | 13fc89f4a4b91b3da10493517de556240fb65463 (diff) | |
download | PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.gz PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.zst PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.zip |
Client: replace simple tables by ng2 smart table component
Diffstat (limited to 'client/src/app/+admin')
8 files changed, 167 insertions, 152 deletions
diff --git a/client/src/app/+admin/friends/friend-list/friend-list.component.html b/client/src/app/+admin/friends/friend-list/friend-list.component.html index 06258f8c8..254d0c65e 100644 --- a/client/src/app/+admin/friends/friend-list/friend-list.component.html +++ b/client/src/app/+admin/friends/friend-list/friend-list.component.html | |||
@@ -1,29 +1,11 @@ | |||
1 | <h3>Friends list</h3> | 1 | <h3>Friends list</h3> |
2 | 2 | ||
3 | <table class="table table-hover"> | 3 | <ng2-smart-table [settings]="tableSettings" [source]="friendsSource"></ng2-smart-table> |
4 | <thead> | ||
5 | <tr> | ||
6 | <th class="table-column-id">ID</th> | ||
7 | <th>Host</th> | ||
8 | <th>Score</th> | ||
9 | <th>Created Date</th> | ||
10 | </tr> | ||
11 | </thead> | ||
12 | 4 | ||
13 | <tbody> | 5 | <a *ngIf="hasFriends()" class="add-user btn btn-danger pull-left" (click)="quitFriends()"> |
14 | <tr *ngFor="let friend of friends"> | ||
15 | <td>{{ friend.id }}</td> | ||
16 | <td>{{ friend.host }}</td> | ||
17 | <td>{{ friend.score }}</td> | ||
18 | <td>{{ friend.createdAt | date: 'medium' }}</td> | ||
19 | </tr> | ||
20 | </tbody> | ||
21 | </table> | ||
22 | |||
23 | <a *ngIf="friends && friends.length !== 0" class="add-user btn btn-danger pull-left" (click)="quitFriends()"> | ||
24 | Quit friends | 6 | Quit friends |
25 | </a> | 7 | </a> |
26 | 8 | ||
27 | <a *ngIf="friends?.length === 0" class="add-user btn btn-success pull-right" [routerLink]="['/admin/friends/add']"> | 9 | <a *ngIf="!hasFriends()" class="add-user btn btn-success pull-right" [routerLink]="['/admin/friends/add']"> |
28 | Make friends | 10 | Make friends |
29 | </a> | 11 | </a> |
diff --git a/client/src/app/+admin/friends/friend-list/friend-list.component.ts b/client/src/app/+admin/friends/friend-list/friend-list.component.ts index 175ad9cba..f29427640 100644 --- a/client/src/app/+admin/friends/friend-list/friend-list.component.ts +++ b/client/src/app/+admin/friends/friend-list/friend-list.component.ts | |||
@@ -1,8 +1,10 @@ | |||
1 | import { Component, OnInit } from '@angular/core'; | 1 | import { Component } from '@angular/core'; |
2 | 2 | ||
3 | import { NotificationsService } from 'angular2-notifications'; | 3 | import { NotificationsService } from 'angular2-notifications'; |
4 | import { ServerDataSource } from 'ng2-smart-table'; | ||
4 | 5 | ||
5 | import { ConfirmService } from '../../../core'; | 6 | import { ConfirmService } from '../../../core'; |
7 | import { Utils } from '../../../shared'; | ||
6 | import { Friend, FriendService } from '../shared'; | 8 | import { Friend, FriendService } from '../shared'; |
7 | 9 | ||
8 | @Component({ | 10 | @Component({ |
@@ -10,17 +12,51 @@ import { Friend, FriendService } from '../shared'; | |||
10 | templateUrl: './friend-list.component.html', | 12 | templateUrl: './friend-list.component.html', |
11 | styleUrls: [ './friend-list.component.scss' ] | 13 | styleUrls: [ './friend-list.component.scss' ] |
12 | }) | 14 | }) |
13 | export class FriendListComponent implements OnInit { | 15 | export class FriendListComponent { |
14 | friends: Friend[]; | 16 | friendsSource = null; |
17 | tableSettings = { | ||
18 | attr: { | ||
19 | class: 'table-hover' | ||
20 | }, | ||
21 | hideSubHeader: true, | ||
22 | actions: { | ||
23 | position: 'right', | ||
24 | add: false, | ||
25 | edit: false, | ||
26 | delete: false | ||
27 | }, | ||
28 | columns: { | ||
29 | id: { | ||
30 | title: 'ID', | ||
31 | sort: false, | ||
32 | sortDirection: 'asc' | ||
33 | }, | ||
34 | host: { | ||
35 | title: 'Host', | ||
36 | sort: false | ||
37 | }, | ||
38 | score: { | ||
39 | title: 'Score', | ||
40 | sort: false | ||
41 | }, | ||
42 | createdAt: { | ||
43 | title: 'Created Date', | ||
44 | sort: false, | ||
45 | valuePrepareFunction: Utils.dateToHuman | ||
46 | } | ||
47 | } | ||
48 | } | ||
15 | 49 | ||
16 | constructor( | 50 | constructor( |
17 | private notificationsService: NotificationsService, | 51 | private notificationsService: NotificationsService, |
18 | private confirmService: ConfirmService, | 52 | private confirmService: ConfirmService, |
19 | private friendService: FriendService | 53 | private friendService: FriendService |
20 | ) { } | 54 | ) { |
55 | this.friendsSource = this.friendService.getDataSource(); | ||
56 | } | ||
21 | 57 | ||
22 | ngOnInit() { | 58 | hasFriends() { |
23 | this.getFriends(); | 59 | return this.friendsSource.count() != 0; |
24 | } | 60 | } |
25 | 61 | ||
26 | quitFriends() { | 62 | quitFriends() { |
@@ -33,7 +69,7 @@ export class FriendListComponent implements OnInit { | |||
33 | status => { | 69 | status => { |
34 | this.notificationsService.success('Sucess', 'Friends left!'); | 70 | this.notificationsService.success('Sucess', 'Friends left!'); |
35 | 71 | ||
36 | this.getFriends(); | 72 | this.friendsSource.refresh(); |
37 | }, | 73 | }, |
38 | 74 | ||
39 | err => this.notificationsService.error('Error', err.text) | 75 | err => this.notificationsService.error('Error', err.text) |
@@ -41,12 +77,4 @@ export class FriendListComponent implements OnInit { | |||
41 | } | 77 | } |
42 | ); | 78 | ); |
43 | } | 79 | } |
44 | |||
45 | private getFriends() { | ||
46 | this.friendService.getFriends().subscribe( | ||
47 | res => this.friends = res.friends, | ||
48 | |||
49 | err => this.notificationsService.error('Error', err.text) | ||
50 | ); | ||
51 | } | ||
52 | } | 80 | } |
diff --git a/client/src/app/+admin/friends/shared/friend.service.ts b/client/src/app/+admin/friends/shared/friend.service.ts index e97459385..6cb84f5cd 100644 --- a/client/src/app/+admin/friends/shared/friend.service.ts +++ b/client/src/app/+admin/friends/shared/friend.service.ts | |||
@@ -3,8 +3,10 @@ import { Observable } from 'rxjs/Observable'; | |||
3 | import 'rxjs/add/operator/catch'; | 3 | import 'rxjs/add/operator/catch'; |
4 | import 'rxjs/add/operator/map'; | 4 | import 'rxjs/add/operator/map'; |
5 | 5 | ||
6 | import { ServerDataSource } from 'ng2-smart-table'; | ||
7 | |||
6 | import { Friend } from './friend.model'; | 8 | import { Friend } from './friend.model'; |
7 | import { AuthHttp, RestExtractor, ResultList } from '../../../shared'; | 9 | import { AuthHttp, RestExtractor, RestDataSource, ResultList } from '../../../shared'; |
8 | 10 | ||
9 | @Injectable() | 11 | @Injectable() |
10 | export class FriendService { | 12 | export class FriendService { |
@@ -15,11 +17,8 @@ export class FriendService { | |||
15 | private restExtractor: RestExtractor | 17 | private restExtractor: RestExtractor |
16 | ) {} | 18 | ) {} |
17 | 19 | ||
18 | getFriends() { | 20 | getDataSource() { |
19 | return this.authHttp.get(FriendService.BASE_FRIEND_URL) | 21 | return new RestDataSource(this.authHttp, FriendService.BASE_FRIEND_URL); |
20 | .map(this.restExtractor.extractDataList) | ||
21 | .map(this.extractFriends) | ||
22 | .catch((res) => this.restExtractor.handleError(res)); | ||
23 | } | 22 | } |
24 | 23 | ||
25 | makeFriends(notEmptyHosts) { | 24 | makeFriends(notEmptyHosts) { |
@@ -37,11 +36,4 @@ export class FriendService { | |||
37 | .map(res => res.status) | 36 | .map(res => res.status) |
38 | .catch((res) => this.restExtractor.handleError(res)); | 37 | .catch((res) => this.restExtractor.handleError(res)); |
39 | } | 38 | } |
40 | |||
41 | private extractFriends(result: ResultList) { | ||
42 | const friends: Friend[] = result.data; | ||
43 | const totalFriends = result.total; | ||
44 | |||
45 | return { friends, totalFriends }; | ||
46 | } | ||
47 | } | 39 | } |
diff --git a/client/src/app/+admin/users/shared/user.service.ts b/client/src/app/+admin/users/shared/user.service.ts index d9005b213..f6d360e09 100644 --- a/client/src/app/+admin/users/shared/user.service.ts +++ b/client/src/app/+admin/users/shared/user.service.ts | |||
@@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; | |||
2 | import 'rxjs/add/operator/catch'; | 2 | import 'rxjs/add/operator/catch'; |
3 | import 'rxjs/add/operator/map'; | 3 | import 'rxjs/add/operator/map'; |
4 | 4 | ||
5 | import { AuthHttp, RestExtractor, ResultList, User } from '../../../shared'; | 5 | import { AuthHttp, RestExtractor, RestDataSource, User } from '../../../shared'; |
6 | 6 | ||
7 | @Injectable() | 7 | @Injectable() |
8 | export class UserService { | 8 | export class UserService { |
@@ -25,25 +25,11 @@ export class UserService { | |||
25 | .catch(this.restExtractor.handleError); | 25 | .catch(this.restExtractor.handleError); |
26 | } | 26 | } |
27 | 27 | ||
28 | getUsers() { | 28 | getDataSource() { |
29 | return this.authHttp.get(UserService.BASE_USERS_URL) | 29 | return new RestDataSource(this.authHttp, UserService.BASE_USERS_URL); |
30 | .map(this.restExtractor.extractDataList) | ||
31 | .map(this.extractUsers) | ||
32 | .catch((res) => this.restExtractor.handleError(res)); | ||
33 | } | 30 | } |
34 | 31 | ||
35 | removeUser(user: User) { | 32 | removeUser(user: User) { |
36 | return this.authHttp.delete(UserService.BASE_USERS_URL + user.id); | 33 | return this.authHttp.delete(UserService.BASE_USERS_URL + user.id); |
37 | } | 34 | } |
38 | |||
39 | private extractUsers(result: ResultList) { | ||
40 | const usersJson = result.data; | ||
41 | const totalUsers = result.total; | ||
42 | const users = []; | ||
43 | for (const userJson of usersJson) { | ||
44 | users.push(new User(userJson)); | ||
45 | } | ||
46 | |||
47 | return { users, totalUsers }; | ||
48 | } | ||
49 | } | 35 | } |
diff --git a/client/src/app/+admin/users/user-list/user-list.component.html b/client/src/app/+admin/users/user-list/user-list.component.html index 36193d119..3d3d7e054 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.html +++ b/client/src/app/+admin/users/user-list/user-list.component.html | |||
@@ -1,26 +1,9 @@ | |||
1 | <h3>Users list</h3> | 1 | <h3>Users list</h3> |
2 | 2 | ||
3 | <table class="table table-hover"> | 3 | <ng2-smart-table |
4 | <thead> | 4 | [settings]="tableSettings" [source]="usersSource" |
5 | <tr> | 5 | (delete)="removeUser($event)" |
6 | <th class="table-column-id">ID</th> | 6 | ></ng2-smart-table> |
7 | <th>Username</th> | ||
8 | <th>Created Date</th> | ||
9 | <th class="text-right">Remove</th> | ||
10 | </tr> | ||
11 | </thead> | ||
12 | |||
13 | <tbody> | ||
14 | <tr *ngFor="let user of users"> | ||
15 | <td>{{ user.id }}</td> | ||
16 | <td>{{ user.username }}</td> | ||
17 | <td>{{ user.createdAt | date: 'medium' }}</td> | ||
18 | <td class="text-right"> | ||
19 | <span class="glyphicon glyphicon-remove" *ngIf="!user.isAdmin()" (click)="removeUser(user)"></span> | ||
20 | </td> | ||
21 | </tr> | ||
22 | </tbody> | ||
23 | </table> | ||
24 | 7 | ||
25 | <a class="add-user btn btn-success pull-right" [routerLink]="['/admin/users/add']"> | 8 | <a class="add-user btn btn-success pull-right" [routerLink]="['/admin/users/add']"> |
26 | <span class="glyphicon glyphicon-plus"></span> | 9 | <span class="glyphicon glyphicon-plus"></span> |
diff --git a/client/src/app/+admin/users/user-list/user-list.component.ts b/client/src/app/+admin/users/user-list/user-list.component.ts index baefb7064..db025d3a8 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.ts +++ b/client/src/app/+admin/users/user-list/user-list.component.ts | |||
@@ -1,9 +1,9 @@ | |||
1 | import { Component, OnInit } from '@angular/core'; | 1 | import { Component } from '@angular/core'; |
2 | 2 | ||
3 | import { NotificationsService } from 'angular2-notifications'; | 3 | import { NotificationsService } from 'angular2-notifications'; |
4 | 4 | ||
5 | import { ConfirmService } from '../../../core'; | 5 | import { ConfirmService } from '../../../core'; |
6 | import { User } from '../../../shared'; | 6 | import { User, Utils } from '../../../shared'; |
7 | import { UserService } from '../shared'; | 7 | import { UserService } from '../shared'; |
8 | 8 | ||
9 | @Component({ | 9 | @Component({ |
@@ -11,33 +11,62 @@ import { UserService } from '../shared'; | |||
11 | templateUrl: './user-list.component.html', | 11 | templateUrl: './user-list.component.html', |
12 | styleUrls: [ './user-list.component.scss' ] | 12 | styleUrls: [ './user-list.component.scss' ] |
13 | }) | 13 | }) |
14 | export class UserListComponent implements OnInit { | 14 | export class UserListComponent { |
15 | totalUsers: number; | 15 | usersSource = null; |
16 | users: User[]; | 16 | tableSettings = { |
17 | mode: 'external', | ||
18 | attr: { | ||
19 | class: 'table-hover' | ||
20 | }, | ||
21 | hideSubHeader: true, | ||
22 | actions: { | ||
23 | position: 'right', | ||
24 | add: false, | ||
25 | edit: false, | ||
26 | delete: true | ||
27 | }, | ||
28 | delete: { | ||
29 | deleteButtonContent: Utils.getRowDeleteButton() | ||
30 | }, | ||
31 | pager: { | ||
32 | display: true, | ||
33 | perPage: 10 | ||
34 | }, | ||
35 | columns: { | ||
36 | id: { | ||
37 | title: 'ID', | ||
38 | sortDirection: 'asc' | ||
39 | }, | ||
40 | username: { | ||
41 | title: 'Username' | ||
42 | }, | ||
43 | role: { | ||
44 | title: 'Role', | ||
45 | sort: false | ||
46 | }, | ||
47 | createdAt: { | ||
48 | title: 'Created Date', | ||
49 | valuePrepareFunction: Utils.dateToHuman | ||
50 | } | ||
51 | } | ||
52 | } | ||
17 | 53 | ||
18 | constructor( | 54 | constructor( |
19 | private notificationsService: NotificationsService, | 55 | private notificationsService: NotificationsService, |
20 | private confirmService: ConfirmService, | 56 | private confirmService: ConfirmService, |
21 | private userService: UserService | 57 | private userService: UserService |
22 | ) {} | 58 | ) { |
23 | 59 | this.usersSource = this.userService.getDataSource(); | |
24 | ngOnInit() { | ||
25 | this.getUsers(); | ||
26 | } | 60 | } |
27 | 61 | ||
28 | getUsers() { | 62 | removeUser({ data }) { |
29 | this.userService.getUsers().subscribe( | 63 | const user: User = data; |
30 | ({ users, totalUsers }) => { | ||
31 | this.users = users; | ||
32 | this.totalUsers = totalUsers; | ||
33 | }, | ||
34 | |||
35 | err => this.notificationsService.error('Error', err.text) | ||
36 | ); | ||
37 | } | ||
38 | 64 | ||
65 | if (user.username === 'root') { | ||
66 | this.notificationsService.error('Error', 'You cannot delete root.'); | ||
67 | return; | ||
68 | } | ||
39 | 69 | ||
40 | removeUser(user: User) { | ||
41 | this.confirmService.confirm('Do you really want to delete this user?', 'Delete').subscribe( | 70 | this.confirmService.confirm('Do you really want to delete this user?', 'Delete').subscribe( |
42 | res => { | 71 | res => { |
43 | if (res === false) return; | 72 | if (res === false) return; |
@@ -45,7 +74,7 @@ export class UserListComponent implements OnInit { | |||
45 | this.userService.removeUser(user).subscribe( | 74 | this.userService.removeUser(user).subscribe( |
46 | () => { | 75 | () => { |
47 | this.notificationsService.success('Success', `User ${user.username} deleted.`); | 76 | this.notificationsService.success('Success', `User ${user.username} deleted.`); |
48 | this.getUsers(); | 77 | this.usersSource.refresh(); |
49 | }, | 78 | }, |
50 | 79 | ||
51 | err => this.notificationsService.error('Error', err.text) | 80 | err => this.notificationsService.error('Error', err.text) |
diff --git a/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.html b/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.html index 46043577c..b2fd17bf0 100644 --- a/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.html +++ b/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.html | |||
@@ -1,27 +1,5 @@ | |||
1 | <h3>Video abuses list</h3> | 1 | <h3>Video abuses list</h3> |
2 | 2 | ||
3 | <table class="table table-hover"> | 3 | <ng2-smart-table |
4 | <thead> | 4 | [settings]="tableSettings" [source]="videoAbusesSource" |
5 | <tr> | 5 | ></ng2-smart-table> |
6 | <th class="cell-id">ID</th> | ||
7 | <th class="cell-reason">Reason</th> | ||
8 | <th>Reporter pod host</th> | ||
9 | <th>Reporter username</th> | ||
10 | <th>Video</th> | ||
11 | <th>Created at</th> | ||
12 | </tr> | ||
13 | </thead> | ||
14 | |||
15 | <tbody> | ||
16 | <tr *ngFor="let videoAbuse of videoAbuses"> | ||
17 | <td>{{ videoAbuse.id }}</td> | ||
18 | <td>{{ videoAbuse.reason }}</td> | ||
19 | <td>{{ videoAbuse.reporterPodHost }}</td> | ||
20 | <td>{{ videoAbuse.reporterUsername }}</td> | ||
21 | <td> | ||
22 | <a [routerLink]="buildVideoLink(videoAbuse)" title="Go to video">{{ videoAbuse.videoId }}</a> | ||
23 | </td> | ||
24 | <td>{{ videoAbuse.createdAt | date: 'medium' }}</td> | ||
25 | </tr> | ||
26 | </tbody> | ||
27 | </table> | ||
diff --git a/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.ts b/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.ts index cfd9151b0..2f22a4ab0 100644 --- a/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.ts +++ b/client/src/app/+admin/video-abuses/video-abuse-list/video-abuse-list.component.ts | |||
@@ -1,35 +1,72 @@ | |||
1 | import { Component, OnInit } from '@angular/core'; | 1 | import { Component } from '@angular/core'; |
2 | 2 | ||
3 | import { NotificationsService } from 'angular2-notifications'; | 3 | import { NotificationsService } from 'angular2-notifications'; |
4 | 4 | ||
5 | import { VideoAbuseService, VideoAbuse} from '../../../shared'; | 5 | import { Utils, VideoAbuseService, VideoAbuse} from '../../../shared'; |
6 | 6 | ||
7 | @Component({ | 7 | @Component({ |
8 | selector: 'my-video-abuse-list', | 8 | selector: 'my-video-abuse-list', |
9 | templateUrl: './video-abuse-list.component.html', | 9 | templateUrl: './video-abuse-list.component.html', |
10 | styleUrls: [ './video-abuse-list.component.scss' ] | 10 | styleUrls: [ './video-abuse-list.component.scss' ] |
11 | }) | 11 | }) |
12 | export class VideoAbuseListComponent implements OnInit { | 12 | export class VideoAbuseListComponent { |
13 | videoAbuses: VideoAbuse[]; | 13 | videoAbusesSource = null; |
14 | tableSettings = { | ||
15 | mode: 'external', | ||
16 | attr: { | ||
17 | class: 'table-hover' | ||
18 | }, | ||
19 | hideSubHeader: true, | ||
20 | actions: { | ||
21 | position: 'right', | ||
22 | add: false, | ||
23 | edit: false, | ||
24 | delete: false | ||
25 | }, | ||
26 | pager: { | ||
27 | display: true, | ||
28 | perPage: 10 | ||
29 | }, | ||
30 | columns: { | ||
31 | id: { | ||
32 | title: 'ID', | ||
33 | sortDirection: 'asc' | ||
34 | }, | ||
35 | reason: { | ||
36 | title: 'Reason', | ||
37 | sort: false | ||
38 | }, | ||
39 | reporterPodHost: { | ||
40 | title: 'Reporter pod host', | ||
41 | sort: false | ||
42 | }, | ||
43 | reporterUsername: { | ||
44 | title: 'Reporter username', | ||
45 | sort: false | ||
46 | }, | ||
47 | videoId: { | ||
48 | title: 'Video', | ||
49 | type: 'html', | ||
50 | sort: false, | ||
51 | valuePrepareFunction: this.buildVideoLink | ||
52 | }, | ||
53 | createdAt: { | ||
54 | title: 'Created Date', | ||
55 | valuePrepareFunction: Utils.dateToHuman | ||
56 | } | ||
57 | } | ||
58 | } | ||
14 | 59 | ||
15 | constructor( | 60 | constructor( |
16 | private notificationsService: NotificationsService, | 61 | private notificationsService: NotificationsService, |
17 | private videoAbuseService: VideoAbuseService | 62 | private videoAbuseService: VideoAbuseService |
18 | ) { } | 63 | ) { |
19 | 64 | this.videoAbusesSource = this.videoAbuseService.getDataSource(); | |
20 | ngOnInit() { | 65 | } |
21 | this.getVideoAbuses(); | ||
22 | } | ||
23 | |||
24 | buildVideoLink(videoAbuse: VideoAbuse) { | ||
25 | return `/videos/${videoAbuse.videoId}`; | ||
26 | } | ||
27 | |||
28 | private getVideoAbuses() { | ||
29 | this.videoAbuseService.getVideoAbuses().subscribe( | ||
30 | res => this.videoAbuses = res.videoAbuses, | ||
31 | 66 | ||
32 | err => this.notificationsService.error('Error', err.text) | 67 | buildVideoLink(videoId: string) { |
33 | ); | 68 | // TODO: transform to routerLink |
69 | // https://github.com/akveo/ng2-smart-table/issues/57 | ||
70 | return `<a href="/videos/${videoId}" title="Go to the video">${videoId}</a>`; | ||
34 | } | 71 | } |
35 | } | 72 | } |