Skip to content

Commit f7d19a8

Browse files
committed
move simulation to its own file
1 parent fd28e10 commit f7d19a8

File tree

4 files changed

+41
-22
lines changed

4 files changed

+41
-22
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = false
8+
insert_final_newline = false

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
.vscode
3-
phoenix.db
3+
phoenix.db
4+
TODO
5+
test.js

index.js src/index.js

+3-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// var Web3 = require('web3')
22
const Events = require('events')
33
const events = new Events()
4+
const Simulator = require('./simulator.js')
5+
const simulator = new Simulator(events);
46

57
const { Observable, fromEvent, interval, Subject } = require('rxjs');
68
const { throttle, throttleTime, map, distinctUntilChanged, filter, average, reduce, count, scan} = require('rxjs/operators');
@@ -38,25 +40,6 @@ function run() {
3840
db.close()
3941
});
4042

41-
let contractEvents = [
42-
{ id: 1, from: "0x123", type: "Rating", rating: 3 },
43-
{ id: 2, from: "0x123", type: "Rating", rating: 1 },
44-
{ id: 3, from: "0x234", type: "Rating", rating: 5 },
45-
{ id: 4, from: "0x123", type: "Rating", rating: 4 },
46-
{ id: 5, from: "0x123", type: "Rating", rating: 2 },
47-
{ id: 6, from: "0x342", type: "Rating", rating: 2 }
48-
]
49-
50-
function emitEvents() {
51-
let i = 0
52-
// emit contract event each 1 second
53-
setInterval(() => {
54-
if (i >= contractEvents.length) return
55-
events.emit("contractEvent", contractEvents[i])
56-
i += 1
57-
}, 1 * 1000)
58-
}
59-
6043
let dbChanges = fromEvent(events, "updateDB")
6144

6245
dbChanges.pipe(throttle(val => interval(400))).subscribe(() => {
@@ -115,6 +98,5 @@ function run() {
11598
console.dir("current value is " + v)
11699
})
117100

118-
emitEvents()
119-
101+
simulator.emitEvents()
120102
}

src/simulator.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class Simulator {
2+
3+
constructor(events) {
4+
this.events = events;
5+
this.contractEvents = [
6+
{ id: 1, from: "0x123", type: "Rating", rating: 3 },
7+
{ id: 2, from: "0x123", type: "Rating", rating: 1 },
8+
{ id: 3, from: "0x234", type: "Rating", rating: 5 },
9+
{ id: 4, from: "0x123", type: "Rating", rating: 4 },
10+
{ id: 5, from: "0x123", type: "Rating", rating: 2 },
11+
{ id: 6, from: "0x342", type: "Rating", rating: 2 }
12+
]
13+
}
14+
15+
emitEvents() {
16+
let i = 0
17+
// emit contract event each 1 second
18+
setInterval(() => {
19+
if (i >= this.contractEvents.length) return
20+
this.events.emit("contractEvent", this.contractEvents[i])
21+
i += 1
22+
}, 1 * 1000)
23+
}
24+
25+
}
26+
27+
module.exports = Simulator;

0 commit comments

Comments
 (0)