diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-20 17:18:15 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-21 22:09:45 +0100 |
commit | 693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c (patch) | |
tree | d6004d282a55d995eecba78bae95173bd0f11767 /client/src/app/login | |
parent | 2c8d4697db4b5a2d645b7bfcaf91093a64597958 (diff) | |
download | PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.gz PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.tar.zst PeerTube-693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c.zip |
Client: split in angular modules
Diffstat (limited to 'client/src/app/login')
-rw-r--r-- | client/src/app/login/index.ts | 3 | ||||
-rw-r--r-- | client/src/app/login/login-routing.module.ts | 22 | ||||
-rw-r--r-- | client/src/app/login/login.component.ts | 3 | ||||
-rw-r--r-- | client/src/app/login/login.module.ts | 24 | ||||
-rw-r--r-- | client/src/app/login/login.routes.ts | 13 |
5 files changed, 50 insertions, 15 deletions
diff --git a/client/src/app/login/index.ts b/client/src/app/login/index.ts index 64d3f2a3c..5639915f7 100644 --- a/client/src/app/login/index.ts +++ b/client/src/app/login/index.ts | |||
@@ -1,2 +1,3 @@ | |||
1 | export * from './login-routing.module'; | ||
1 | export * from './login.component'; | 2 | export * from './login.component'; |
2 | export * from './login.routes'; | 3 | export * from './login.module'; |
diff --git a/client/src/app/login/login-routing.module.ts b/client/src/app/login/login-routing.module.ts new file mode 100644 index 000000000..da68519bd --- /dev/null +++ b/client/src/app/login/login-routing.module.ts | |||
@@ -0,0 +1,22 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { RouterModule, Routes } from '@angular/router'; | ||
3 | |||
4 | import { LoginComponent } from './login.component'; | ||
5 | |||
6 | const loginRoutes: Routes = [ | ||
7 | { | ||
8 | path: 'login', | ||
9 | component: LoginComponent, | ||
10 | data: { | ||
11 | meta: { | ||
12 | titleSuffix: ' - Login' | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | ]; | ||
17 | |||
18 | @NgModule({ | ||
19 | imports: [ RouterModule.forChild(loginRoutes) ], | ||
20 | exports: [ RouterModule ] | ||
21 | }) | ||
22 | export class LoginRoutingModule {} | ||
diff --git a/client/src/app/login/login.component.ts b/client/src/app/login/login.component.ts index c4ff7050b..fd4a314cc 100644 --- a/client/src/app/login/login.component.ts +++ b/client/src/app/login/login.component.ts | |||
@@ -2,7 +2,8 @@ import { Component, OnInit } from '@angular/core'; | |||
2 | import { FormBuilder, FormGroup, Validators } from '@angular/forms'; | 2 | import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
3 | import { Router } from '@angular/router'; | 3 | import { Router } from '@angular/router'; |
4 | 4 | ||
5 | import { AuthService, FormReactive } from '../shared'; | 5 | import { AuthService } from '../core'; |
6 | import { FormReactive } from '../shared'; | ||
6 | 7 | ||
7 | @Component({ | 8 | @Component({ |
8 | selector: 'my-login', | 9 | selector: 'my-login', |
diff --git a/client/src/app/login/login.module.ts b/client/src/app/login/login.module.ts new file mode 100644 index 000000000..31a723b43 --- /dev/null +++ b/client/src/app/login/login.module.ts | |||
@@ -0,0 +1,24 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { LoginRoutingModule } from './login-routing.module'; | ||
4 | import { LoginComponent } from './login.component'; | ||
5 | import { SharedModule } from '../shared'; | ||
6 | |||
7 | @NgModule({ | ||
8 | imports: [ | ||
9 | LoginRoutingModule, | ||
10 | SharedModule | ||
11 | ], | ||
12 | |||
13 | declarations: [ | ||
14 | LoginComponent | ||
15 | ], | ||
16 | |||
17 | exports: [ | ||
18 | LoginComponent | ||
19 | ], | ||
20 | |||
21 | providers: [ | ||
22 | ] | ||
23 | }) | ||
24 | export class LoginModule { } | ||
diff --git a/client/src/app/login/login.routes.ts b/client/src/app/login/login.routes.ts deleted file mode 100644 index 2f63af5e2..000000000 --- a/client/src/app/login/login.routes.ts +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | import { LoginComponent } from './login.component'; | ||
2 | |||
3 | export const LoginRoutes = [ | ||
4 | { | ||
5 | path: 'login', | ||
6 | component: LoginComponent, | ||
7 | data: { | ||
8 | meta: { | ||
9 | titleSuffix: ' - Login' | ||
10 | } | ||
11 | } | ||
12 | } | ||
13 | ]; | ||