PeerTube/client/src/app/app.component.ts

83 lines
1.8 KiB
TypeScript
Raw Normal View History

2016-05-13 07:18:37 -05:00
import { Component } from '@angular/core';
import { HTTP_PROVIDERS } from '@angular/http';
2016-07-08 10:15:14 -05:00
import { Router, ROUTER_DIRECTIVES } from '@angular/router';
2016-03-14 07:50:19 -05:00
import { FriendService } from './friends';
import {
AuthService,
AuthStatus,
Search,
2016-07-08 10:15:14 -05:00
SearchComponent,
SearchService
} from './shared';
2016-07-08 10:15:14 -05:00
import { VideoService } from './videos';
2016-03-14 07:50:19 -05:00
@Component({
selector: 'my-app',
template: require('./app.component.html'),
styles: [ require('./app.component.scss') ],
directives: [ ROUTER_DIRECTIVES, SearchComponent ],
2016-07-08 10:15:14 -05:00
providers: [ AuthService, FriendService, HTTP_PROVIDERS, VideoService, SearchService ]
2016-03-14 07:50:19 -05:00
})
export class AppComponent {
2016-05-27 10:25:52 -05:00
choices = [];
2016-05-27 10:49:18 -05:00
isLoggedIn: boolean;
2016-05-24 16:00:58 -05:00
2016-05-27 10:49:18 -05:00
constructor(
private authService: AuthService,
private friendService: FriendService,
private router: Router
2016-03-22 09:51:54 -05:00
) {
2016-05-27 10:25:52 -05:00
this.isLoggedIn = this.authService.isLoggedIn();
2016-03-22 09:51:54 -05:00
2016-05-27 10:25:52 -05:00
this.authService.loginChangedSource.subscribe(
2016-03-22 09:51:54 -05:00
status => {
if (status === AuthStatus.LoggedIn) {
this.isLoggedIn = true;
}
}
);
}
2016-03-14 16:16:43 -05:00
onSearch(search: Search) {
if (search.value !== '') {
2016-05-24 16:00:58 -05:00
const params = {
2016-05-27 10:49:18 -05:00
field: search.field,
search: search.value
2016-05-24 16:00:58 -05:00
};
2016-07-08 10:15:14 -05:00
2016-06-10 10:43:40 -05:00
this.router.navigate(['/videos/list', params]);
2016-03-14 16:16:43 -05:00
} else {
2016-06-10 10:43:40 -05:00
this.router.navigate(['/videos/list']);
2016-03-14 16:16:43 -05:00
}
}
2016-03-14 07:50:19 -05:00
2016-06-10 10:43:40 -05:00
// FIXME
2016-03-22 09:51:54 -05:00
logout() {
// this._authService.logout();
}
2016-03-14 07:50:19 -05:00
makeFriends() {
2016-05-27 10:25:52 -05:00
this.friendService.makeFriends().subscribe(
2016-03-14 07:50:19 -05:00
status => {
if (status === 409) {
alert('Already made friends!');
2016-03-14 16:16:43 -05:00
} else {
2016-03-14 07:50:19 -05:00
alert('Made friends!');
}
},
error => alert(error)
2016-04-08 13:58:07 -05:00
);
2016-03-14 07:50:19 -05:00
}
quitFriends() {
2016-05-27 10:25:52 -05:00
this.friendService.quitFriends().subscribe(
2016-03-14 07:50:19 -05:00
status => {
2016-05-27 10:49:18 -05:00
alert('Quit friends!');
2016-03-14 07:50:19 -05:00
},
error => alert(error)
2016-04-08 13:58:07 -05:00
);
2016-03-14 07:50:19 -05:00
}
}