2015-08-21 12:21:29 -07:00
|
|
|
import {SETUP_CHANNEL} from 'angular2/src/web_workers/shared/messaging_api';
|
2015-08-17 10:28:47 -07:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/facade/async';
|
2015-08-21 12:21:29 -07:00
|
|
|
import {MessageBus} from 'angular2/src/web_workers/shared/message_bus';
|
2015-08-17 10:28:47 -07:00
|
|
|
import {AnchorBasedAppRootUrl} from 'angular2/src/services/anchor_based_app_root_url';
|
|
|
|
import {Injectable} from 'angular2/di';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class WebWorkerSetup {
|
|
|
|
constructor(bus: MessageBus, anchorBasedAppRootUrl: AnchorBasedAppRootUrl) {
|
|
|
|
var rootUrl = anchorBasedAppRootUrl.value;
|
|
|
|
var sink = bus.to(SETUP_CHANNEL);
|
|
|
|
var source = bus.from(SETUP_CHANNEL);
|
|
|
|
|
|
|
|
ObservableWrapper.subscribe(source, (message: string) => {
|
|
|
|
if (message === "ready") {
|
|
|
|
ObservableWrapper.callNext(sink, {"rootUrl": rootUrl});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-08-21 12:21:29 -07:00
|
|
|
}
|