diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-08 08:27:13 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-08 08:37:15 +0100 |
commit | bd324a669218f9ed302f7f54b36ee535d25c9733 (patch) | |
tree | aebade345a240333c6f7e8e162881548c6c56dec /client | |
parent | 3d446a26ada901331faaaf3be9083dfe6773b50a (diff) | |
download | PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.gz PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.tar.zst PeerTube-bd324a669218f9ed302f7f54b36ee535d25c9733.zip |
Prepare client app
Diffstat (limited to 'client')
-rw-r--r-- | client/.gitignore | 6 | ||||
-rw-r--r-- | client/app/app.component.html | 1 | ||||
-rw-r--r-- | client/app/app.component.scss | 3 | ||||
-rw-r--r-- | client/app/app.component.ts | 10 | ||||
-rw-r--r-- | client/app/main.ts | 4 | ||||
-rw-r--r-- | client/components/app/app.component.html | 23 | ||||
-rw-r--r-- | client/components/app/app.component.scss | 0 | ||||
-rw-r--r-- | client/components/app/app.component.ts | 43 | ||||
-rw-r--r-- | client/components/bootstrap.ts | 4 | ||||
-rw-r--r-- | client/components/videos/add/videos-add.component.ts | 1 | ||||
-rw-r--r-- | client/components/videos/list/videos-list.component.ts | 1 | ||||
-rw-r--r-- | client/components/videos/watch/videos-watch.component.ts | 1 | ||||
-rw-r--r-- | client/index.html | 24 |
13 files changed, 89 insertions, 32 deletions
diff --git a/client/.gitignore b/client/.gitignore index 548b53226..439f0c025 100644 --- a/client/.gitignore +++ b/client/.gitignore | |||
@@ -1,5 +1,5 @@ | |||
1 | typings | 1 | typings |
2 | app/**/*.js | 2 | components/**/*.js |
3 | app/**/*.map | 3 | components/**/*.map |
4 | stylesheets/index.css | 4 | stylesheets/index.css |
5 | app/*.css | 5 | components/**/*.css |
diff --git a/client/app/app.component.html b/client/app/app.component.html deleted file mode 100644 index b6515528b..000000000 --- a/client/app/app.component.html +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | <h1>{{ title }}</h1> | ||
diff --git a/client/app/app.component.scss b/client/app/app.component.scss deleted file mode 100644 index e7315a8e9..000000000 --- a/client/app/app.component.scss +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | h1 { | ||
2 | font-size: 100px; | ||
3 | } | ||
diff --git a/client/app/app.component.ts b/client/app/app.component.ts deleted file mode 100644 index c908663e9..000000000 --- a/client/app/app.component.ts +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | import {Component} from 'angular2/core'; | ||
2 | |||
3 | @Component({ | ||
4 | selector: 'my-app', | ||
5 | templateUrl: 'app/app.component.html', | ||
6 | styleUrls: [ 'app/app.component.css' ] | ||
7 | }) | ||
8 | export class AppComponent { | ||
9 | title = "coucou"; | ||
10 | } | ||
diff --git a/client/app/main.ts b/client/app/main.ts deleted file mode 100644 index 034c15573..000000000 --- a/client/app/main.ts +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | import {bootstrap} from 'angular2/platform/browser' | ||
2 | import {AppComponent} from './app.component' | ||
3 | |||
4 | bootstrap(AppComponent); | ||
diff --git a/client/components/app/app.component.html b/client/components/app/app.component.html new file mode 100644 index 000000000..5a841ca0f --- /dev/null +++ b/client/components/app/app.component.html | |||
@@ -0,0 +1,23 @@ | |||
1 | <div class="container"> | ||
2 | <div class="row"> | ||
3 | <menu class="col-md-2"> | ||
4 | <div id="panel_get_videos" class="panel_button"> | ||
5 | <a [routerLink]="['VideosList']" class="glyphicon glyphicon-list">Get videos</a> | ||
6 | </div> | ||
7 | |||
8 | <div id="panel_upload_video" class="panel_button"> | ||
9 | <a [routerLink]="['VideosAdd']" class="glyphicon glyphicon-cloud-upload">Upload a video</a> | ||
10 | </div> | ||
11 | |||
12 | <div id="panel_make_friends" class="panel_button"> | ||
13 | <a (click)='makeFriends()' class="glyphicon glyphicon-user">Make friends</a> | ||
14 | </div> | ||
15 | |||
16 | <div id="panel_quit_friends" class="panel_button"> | ||
17 | <a (click)='quitFriends()' class="glyphicon glyphicon-plane">Quit friends</a> | ||
18 | </div> | ||
19 | </menu> | ||
20 | |||
21 | <router-outlet class="col-md-9"></router-outlet> | ||
22 | </div> | ||
23 | </div> | ||
diff --git a/client/components/app/app.component.scss b/client/components/app/app.component.scss new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/client/components/app/app.component.scss | |||
diff --git a/client/components/app/app.component.ts b/client/components/app/app.component.ts new file mode 100644 index 000000000..e2cebf535 --- /dev/null +++ b/client/components/app/app.component.ts | |||
@@ -0,0 +1,43 @@ | |||
1 | import {Component} from 'angular2/core'; | ||
2 | import { RouteConfig, ROUTER_DIRECTIVES, ROUTER_PROVIDERS } from 'angular2/router'; | ||
3 | |||
4 | import { VideosAddComponent } from '../videos/add/videos-add.component'; | ||
5 | import { VideosListComponent } from '../videos/list/videos-list.component'; | ||
6 | import { VideosWatchComponent } from '../videos/watch/videos-watch.component'; | ||
7 | |||
8 | @RouteConfig([ | ||
9 | { | ||
10 | path: '/videos/list', | ||
11 | name: 'VideosList', | ||
12 | component: VideosListComponent, | ||
13 | useAsDefault: true | ||
14 | }, | ||
15 | { | ||
16 | path: '/videos/watch/:id', | ||
17 | name: 'VideosWatch', | ||
18 | component: VideosWatchComponent | ||
19 | }, | ||
20 | { | ||
21 | path: '/videos/add', | ||
22 | name: 'VideosAdd', | ||
23 | component: VideosAddComponent | ||
24 | } | ||
25 | ]) | ||
26 | |||
27 | @Component({ | ||
28 | selector: 'my-app', | ||
29 | templateUrl: 'app/components/app/app.component.html', | ||
30 | styleUrls: [ 'app/components/app/app.component.css' ], | ||
31 | directives: [ ROUTER_DIRECTIVES ], | ||
32 | providers: [ ROUTER_PROVIDERS ] | ||
33 | }) | ||
34 | |||
35 | export class AppComponent { | ||
36 | makeFriends() { | ||
37 | alert('make Friends'); | ||
38 | } | ||
39 | |||
40 | quitFriends() { | ||
41 | alert('quit Friends'); | ||
42 | } | ||
43 | } | ||
diff --git a/client/components/bootstrap.ts b/client/components/bootstrap.ts new file mode 100644 index 000000000..d0f524f4a --- /dev/null +++ b/client/components/bootstrap.ts | |||
@@ -0,0 +1,4 @@ | |||
1 | import { bootstrap } from 'angular2/platform/browser'; | ||
2 | import { AppComponent } from './app/app.component'; | ||
3 | |||
4 | bootstrap(AppComponent); | ||
diff --git a/client/components/videos/add/videos-add.component.ts b/client/components/videos/add/videos-add.component.ts new file mode 100644 index 000000000..0db7c0163 --- /dev/null +++ b/client/components/videos/add/videos-add.component.ts | |||
@@ -0,0 +1 @@ | |||
export class VideosAddComponent {} | |||
diff --git a/client/components/videos/list/videos-list.component.ts b/client/components/videos/list/videos-list.component.ts new file mode 100644 index 000000000..54470a5ad --- /dev/null +++ b/client/components/videos/list/videos-list.component.ts | |||
@@ -0,0 +1 @@ | |||
export class VideosListComponent {} | |||
diff --git a/client/components/videos/watch/videos-watch.component.ts b/client/components/videos/watch/videos-watch.component.ts new file mode 100644 index 000000000..84daef336 --- /dev/null +++ b/client/components/videos/watch/videos-watch.component.ts | |||
@@ -0,0 +1 @@ | |||
export class VideosWatchComponent {} | |||
diff --git a/client/index.html b/client/index.html index 7aa408181..f971b9fdb 100644 --- a/client/index.html +++ b/client/index.html | |||
@@ -6,27 +6,29 @@ | |||
6 | 6 | ||
7 | <!-- 1. Load libraries --> | 7 | <!-- 1. Load libraries --> |
8 | <!-- IE required polyfills, in this exact order --> | 8 | <!-- IE required polyfills, in this exact order --> |
9 | <script src="node_modules/es6-shim/es6-shim.min.js"></script> | 9 | <script src="app/node_modules/es6-shim/es6-shim.min.js"></script> |
10 | <script src="node_modules/systemjs/dist/system-polyfills.js"></script> | 10 | <script src="app/node_modules/systemjs/dist/system-polyfills.js"></script> |
11 | <script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | 11 | <script src="app/node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script> |
12 | 12 | ||
13 | <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script> | 13 | <script src="app/node_modules/angular2/bundles/angular2-polyfills.js"></script> |
14 | <script src="node_modules/systemjs/dist/system.src.js"></script> | 14 | <script src="app/node_modules/systemjs/dist/system.src.js"></script> |
15 | <script src="node_modules/rxjs/bundles/Rx.js"></script> | 15 | <script src="app/node_modules/rxjs/bundles/Rx.js"></script> |
16 | <script src="node_modules/angular2/bundles/angular2.dev.js"></script> | 16 | <script src="app/node_modules/angular2/bundles/angular2.dev.js"></script> |
17 | <script src="node_modules/angular2/bundles/router.dev.js"></script> | 17 | <script src="app/node_modules/angular2/bundles/router.dev.js"></script> |
18 | 18 | ||
19 | <!-- 2. Configure SystemJS --> | 19 | <!-- 2. Configure SystemJS --> |
20 | <script> | 20 | <script> |
21 | System.config({ | 21 | System.config({ |
22 | packages: { | 22 | packages: { |
23 | app: { | 23 | app: { |
24 | format: 'register', | 24 | components: { |
25 | defaultExtension: 'js' | 25 | format: 'register', |
26 | defaultExtension: 'js' | ||
27 | } | ||
26 | } | 28 | } |
27 | } | 29 | } |
28 | }); | 30 | }); |
29 | System.import('app/main') | 31 | System.import('app/components/bootstrap') |
30 | .then(null, console.error.bind(console)); | 32 | .then(null, console.error.bind(console)); |
31 | </script> | 33 | </script> |
32 | 34 | ||