Skip to content

Commit 46c9c63

Browse files
committedApr 18, 2017
use gun for todo list
1 parent b4172a0 commit 46c9c63

File tree

7 files changed

+83
-10
lines changed

7 files changed

+83
-10
lines changed
 

‎examples/angular/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@
2121
"@angular/platform-browser-dynamic": "^4.0.0",
2222
"@angular/router": "^4.0.0",
2323
"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",
2528
"zone.js": "^0.8.4"
2629
},
2730
"devDependencies": {
@@ -35,9 +38,9 @@
3538
"karma": "~1.4.1",
3639
"karma-chrome-launcher": "~2.0.0",
3740
"karma-cli": "~1.0.1",
41+
"karma-coverage-istanbul-reporter": "^0.2.0",
3842
"karma-jasmine": "~1.1.0",
3943
"karma-jasmine-html-reporter": "^0.2.2",
40-
"karma-coverage-istanbul-reporter": "^0.2.0",
4144
"protractor": "~5.1.0",
4245
"ts-node": "~2.0.0",
4346
"tslint": "~4.5.0",

‎examples/angular/server.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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;}
+11-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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>
+26-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
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';
27

38
@Component({
49
selector: 'app-root',
510
templateUrl: './app.component.html',
611
styleUrls: ['./app.component.css']
712
})
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+
}
1033
}

‎examples/angular/src/app/app.module.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { BrowserModule } from '@angular/platform-browser';
2-
import { NgModule } from '@angular/core';
2+
import { NgModule, Injectable } from '@angular/core';
33
import { FormsModule } from '@angular/forms';
44
import { HttpModule } from '@angular/http';
5+
import { Observable } from 'rxjs/Observable';
6+
7+
import Gun from 'gun/gun';
58

69
import { AppComponent } from './app.component';
710

@@ -14,7 +17,13 @@ import { AppComponent } from './app.component';
1417
FormsModule,
1518
HttpModule
1619
],
17-
providers: [],
20+
providers: [GunDb],
1821
bootstrap: [AppComponent]
1922
})
2023
export class AppModule { }
24+
25+
@Injectable()
26+
export class GunDb {
27+
28+
readonly gun = Gun(location.origin + '/gun');
29+
}

‎examples/angular/src/main.ts

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
44
import { AppModule } from './app/app.module';
55
import { environment } from './environments/environment';
66

7+
import 'rxjs/add/observable/of';
8+
import 'rxjs/add/operator/startWith';
9+
710
if (environment.production) {
811
enableProdMode();
912
}

0 commit comments

Comments
 (0)
Please sign in to comment.