-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeteor-subscribe.html
93 lines (81 loc) · 1.96 KB
/
meteor-subscribe.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!--
Subscribe to a Meteor (DDP) server publication.
Example :
<meteor-subscribe name="peoples" args="[]" isready="{{subready}}"></meteor-subscribe>
-->
<script>
Polymer({
is: 'meteor-subscribe',
/**
* Fired when the subscribtion becomes ready (first shot of results received).
*
* @event subscribe-ready
*/
/**
* Fired when an error occurs. The detail object contains the error.
*
* @event subscribe-error
*/
properties: {
/**
* Publish name to subscribe.
*/
name: {
type: String,
value: ""
},
/**
* The subscribe arguments.
*/
args: {
type: Array,
value: null
},
/**
* Wait to get an Array on args to start subscription
*/
waitargs: {
type: Boolean,
value: true
},
/**
* Ready state (first shot of results received).
*/
isready: {
type: Boolean,
value: false,
notify: true
}
},
observers: [ '_resub(name, args, waitargs)' ],
_resub: function(name, args, waitargs) {
//console.log("(re)subscribe meteor-subscribe "+name+" "+ args);
this.stop();
if (this.name && (args instanceof Array || !waitargs)) {
var callargs = this.args.slice(0);
callargs.unshift(this.name);
callargs.push({
onStop: function(err) {
if (err)
this.fire('subscribe-error', { error: err });
this.isready = false;
}.bind(this),
onReady: function() {
this.isready = true;
this.fire('subscribe-ready');
}.bind(this)
});
this._handle = Meteor.subscribe.apply(null, callargs);
}
},
/** Stop this subscription */
stop: function() {
if (this._handle) {
this._handle.stop();
this._handle = null;
}
},
ready: function() {
}
});
</script>