How to use the @scion/microfrontend-platform.Beans.get function in @scion/microfrontend-platform

To help you get started, we’ve selected a few @scion/microfrontend-platform examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manifest-request-handler.ts View on Github external
private publishInstalledApplications(): void {
    const applications: Application[] = Beans.get(ApplicationRegistry).getApplications();
    Beans.get(MessageClient).publish$(Topics.Applications, applications, {retain: true}).subscribe();
  }
github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manifest-request-handler.ts View on Github external
private installCapabilityUnregisterRequestHandler(): void {
    Beans.get(MessageClient).observe$(Topics.UnregisterCapability)
      .pipe(takeUntil(this._destroy$))
      .subscribe((request: TopicMessage) => {
        const appSymbolicName = request.headers.get(MessageHeaders.AppSymbolicName);
        Beans.get(ManifestRegistry).unregisterCapability(appSymbolicName, request.body.capabilityId);
      });
  }
github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manifest-request-handler.ts View on Github external
.pipe(mergeMap((request: TopicMessage) => {
          const manifestRegistry = Beans.get(ManifestRegistry);
          const replyTo = request.headers.get(MessageHeaders.ReplyTo);
          const appSymbolicName = request.headers.get(MessageHeaders.AppSymbolicName);

          return merge(of(null), manifestRegistry.intentChange$)
            .pipe(
              map(() => manifestRegistry.getIntentsByApplication(appSymbolicName)),
              switchMap(intents => Beans.get(MessageClient).publish$(replyTo, intents)),
              takeUntilUnsubscribe(replyTo),
            );
        }),
        takeUntil(this._destroy$),
github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manifest-request-handler.ts View on Github external
private installCapabilityRegisterRequestHandler(): void {
    Beans.get(MessageClient).observe$(Topics.RegisterCapability)
      .pipe(takeUntil(this._destroy$))
      .subscribe((request: TopicMessage) => {
        const appSymbolicName = request.headers.get(MessageHeaders.AppSymbolicName);
        Beans.get(ManifestRegistry).registerCapability(appSymbolicName, [request.body.capability]);
      });
  }
github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / testing-app-platform-initializer.resolver.ts View on Github external
private startClientPlatform(port: number): Promise {
    Beans.get(PlatformState).whenState(PlatformStates.Starting).then(() => {
      Beans.register(NgZone, {useValue: this._zone});
      Beans.registerDecorator(MessageClient, {useClass: AngularZoneMessageClientDecorator});
    });

    return MicrofrontendPlatform.forClient({symbolicName: `app-${port}`});
  }
}
github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manifest-request-handler.ts View on Github external
private installCapabilitiesQueryRequestHandler(): void {
    Beans.get(MessageClient).observe$(Topics.Capabilities)
      .pipe(
        mergeMap((request: TopicMessage) => {
          const manifestRegistry = Beans.get(ManifestRegistry);
          const replyTo = request.headers.get(MessageHeaders.ReplyTo);
          const appSymbolicName = request.headers.get(MessageHeaders.AppSymbolicName);

          return merge(of(null), manifestRegistry.capabilityChange$)
            .pipe(
              map(() => manifestRegistry.getCapabilitiesByApplication(appSymbolicName)),
              switchMap(capabilities => Beans.get(MessageClient).publish$(replyTo, capabilities)),
              takeUntilUnsubscribe(replyTo),
            );
        }),
        takeUntil(this._destroy$),
      )
      .subscribe();