File tree 7 files changed +83
-10
lines changed
7 files changed +83
-10
lines changed Original file line number Diff line number Diff line change 21
21
"@angular/platform-browser-dynamic" : " ^4.0.0" ,
22
22
"@angular/router" : " ^4.0.0" ,
23
23
"core-js" : " ^2.4.1" ,
24
- "rxjs" : " ^5.1.0" ,
24
+ "express-http-proxy" : " ^0.11.0" ,
25
+ "gun" : " ^0.7.2" ,
26
+ "gun-edge" : " ^0.8.8" ,
27
+ "rxjs" : " ^5.3.0" ,
25
28
"zone.js" : " ^0.8.4"
26
29
},
27
30
"devDependencies" : {
35
38
"karma" : " ~1.4.1" ,
36
39
"karma-chrome-launcher" : " ~2.0.0" ,
37
40
"karma-cli" : " ~1.0.1" ,
41
+ "karma-coverage-istanbul-reporter" : " ^0.2.0" ,
38
42
"karma-jasmine" : " ~1.1.0" ,
39
43
"karma-jasmine-html-reporter" : " ^0.2.2" ,
40
- "karma-coverage-istanbul-reporter" : " ^0.2.0" ,
41
44
"protractor" : " ~5.1.0" ,
42
45
"ts-node" : " ~2.0.0" ,
43
46
"tslint" : " ~4.5.0" ,
Original file line number Diff line number Diff line change
1
+ var port = process . env . OPENSHIFT_NODEJS_PORT || process . env . VCAP_APP_PORT || process . env . PORT || process . argv [ 2 ] || 8080 ;
2
+ var host = process . env . OPENSHIFT_NODEJS_HOST || process . env . VCAP_APP_HOST || process . env . HOST || 'localhost' ;
3
+
4
+ var express = require ( 'express' ) ;
5
+ var proxy = require ( 'express-http-proxy' ) ;
6
+ var http = require ( 'http' ) ;
7
+ var app = express ( ) ;
8
+ var server = http . createServer ( app ) ;
9
+
10
+ var Gun = require ( 'gun' ) ;
11
+ var gun = Gun ( {
12
+ file : 'data.json' ,
13
+ web : server
14
+ } ) ;
15
+
16
+ app . use ( Gun . serve ) ;
17
+ app . use ( proxy ( host + ':4200' ) ) ;
18
+ server . listen ( port ) ;
19
+
20
+ console . log ( 'Server started on port ' + port + ' with /gun' ) ;
Original file line number Diff line number Diff line change
1
+ html , body { font-size : 14pt ; padding : 10px 2.5% ;}
2
+ .hide { display : none; }
3
+ form .who { width : 10% ; }
4
+ form .what { width : 80% ; }
5
+ ul { list-style : none; padding : 0 ; }
6
+ ul .when {color : # 555 ; font-size : 12pt ; float : right; display : none; }
7
+ li : hover .when {display : inline;}
Original file line number Diff line number Diff line change 1
- < h1 >
2
- {{title}}
3
- </ h1 >
1
+ < div >
2
+
3
+ < form (ngSubmit) ="add() ">
4
+ < input type ="text " [(ngModel)] ="newTodo " name ="newTodo " placeholder ="New TODO ">
5
+ < button type ="submit " *ngIf ="newTodo " [disabled] ="newTodo?.trim().length === 0 "> Add</ button >
6
+ </ form >
7
+ < br />
8
+ < ul >
9
+ < li *ngFor ="let todo of todos$ | async "> {{todo.val}}</ li >
10
+ </ ul >
11
+ </ div >
Original file line number Diff line number Diff line change 1
- import { Component } from '@angular/core' ;
1
+ import { Component , OnInit } from '@angular/core' ;
2
+ import { $rx } from 'gun-edge/edge/observable/rx' ;
3
+ import Gun from 'gun/gun' ;
4
+ import { Observable } from 'rxjs/Observable' ;
5
+
6
+ import { GunDb } from 'app/app.module' ;
2
7
3
8
@Component ( {
4
9
selector : 'app-root' ,
5
10
templateUrl : './app.component.html' ,
6
11
styleUrls : [ './app.component.css' ]
7
12
} )
8
- export class AppComponent {
9
- title = 'app works!' ;
13
+ export class AppComponent implements OnInit {
14
+ newTodo = '' ;
15
+
16
+ todos = this . db . gun . get ( 'todos' ) ;
17
+ todos$ : Observable < string [ ] > = $rx ( this . todos )
18
+ . startWith ( [ ] )
19
+ . map ( o => Object . keys ( o ) . filter ( k => typeof o [ k ] === 'string' ) . map ( k => ( { key : k , val : ( o [ k ] as string ) } ) ) ) ;
20
+
21
+ constructor ( private db : GunDb ) { }
22
+
23
+ ngOnInit ( ) {
24
+ $rx ( this . todos ) . subscribe ( x => console . log ( x ) ) ;
25
+ }
26
+
27
+ add ( ) {
28
+ if ( this . newTodo ) {
29
+ this . todos . path ( Gun . text . random ( ) ) . put ( this . newTodo ) ;
30
+ this . newTodo = '' ;
31
+ }
32
+ }
10
33
}
Original file line number Diff line number Diff line change 1
1
import { BrowserModule } from '@angular/platform-browser' ;
2
- import { NgModule } from '@angular/core' ;
2
+ import { NgModule , Injectable } from '@angular/core' ;
3
3
import { FormsModule } from '@angular/forms' ;
4
4
import { HttpModule } from '@angular/http' ;
5
+ import { Observable } from 'rxjs/Observable' ;
6
+
7
+ import Gun from 'gun/gun' ;
5
8
6
9
import { AppComponent } from './app.component' ;
7
10
@@ -14,7 +17,13 @@ import { AppComponent } from './app.component';
14
17
FormsModule ,
15
18
HttpModule
16
19
] ,
17
- providers : [ ] ,
20
+ providers : [ GunDb ] ,
18
21
bootstrap : [ AppComponent ]
19
22
} )
20
23
export class AppModule { }
24
+
25
+ @Injectable ( )
26
+ export class GunDb {
27
+
28
+ readonly gun = Gun ( location . origin + '/gun' ) ;
29
+ }
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
4
4
import { AppModule } from './app/app.module' ;
5
5
import { environment } from './environments/environment' ;
6
6
7
+ import 'rxjs/add/observable/of' ;
8
+ import 'rxjs/add/operator/startWith' ;
9
+
7
10
if ( environment . production ) {
8
11
enableProdMode ( ) ;
9
12
}
You can’t perform that action at this time.
0 commit comments