aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/ext/filter.js
blob: c237062496650147ad54f12736856df5c588c1ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
var ethx = {
    prototype: Object,

    watch: function(options) {
        return new Filter(options);
    },

    note: function() {
        var args = Array.prototype.slice.call(arguments, 0);
        var o = []
        for(var i = 0; i < args.length; i++) {
            o.push(args[i].toString())
        }

        eth.notef(o);
    },
};

var Filter = function(options) {
    this.callbacks = [];
    this.options = options;

    if(options === "chain") {
        this.id = eth.newFilterString(options);
    } else if(typeof options === "object") {
        this.id = eth.newFilter(options);
    }
};

Filter.prototype.changed = function(callback) {
    this.callbacks.push(callback);

    var self = this;
    messages.connect(function(messages, id) {
        if(id ==  self.id) {
            for(var i = 0; i < self.callbacks.length; i++) {
                self.callbacks[i].call(self, messages);
            }
        }
    });
};

Filter.prototype.uninstall = function() {
    eth.uninstallFilter(this.id)
}

Filter.prototype.messages = function() {
    return eth.messages(this.id)
}