-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathMeteorObservable.ts
218 lines (205 loc) · 6.88 KB
/
MeteorObservable.ts
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
'use strict';
import {Observable, Subscriber} from 'rxjs';
import {isMeteorCallbacks, forkZone, removeObserver} from './utils';
function throwInvalidCallback(method: string) {
throw new Error(
`Invalid ${method} arguments:
your last param can't be a callback function,
please remove it and use ".subscribe" of the Observable!`);
}
/**
* This is a class with static methods that wrap Meteor's API and return RxJS
* Observables. The methods' signatures are the same as Meteor's, with the ]
* exception that the callbacks are handled by Meteor-rxjs. Instead of
* providing callbacks, you need to subscribe to the observables that are
* returned. The methods that are wrapped in MeteorObservable are
* [Meteor.call](https://docs.meteor.com/api/methods.html#Meteor-call),
* [Meteor.autorun](https://docs.meteor.com/api/tracker.html#Tracker-autorun)
* and [Meteor.subscribe](https://docs.meteor.com/api/pubsub.html#Meteor-subscribe).
*/
export class MeteorObservable {
/**
* Invokes a [Meteor Method](https://docs.meteor.com/api/methods.html)
* defined on the server, passing any number of arguments. This method has
* the same signature as
* [Meteor.call](https://docs.meteor.com/api/methods.html#Meteor-call), only
* without the callbacks:
* MeteorObservable.call(name, [...args])
*
*
* @param {string} name - Name of the method in the Meteor server
* @param {any} args - Parameters that will be forwarded to the method.
* after the func call to initiate change detection.
* @returns {Observable<T>} - RxJS Observable, which completes when the
* server returns a response.
*
* @example <caption>Example using Angular2 Component</caption>
* class MyComponent {
* constructor() {
*
* }
*
* doAction(payload) {
* MeteorObservable.call("myData", payload).subscribe((response) => {
* // Handle success and response from server!
* }, (err) => {
* // Handle error
* });
* }
* }
*/
public static call<T>(name: string, ...args: any[]): Observable<T> {
const lastParam = args[args.length - 1];
if (isMeteorCallbacks(lastParam)) {
throwInvalidCallback('MeteorObservable.call');
}
let zone = forkZone();
return Observable.create((observer: Subscriber<Meteor.Error | T>) => {
Meteor.call(name, ...args.concat([
(error: Meteor.Error, result: T) => {
zone.run(() => {
error ? observer.error(error) :
observer.next(result);
observer.complete();
});
}
]));
});
}
/**
* When you subscribe to a collection, it tells the server to send records to
* the client. This method has the same signature as
* [Meteor.subscribe](https://docs.meteor.com/api/pubsub.html#Meteor-subscribe),
* except without the callbacks again:
* subscribe(name, [...args])
*
* You can use this method from any Angular2 element - such as Component,
* Pipe or Service.
*
* @param {string} name - Name of the publication in the Meteor server
* @param {any} args - Parameters that will be forwarded to the publication.
* after the func call to initiate change detection.
* @returns {Observable} - RxJS Observable, which completes when the
* subscription is ready.
*
* @example <caption>Example using Angular2 Service</caption>
* class MyService {
* private meteorSubscription: Observable<any>;
*
* constructor() {
*
* }
*
* subscribeToData() {
* this.meteorSubscription = MeteorObservable.subscribe<any>("myData").subscribe(() => {
* // Subscription is ready!
* });
* }
*
* unsubscribeToData() {
* this.meteorSubscription.unsubscribe();
* }
* }
*
* @example <caption>Example using Angular2 Component</caption>
* class MyComponent implements OnInit, OnDestroy {
* private meteorSubscription: Observable<any>;
*
* constructor() {
*
* }
*
* ngOnInit() {
* this.meteorSubscription = MeteorObservable.subscribe("myData").subscribe(() => {
* // Subscription is ready!
* });
* }
*
* ngOnDestroy() {
* this.meteorSubscription.unsubscribe();
* }
* }
*
* @see {@link http://docs.meteor.com/api/pubsub.html|Publications in Meteor documentation}
*/
public static subscribe<T>(name: string, ...args: any[]): Observable<T> {
let lastParam = args[args.length - 1];
if (isMeteorCallbacks(lastParam)) {
throwInvalidCallback('MeteorObservable.subscribe');
}
let zone = forkZone();
let observers = [];
let subscribe = () => {
return Meteor.subscribe(name, ...args.concat([{
onError: (error: Meteor.Error) => {
zone.run(() => {
observers.forEach(observer => observer.error(error));
});
},
onReady: () => {
zone.run(() => {
observers.forEach(observer => observer.next());
});
}
}
]));
};
let subHandler = null;
return Observable.create((observer: Subscriber<Meteor.Error | T>) => {
observers.push(observer);
// Execute subscribe lazily.
if (subHandler === null) {
subHandler = subscribe();
}
return () => {
removeObserver(observers,
observer, () => subHandler.stop());
};
});
}
/**
* Allows you to run a function every time there is a change is a reactive
* data sources. This method has the same signature as
* [Meteor.autorun](https://docs.meteor.com/api/tracker.html#Tracker-autorun),
* only without the callback:
* MeteorObservable.autorun()
*
* @returns {Observable<T>} - RxJS Observable, which trigger the subscription callback
* each time that Meteor Tracker detects a change.
* @example <caption>Example using Angular2 Component</caption>
* class MyComponent {
* constructor() {
*
* }
*
* doAction(payload) {
* MeteorObservable.autorun().subscribe(() => {
* // Handle Tracker autorun change
* });
* }
* }
*/
public static autorun(): Observable<Tracker.Computation> {
let zone = forkZone();
let observers = [];
let autorun = () => {
return Tracker.autorun((computation: Tracker.Computation) => {
zone.run(() => {
observers.forEach(observer => observer.next(computation));
});
});
};
let handler = null;
return Observable.create((observer: Subscriber<Meteor.Error | Tracker.Computation>) => {
observers.push(observer);
// Execute autorun lazily.
if (handler === null) {
handler = autorun();
}
return () => {
removeObserver(observers,
observer, () => handler.stop());
};
});
}
}