diff options
Diffstat (limited to 'client/app')
-rw-r--r-- | client/app/app.component.ts | 11 | ||||
-rw-r--r-- | client/app/friends/friend.service.ts | 10 | ||||
-rw-r--r-- | client/app/login/index.ts (renamed from client/app/users/login/index.ts) | 0 | ||||
-rw-r--r-- | client/app/login/login.component.html (renamed from client/app/users/login/login.component.html) | 0 | ||||
-rw-r--r-- | client/app/login/login.component.ts (renamed from client/app/users/login/login.component.ts) | 7 | ||||
-rw-r--r-- | client/app/shared/index.ts | 5 | ||||
-rw-r--r-- | client/app/shared/search/index.ts | 3 | ||||
-rw-r--r-- | client/app/shared/search/search-field.type.ts (renamed from client/app/shared/search-field.type.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/search/search.component.html (renamed from client/app/shared/search.component.html) | 0 | ||||
-rw-r--r-- | client/app/shared/search/search.component.ts (renamed from client/app/shared/search.component.ts) | 2 | ||||
-rw-r--r-- | client/app/shared/search/search.model.ts (renamed from client/app/shared/search.model.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/users/auth-status.model.ts (renamed from client/app/users/shared/auth-status.model.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/users/auth.service.ts (renamed from client/app/users/shared/auth.service.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/users/index.ts (renamed from client/app/users/shared/index.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/users/token.model.ts (renamed from client/app/users/shared/token.model.ts) | 0 | ||||
-rw-r--r-- | client/app/shared/users/user.model.ts (renamed from client/app/users/shared/user.model.ts) | 0 | ||||
-rw-r--r-- | client/app/users/index.ts | 2 | ||||
-rw-r--r-- | client/app/users/login/login.component.scss | 0 | ||||
-rw-r--r-- | client/app/videos/shared/video.service.ts | 2 | ||||
-rw-r--r-- | client/app/videos/video-add/video-add.component.ts | 2 | ||||
-rw-r--r-- | client/app/videos/video-list/video-list.component.ts | 3 | ||||
-rw-r--r-- | client/app/videos/video-list/video-miniature.component.ts | 2 |
22 files changed, 26 insertions, 23 deletions
diff --git a/client/app/app.component.ts b/client/app/app.component.ts index d29448296..94924a47a 100644 --- a/client/app/app.component.ts +++ b/client/app/app.component.ts | |||
@@ -3,12 +3,13 @@ import { HTTP_PROVIDERS } from '@angular/http'; | |||
3 | import { RouteConfig, Router, ROUTER_DIRECTIVES, ROUTER_PROVIDERS } from '@angular/router-deprecated'; | 3 | import { RouteConfig, Router, ROUTER_DIRECTIVES, ROUTER_PROVIDERS } from '@angular/router-deprecated'; |
4 | 4 | ||
5 | import { FriendService } from './friends/index'; | 5 | import { FriendService } from './friends/index'; |
6 | import { Search, SearchComponent } from './shared/index'; | 6 | import { LoginComponent } from './login/index'; |
7 | import { | 7 | import { |
8 | UserLoginComponent, | ||
9 | AuthService, | 8 | AuthService, |
10 | AuthStatus | 9 | AuthStatus, |
11 | } from './users/index'; | 10 | Search, |
11 | SearchComponent | ||
12 | } from './shared/index'; | ||
12 | import { | 13 | import { |
13 | VideoAddComponent, | 14 | VideoAddComponent, |
14 | VideoListComponent, | 15 | VideoListComponent, |
@@ -20,7 +21,7 @@ import { | |||
20 | { | 21 | { |
21 | path: '/users/login', | 22 | path: '/users/login', |
22 | name: 'UserLogin', | 23 | name: 'UserLogin', |
23 | component: UserLoginComponent | 24 | component: LoginComponent |
24 | }, | 25 | }, |
25 | { | 26 | { |
26 | path: '/videos/list', | 27 | path: '/videos/list', |
diff --git a/client/app/friends/friend.service.ts b/client/app/friends/friend.service.ts index bdfa7baec..d3684f08d 100644 --- a/client/app/friends/friend.service.ts +++ b/client/app/friends/friend.service.ts | |||
@@ -2,20 +2,24 @@ import { Injectable } from '@angular/core'; | |||
2 | import { Http, Response } from '@angular/http'; | 2 | import { Http, Response } from '@angular/http'; |
3 | import { Observable } from 'rxjs/Rx'; | 3 | import { Observable } from 'rxjs/Rx'; |
4 | 4 | ||
5 | import { AuthService } from '../shared/index'; | ||
6 | |||
5 | @Injectable() | 7 | @Injectable() |
6 | export class FriendService { | 8 | export class FriendService { |
7 | private static BASE_FRIEND_URL: string = '/api/v1/pods/'; | 9 | private static BASE_FRIEND_URL: string = '/api/v1/pods/'; |
8 | 10 | ||
9 | constructor (private http: Http) {} | 11 | constructor (private http: Http, private authService: AuthService) {} |
10 | 12 | ||
11 | makeFriends() { | 13 | makeFriends() { |
12 | return this.http.get(FriendService.BASE_FRIEND_URL + 'makefriends') | 14 | const headers = this.authService.getRequestHeader(); |
15 | return this.http.get(FriendService.BASE_FRIEND_URL + 'makefriends', { headers }) | ||
13 | .map(res => res.status) | 16 | .map(res => res.status) |
14 | .catch(this.handleError); | 17 | .catch(this.handleError); |
15 | } | 18 | } |
16 | 19 | ||
17 | quitFriends() { | 20 | quitFriends() { |
18 | return this.http.get(FriendService.BASE_FRIEND_URL + 'quitfriends') | 21 | const headers = this.authService.getRequestHeader(); |
22 | return this.http.get(FriendService.BASE_FRIEND_URL + 'quitfriends', { headers }) | ||
19 | .map(res => res.status) | 23 | .map(res => res.status) |
20 | .catch(this.handleError); | 24 | .catch(this.handleError); |
21 | } | 25 | } |
diff --git a/client/app/users/login/index.ts b/client/app/login/index.ts index 69c16441f..69c16441f 100644 --- a/client/app/users/login/index.ts +++ b/client/app/login/index.ts | |||
diff --git a/client/app/users/login/login.component.html b/client/app/login/login.component.html index 940694515..940694515 100644 --- a/client/app/users/login/login.component.html +++ b/client/app/login/login.component.html | |||
diff --git a/client/app/users/login/login.component.ts b/client/app/login/login.component.ts index 09c5f1af7..50f598d92 100644 --- a/client/app/users/login/login.component.ts +++ b/client/app/login/login.component.ts | |||
@@ -4,12 +4,11 @@ import { Router } from '@angular/router-deprecated'; | |||
4 | import { AuthService, AuthStatus, User } from '../shared/index'; | 4 | import { AuthService, AuthStatus, User } from '../shared/index'; |
5 | 5 | ||
6 | @Component({ | 6 | @Component({ |
7 | selector: 'my-user-login', | 7 | selector: 'my-login', |
8 | styleUrls: [ 'client/app/users/login/login.component.css' ], | 8 | templateUrl: 'client/app/login/login.component.html' |
9 | templateUrl: 'client/app/users/login/login.component.html' | ||
10 | }) | 9 | }) |
11 | 10 | ||
12 | export class UserLoginComponent { | 11 | export class LoginComponent { |
13 | constructor( | 12 | constructor( |
14 | private authService: AuthService, | 13 | private authService: AuthService, |
15 | private router: Router | 14 | private router: Router |
diff --git a/client/app/shared/index.ts b/client/app/shared/index.ts index a49a4f1a9..ad3ee0098 100644 --- a/client/app/shared/index.ts +++ b/client/app/shared/index.ts | |||
@@ -1,3 +1,2 @@ | |||
1 | export * from './search-field.type'; | 1 | export * from './search/index'; |
2 | export * from './search.component'; | 2 | export * from './users/index' |
3 | export * from './search.model'; | ||
diff --git a/client/app/shared/search/index.ts b/client/app/shared/search/index.ts new file mode 100644 index 000000000..a49a4f1a9 --- /dev/null +++ b/client/app/shared/search/index.ts | |||
@@ -0,0 +1,3 @@ | |||
1 | export * from './search-field.type'; | ||
2 | export * from './search.component'; | ||
3 | export * from './search.model'; | ||
diff --git a/client/app/shared/search-field.type.ts b/client/app/shared/search/search-field.type.ts index 846236290..846236290 100644 --- a/client/app/shared/search-field.type.ts +++ b/client/app/shared/search/search-field.type.ts | |||
diff --git a/client/app/shared/search.component.html b/client/app/shared/search/search.component.html index fb13ac72e..fb13ac72e 100644 --- a/client/app/shared/search.component.html +++ b/client/app/shared/search/search.component.html | |||
diff --git a/client/app/shared/search.component.ts b/client/app/shared/search/search.component.ts index e1e30b9af..d541cd0d6 100644 --- a/client/app/shared/search.component.ts +++ b/client/app/shared/search/search.component.ts | |||
@@ -7,7 +7,7 @@ import { SearchField } from './search-field.type'; | |||
7 | 7 | ||
8 | @Component({ | 8 | @Component({ |
9 | selector: 'my-search', | 9 | selector: 'my-search', |
10 | templateUrl: 'client/app/shared/search.component.html', | 10 | templateUrl: 'client/app/shared/search/search.component.html', |
11 | directives: [ DROPDOWN_DIRECTIVES ] | 11 | directives: [ DROPDOWN_DIRECTIVES ] |
12 | }) | 12 | }) |
13 | 13 | ||
diff --git a/client/app/shared/search.model.ts b/client/app/shared/search/search.model.ts index 932a6566c..932a6566c 100644 --- a/client/app/shared/search.model.ts +++ b/client/app/shared/search/search.model.ts | |||
diff --git a/client/app/users/shared/auth-status.model.ts b/client/app/shared/users/auth-status.model.ts index f646bd4cf..f646bd4cf 100644 --- a/client/app/users/shared/auth-status.model.ts +++ b/client/app/shared/users/auth-status.model.ts | |||
diff --git a/client/app/users/shared/auth.service.ts b/client/app/shared/users/auth.service.ts index d63fe38f3..d63fe38f3 100644 --- a/client/app/users/shared/auth.service.ts +++ b/client/app/shared/users/auth.service.ts | |||
diff --git a/client/app/users/shared/index.ts b/client/app/shared/users/index.ts index c6816b3c6..c6816b3c6 100644 --- a/client/app/users/shared/index.ts +++ b/client/app/shared/users/index.ts | |||
diff --git a/client/app/users/shared/token.model.ts b/client/app/shared/users/token.model.ts index 021c83fad..021c83fad 100644 --- a/client/app/users/shared/token.model.ts +++ b/client/app/shared/users/token.model.ts | |||
diff --git a/client/app/users/shared/user.model.ts b/client/app/shared/users/user.model.ts index ca0a5f26c..ca0a5f26c 100644 --- a/client/app/users/shared/user.model.ts +++ b/client/app/shared/users/user.model.ts | |||
diff --git a/client/app/users/index.ts b/client/app/users/index.ts deleted file mode 100644 index 4f08b8bc7..000000000 --- a/client/app/users/index.ts +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | export * from './login/index'; | ||
2 | export * from './shared/index'; | ||
diff --git a/client/app/users/login/login.component.scss b/client/app/users/login/login.component.scss deleted file mode 100644 index e69de29bb..000000000 --- a/client/app/users/login/login.component.scss +++ /dev/null | |||
diff --git a/client/app/videos/shared/video.service.ts b/client/app/videos/shared/video.service.ts index 7b6519f00..a786b2ab2 100644 --- a/client/app/videos/shared/video.service.ts +++ b/client/app/videos/shared/video.service.ts | |||
@@ -5,7 +5,7 @@ import { Observable } from 'rxjs/Rx'; | |||
5 | import { Pagination } from './pagination.model'; | 5 | import { Pagination } from './pagination.model'; |
6 | import { Search } from '../../shared/index'; | 6 | import { Search } from '../../shared/index'; |
7 | import { SortField } from './sort-field.type'; | 7 | import { SortField } from './sort-field.type'; |
8 | import { AuthService } from '../../users/index'; | 8 | import { AuthService } from '../../shared/index'; |
9 | import { Video } from './video.model'; | 9 | import { Video } from './video.model'; |
10 | 10 | ||
11 | @Injectable() | 11 | @Injectable() |
diff --git a/client/app/videos/video-add/video-add.component.ts b/client/app/videos/video-add/video-add.component.ts index 619a4f4d8..e17b1b0f6 100644 --- a/client/app/videos/video-add/video-add.component.ts +++ b/client/app/videos/video-add/video-add.component.ts | |||
@@ -7,7 +7,7 @@ import { Router } from '@angular/router-deprecated'; | |||
7 | import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; | 7 | import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; |
8 | import { PROGRESSBAR_DIRECTIVES } from 'ng2-bootstrap/components/progressbar'; | 8 | import { PROGRESSBAR_DIRECTIVES } from 'ng2-bootstrap/components/progressbar'; |
9 | 9 | ||
10 | import { AuthService, User } from '../../users/index'; | 10 | import { AuthService, User } from '../../shared/index'; |
11 | 11 | ||
12 | @Component({ | 12 | @Component({ |
13 | selector: 'my-videos-add', | 13 | selector: 'my-videos-add', |
diff --git a/client/app/videos/video-list/video-list.component.ts b/client/app/videos/video-list/video-list.component.ts index 6322860be..baca00deb 100644 --- a/client/app/videos/video-list/video-list.component.ts +++ b/client/app/videos/video-list/video-list.component.ts | |||
@@ -10,8 +10,7 @@ import { | |||
10 | Video, | 10 | Video, |
11 | VideoService | 11 | VideoService |
12 | } from '../shared/index'; | 12 | } from '../shared/index'; |
13 | import { Search, SearchField } from '../../shared/index'; | 13 | import { AuthService, Search, SearchField, User } from '../../shared/index'; |
14 | import { AuthService, User } from '../../users/index'; | ||
15 | import { VideoMiniatureComponent } from './video-miniature.component'; | 14 | import { VideoMiniatureComponent } from './video-miniature.component'; |
16 | import { VideoSortComponent } from './video-sort.component'; | 15 | import { VideoSortComponent } from './video-sort.component'; |
17 | 16 | ||
diff --git a/client/app/videos/video-list/video-miniature.component.ts b/client/app/videos/video-list/video-miniature.component.ts index 3baa1ddd6..11b828ca6 100644 --- a/client/app/videos/video-list/video-miniature.component.ts +++ b/client/app/videos/video-list/video-miniature.component.ts | |||
@@ -3,7 +3,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'; | |||
3 | import { ROUTER_DIRECTIVES } from '@angular/router-deprecated'; | 3 | import { ROUTER_DIRECTIVES } from '@angular/router-deprecated'; |
4 | 4 | ||
5 | import { Video, VideoService } from '../shared/index'; | 5 | import { Video, VideoService } from '../shared/index'; |
6 | import { User } from '../../users/index'; | 6 | import { User } from '../../shared/index'; |
7 | 7 | ||
8 | @Component({ | 8 | @Component({ |
9 | selector: 'my-video-miniature', | 9 | selector: 'my-video-miniature', |