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/account | |
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/account')
-rw-r--r-- | client/src/app/account/account-routing.module.ts | 22 | ||||
-rw-r--r-- | client/src/app/account/account.module.ts | 26 | ||||
-rw-r--r-- | client/src/app/account/account.routes.ts | 13 | ||||
-rw-r--r-- | client/src/app/account/account.service.ts | 3 | ||||
-rw-r--r-- | client/src/app/account/index.ts | 3 |
5 files changed, 52 insertions, 15 deletions
diff --git a/client/src/app/account/account-routing.module.ts b/client/src/app/account/account-routing.module.ts new file mode 100644 index 000000000..8c1033cd2 --- /dev/null +++ b/client/src/app/account/account-routing.module.ts | |||
@@ -0,0 +1,22 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { RouterModule, Routes } from '@angular/router'; | ||
3 | |||
4 | import { AccountComponent } from './account.component'; | ||
5 | |||
6 | const accountRoutes: Routes = [ | ||
7 | { | ||
8 | path: 'account', | ||
9 | component: AccountComponent, | ||
10 | data: { | ||
11 | meta: { | ||
12 | titleSuffix: ' - My account' | ||
13 | } | ||
14 | } | ||
15 | } | ||
16 | ]; | ||
17 | |||
18 | @NgModule({ | ||
19 | imports: [ RouterModule.forChild(accountRoutes) ], | ||
20 | exports: [ RouterModule ] | ||
21 | }) | ||
22 | export class AccountRoutingModule {} | ||
diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts new file mode 100644 index 000000000..53f6ba58e --- /dev/null +++ b/client/src/app/account/account.module.ts | |||
@@ -0,0 +1,26 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | |||
3 | import { AccountRoutingModule } from './account-routing.module'; | ||
4 | import { AccountComponent } from './account.component'; | ||
5 | import { AccountService } from './account.service'; | ||
6 | import { SharedModule } from '../shared'; | ||
7 | |||
8 | @NgModule({ | ||
9 | imports: [ | ||
10 | AccountRoutingModule, | ||
11 | SharedModule | ||
12 | ], | ||
13 | |||
14 | declarations: [ | ||
15 | AccountComponent | ||
16 | ], | ||
17 | |||
18 | exports: [ | ||
19 | AccountComponent | ||
20 | ], | ||
21 | |||
22 | providers: [ | ||
23 | AccountService | ||
24 | ] | ||
25 | }) | ||
26 | export class AccountModule { } | ||
diff --git a/client/src/app/account/account.routes.ts b/client/src/app/account/account.routes.ts deleted file mode 100644 index c382a6deb..000000000 --- a/client/src/app/account/account.routes.ts +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | import { AccountComponent } from './account.component'; | ||
2 | |||
3 | export const AccountRoutes = [ | ||
4 | { | ||
5 | path: 'account', | ||
6 | component: AccountComponent, | ||
7 | data: { | ||
8 | meta: { | ||
9 | titleSuffix: ' - My account' | ||
10 | } | ||
11 | } | ||
12 | } | ||
13 | ]; | ||
diff --git a/client/src/app/account/account.service.ts b/client/src/app/account/account.service.ts index 355bcef74..0635c2533 100644 --- a/client/src/app/account/account.service.ts +++ b/client/src/app/account/account.service.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Injectable } from '@angular/core'; | 1 | import { Injectable } from '@angular/core'; |
2 | 2 | ||
3 | import { AuthHttp, AuthService, RestExtractor } from '../shared'; | 3 | import { AuthService } from '../core'; |
4 | import { AuthHttp, RestExtractor } from '../shared'; | ||
4 | 5 | ||
5 | @Injectable() | 6 | @Injectable() |
6 | export class AccountService { | 7 | export class AccountService { |
diff --git a/client/src/app/account/index.ts b/client/src/app/account/index.ts index 823d9fe5f..be03713cb 100644 --- a/client/src/app/account/index.ts +++ b/client/src/app/account/index.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | export * from './account-routing.module'; | ||
1 | export * from './account.component'; | 2 | export * from './account.component'; |
2 | export * from './account.routes'; | 3 | export * from './account.module'; |
3 | export * from './account.service'; | 4 | export * from './account.service'; |