2015-08-21 12:21:29 -07:00
|
|
|
import {SETUP_CHANNEL} from 'angular2/src/web_workers/shared/messaging_api';
|
2015-08-20 14:28:25 -07:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
|
2015-08-21 12:21:29 -07:00
|
|
|
import {MessageBus} from 'angular2/src/web_workers/shared/message_bus';
|
2015-10-02 09:30:36 -07:00
|
|
|
import {AnchorBasedAppRootUrl} from 'angular2/src/core/compiler/anchor_based_app_root_url';
|
2015-08-26 10:41:41 -07:00
|
|
|
import {StringWrapper} from 'angular2/src/core/facade/lang';
|
2015-09-03 22:01:36 -07:00
|
|
|
import {Injectable} from 'angular2/src/core/di';
|
2015-08-17 10:28:47 -07:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class WebWorkerSetup {
|
2015-09-01 10:55:11 -07:00
|
|
|
rootUrl: string;
|
|
|
|
|
|
|
|
constructor(private _bus: MessageBus, anchorBasedAppRootUrl: AnchorBasedAppRootUrl) {
|
|
|
|
this.rootUrl = anchorBasedAppRootUrl.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
start(): void {
|
2015-09-08 10:52:06 -07:00
|
|
|
this._bus.initChannel(SETUP_CHANNEL, false);
|
2015-09-01 10:55:11 -07:00
|
|
|
var sink = this._bus.to(SETUP_CHANNEL);
|
|
|
|
var source = this._bus.from(SETUP_CHANNEL);
|
2015-08-17 10:28:47 -07:00
|
|
|
|
|
|
|
ObservableWrapper.subscribe(source, (message: string) => {
|
2015-08-26 10:41:41 -07:00
|
|
|
if (StringWrapper.equals(message, "ready")) {
|
2015-09-01 10:55:11 -07:00
|
|
|
ObservableWrapper.callNext(sink, {"rootUrl": this.rootUrl});
|
2015-08-17 10:28:47 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-08-21 12:21:29 -07:00
|
|
|
}
|