1
1
// var Web3 = require('web3')
2
2
const Events = require ( 'events' )
3
3
const events = new Events ( )
4
+ const Simulator = require ( './simulator.js' )
5
+ const simulator = new Simulator ( events ) ;
4
6
5
7
const { Observable, fromEvent, interval, Subject } = require ( 'rxjs' ) ;
6
8
const { throttle, throttleTime, map, distinctUntilChanged, filter, average, reduce, count, scan} = require ( 'rxjs/operators' ) ;
@@ -38,25 +40,6 @@ function run() {
38
40
db . close ( )
39
41
} ) ;
40
42
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
-
60
43
let dbChanges = fromEvent ( events , "updateDB" )
61
44
62
45
dbChanges . pipe ( throttle ( val => interval ( 400 ) ) ) . subscribe ( ( ) => {
@@ -115,6 +98,5 @@ function run() {
115
98
console . dir ( "current value is " + v )
116
99
} )
117
100
118
- emitEvents ( )
119
-
101
+ simulator . emitEvents ( )
120
102
}
0 commit comments