@ama-mfe/ng-utils 14.0.0-next.8 → 14.0.0-next.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"ama-mfe-ng-utils.mjs","sources":["../../src/connect/connect-directive.ts","../../src/messages/available-sender.ts","../../src/messages/error-sender.ts","../../src/managers/producer-manager-service.ts","../../src/managers/consumer-manager-service.ts","../../src/managers/utils.ts","../../src/history/history-consumer-service.ts","../../src/history/history-providers.ts","../../src/host-info/host-info.ts","../../src/host-info/host-info-pipe.ts","../../src/messages/error/base.ts","../../src/utils.ts","../../src/connect/connect-providers.ts","../../src/navigation/navigation-consumer-service.ts","../../src/navigation/route-memorize/route-memorize-service.ts","../../src/navigation/restore-route-pipe.ts","../../src/navigation/route-memorize/route-memorize-directive.ts","../../src/navigation/routing-service.ts","../../src/resize/resize-consumer-service.ts","../../src/resize/resize-producer-service.ts","../../src/resize/scalable-directive.ts","../../src/theme/theme-helpers.ts","../../src/theme/theme-producer-service.ts","../../src/theme/apply-theme-pipe.ts","../../src/theme/theme-consumer-service.ts","../../src/ama-mfe-ng-utils.ts"],"sourcesContent":["import {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n computed,\n Directive,\n effect,\n ElementRef,\n HostBinding,\n inject,\n input,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n LoggerService,\n} from '@o3r/logger';\n\n@Directive({\n selector: 'iframe[connect]',\n standalone: true\n})\nexport class ConnectDirective {\n /**\n * The connection ID required for the message peer service.\n */\n public connect = input.required<string>();\n\n /**\n * The sanitized source URL for the iframe.\n */\n public src = input<SafeResourceUrl>();\n\n /**\n * Binds the `src` attribute of the iframe to the sanitized source URL.\n */\n @HostBinding('src')\n public get srcAttr() {\n return this.src();\n }\n\n private readonly messageService = inject(MessagePeerService);\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly iframeElement = inject<ElementRef<HTMLIFrameElement>>(ElementRef).nativeElement;\n\n private readonly clientOrigin = computed(() => {\n const src = this.src();\n const srcString = src && this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, src);\n return srcString && new URL(srcString).origin;\n });\n\n constructor() {\n const logger = inject(LoggerService);\n\n // When the origin or connection ID change - reconnect the message service\n effect((onCleanup) => {\n let stopHandshakeListening = () => { /* no op */ };\n\n const origin = this.clientOrigin();\n const id = this.connect();\n const source = this.iframeElement.contentWindow;\n\n // listen for handshakes only if we know the origin and were given a connection ID\n if (origin && source && id) {\n try {\n stopHandshakeListening = this.messageService.listen({ id, source, origin });\n } catch (e) {\n logger.error(`Failed to start listening for (connection ID: ${id})`, e);\n }\n }\n\n // stop listening for handshakes and disconnect previous connection when:\n // - origin/connection ID change\n // - the directive is destroyed\n onCleanup(() => {\n stopHandshakeListening();\n this.messageService.disconnect();\n });\n });\n }\n}\n","import type {\n DeclareMessages,\n} from '@amadeus-it-group/microfrontends';\nimport type {\n BasicMessageConsumer,\n} from '../managers/interfaces';\n\n/**\n * Gets the available consumers and formats them into a {@link DeclareMessages} object.\n * @param consumers - The list of registered message consumers.\n * @returns The formatted DeclareMessages object.\n */\nexport const getAvailableConsumers = (consumers: BasicMessageConsumer[]) => {\n return {\n type: 'declare_messages',\n version: '1.0',\n messages: consumers.flatMap(({ type, supportedVersions }) => Object.keys(supportedVersions).map((version) => ({ type, version })))\n } satisfies DeclareMessages;\n};\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport type {\n MessagePeerServiceType,\n} from '@amadeus-it-group/microfrontends-angular';\nimport type {\n ERROR_MESSAGE_TYPE,\n ErrorContent,\n ErrorMessageV1_0,\n} from './error/index';\n\n/**\n * Helper function to send an error message by the given endpoint (peer)\n * @param peer The endpoint sending the message\n * @param content the content of the error message to be sent\n */\nexport const sendError = (peer: MessagePeerServiceType<any>, content: ErrorContent) => {\n return peer.send({\n type: 'error',\n version: '1.0',\n ...content\n } satisfies ErrorMessageV1_0);\n};\n\n/**\n * Check if the given message is of type error and the error reson is present too\n * @param message the message to be checked\n */\n// eslint-disable-next-line @stylistic/max-len -- constant definition\nexport const isErrorMessage = (message: any): message is VersionedMessage & { type: typeof ERROR_MESSAGE_TYPE } & ErrorContent => (message && typeof message === 'object' && message.type === 'error' && !!message.reason);\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n Injectable,\n} from '@angular/core';\nimport type {\n ErrorContent,\n} from '../messages/index';\nimport type {\n MessageProducer,\n} from './interfaces';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ProducerManagerService {\n private readonly registeredProducers = new Set<MessageProducer>();\n\n /** Get the list of registered producers of messages. The list will contain unique elements */\n public get producers() {\n return [...this.registeredProducers];\n }\n\n /**\n * Register a producer of a message\n * @param producer The instance of the message producer\n */\n public register(producer: MessageProducer) {\n this.registeredProducers.add((producer));\n }\n\n /**\n * Unregister a producer of a message\n * @param producer The instance of the message producer\n */\n public unregister(producer: MessageProducer) {\n this.registeredProducers.delete((producer));\n }\n\n /**\n * Handles the received error message for the given message type by invoking the appropriate producer handlers.\n * @template T - The type of the message, extending from Message.\n * @param message - The error message to handle.\n * @returns - A promise that resolves to true if the error was handled by at least one handler, false otherwise.\n */\n public async dispatchError<T extends VersionedMessage = VersionedMessage>(message: ErrorContent<T>) {\n const handlers = this.producers\n .filter(({ types }) => (Array.isArray(types) ? types : [types]).includes(message.source.type));\n\n const handlersPresent = handlers.length > 0;\n if (handlersPresent) {\n await Promise.all(\n // eslint-disable-next-line @typescript-eslint/await-thenable -- `handleError` can return void or Promise<void>\n handlers.map((handler) => handler.handleError(message))\n );\n }\n return handlersPresent;\n }\n}\n","import {\n RoutedMessage,\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n effect,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n getAvailableConsumers,\n} from '../messages/available-sender';\nimport {\n isErrorMessage,\n sendError,\n} from '../messages/error-sender';\nimport type {\n BasicMessageConsumer,\n} from './interfaces';\nimport {\n ProducerManagerService,\n} from './producer-manager-service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsumerManagerService {\n private readonly messageService = inject(MessagePeerService);\n private readonly producerManagerService = inject(ProducerManagerService);\n private readonly registeredConsumers = signal<BasicMessageConsumer[]>([]);\n private readonly logger = inject(LoggerService);\n\n /** The list of registered consumers */\n public readonly consumers = this.registeredConsumers.asReadonly();\n\n constructor() {\n this.messageService.messages$.pipe(takeUntilDestroyed()).subscribe((message) => this.consumeMessage(message));\n\n // Each time a consumer is registered/unregistered update the list of registered messages\n effect(() => {\n const declareMessages = getAvailableConsumers(this.consumers());\n\n // registering consumed messages locally for validation\n for (const message of declareMessages.messages) {\n this.messageService.registerMessage(message);\n }\n });\n }\n\n /**\n * Consume a received message\n * @param message the received message body\n */\n private async consumeMessage(message: RoutedMessage<VersionedMessage>) {\n if (isErrorMessage(message.payload)) {\n const isHandled = await this.producerManagerService.dispatchError(message.payload);\n if (!isHandled) {\n this.logger.warn('Error message not handled', message);\n }\n return;\n }\n\n return this.consumeAdditionalMessage(message);\n }\n\n /**\n * Call the registered message callback(s) to consume the given message\n * Handle error messages of internal communication protocol messages\n * @param message message to consume\n */\n private async consumeAdditionalMessage(message: RoutedMessage<VersionedMessage>) {\n if (!message.payload) {\n this.logger.warn('Cannot consume a messages with undefined payload.');\n return;\n }\n\n const consumers = this.consumers();\n const typeMatchingConsumers = consumers\n .filter((consumer) => consumer.type === message.payload.type);\n\n if (typeMatchingConsumers.length === 0) {\n this.logger.warn(`No consumer found for message type: ${message.payload.type}`);\n return sendError(this.messageService, { reason: 'unknown_type', source: message.payload });\n }\n\n const versionMatchingConsumers = typeMatchingConsumers\n .filter((consumer) => consumer.supportedVersions[message.payload.version])\n .flat();\n\n if (versionMatchingConsumers.length === 0) {\n this.logger.warn(`No consumer found for message version: ${message.payload.version}`);\n return sendError(this.messageService, { reason: 'version_mismatch', source: message.payload });\n }\n\n await Promise.all(\n versionMatchingConsumers\n .map(async (consumer) => {\n try {\n await consumer.supportedVersions[message.payload.version](message);\n } catch (error) {\n this.logger.error('Error while consuming message', error);\n sendError(this.messageService, { reason: 'internal_error', source: message.payload });\n }\n })\n );\n }\n\n /**\n * Register a message consumer\n * @param consumer an instance of message consumer\n */\n public register(consumer: BasicMessageConsumer) {\n this.registeredConsumers.update((consumers) => {\n return [...new Set(consumers).add(consumer)];\n });\n }\n\n /**\n * Unregister a message consumer\n * @param consumer an instance of message consumer\n */\n public unregister(consumer: BasicMessageConsumer) {\n this.registeredConsumers.update((consumers) => {\n return consumers.filter((c) => c !== consumer);\n });\n }\n}\n","import {\n DestroyRef,\n inject,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n} from './consumer-manager-service';\nimport type {\n MessageConsumer,\n MessageProducer,\n} from './interfaces';\nimport {\n ProducerManagerService,\n} from './producer-manager-service';\n\n/**\n * Method to call in the constructor of a producer\n * @note should be used in injection context\n * @param producer\n */\nexport const registerProducer = (producer: MessageProducer) => {\n const producerManagerService = inject(ProducerManagerService);\n producerManagerService.register(producer);\n\n inject(DestroyRef).onDestroy(() => {\n producerManagerService.unregister(producer);\n });\n};\n\n/**\n * Method to call in the constructor of a consumer\n * @note should be used in injection context\n * @param consumer\n */\nexport const registerConsumer = (consumer: MessageConsumer) => {\n const consumerManagerService = inject(ConsumerManagerService);\n consumerManagerService.register(consumer);\n\n inject(DestroyRef).onDestroy(() => {\n consumerManagerService.unregister(consumer);\n });\n};\n","import type {\n HistoryMessage,\n HistoryV1_0,\n} from '@ama-mfe/messages';\nimport {\n HISTORY_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n type MessageConsumer,\n} from '../managers/index';\n\n/**\n * A service that handles history messages.\n *\n * This service listens for history messages and navigates accordingly.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class HistoryConsumerService implements MessageConsumer<HistoryMessage> {\n /**\n * The type of messages this service handles.\n */\n public readonly type = HISTORY_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly supportedVersions = {\n /**\n * Use the message payload to navigate in the history\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<HistoryV1_0>) => {\n history.go(message.payload.delta);\n }\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * @inheritdoc\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * @inheritdoc\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import {\n HistoryMessage,\n HistoryV1_0,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n inject,\n provideAppInitializer,\n} from '@angular/core';\n\n/**\n * Provides necessary overrides to make the module navigation in history work in an embedded context :\n * - Prevent pushing states to history, replace state instead\n * - Handle history navigation via History messages to let the host manage the states\n */\nexport function provideHistoryOverrides() {\n return provideAppInitializer(() => {\n const messageService = inject(MessagePeerService<HistoryMessage>);\n const navigate = (delta: number) => {\n messageService.send({\n type: 'history',\n version: '1.0',\n delta\n } satisfies HistoryV1_0);\n };\n Object.defineProperty(history, 'pushState', {\n value: (data: any, unused: string, url?: string | URL | null) => {\n history.replaceState(data, unused, url);\n },\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'back', {\n value: () => navigate(-1),\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'forward', {\n value: () => navigate(1),\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'go', {\n value: (delta: number) => navigate(delta),\n writable: false,\n configurable: false\n });\n });\n}\n","const SESSION_STORAGE_KEY = 'ama-mfe-host-info';\n\n/**\n * Search parameter to add to the URL when embedding an iframe containing the URL of the host.\n * This is needed to support Firefox (on which {@link https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins | location.ancestorOrigins} is not currently supported)\n * in case of redirection inside the iframe.\n */\nexport const MFE_HOST_URL_PARAM = 'ama-mfe-host-url';\n\n/**\n * Search parameter to add to the URL to let a module know on which application it's embedded\n */\nexport const MFE_HOST_APPLICATION_ID_PARAM = 'ama-mfe-host-app-id';\n\n/**\n * Search parameter to add to the URL to identify the application in the network of peers in the communication protocol\n */\nexport const MFE_MODULE_APPLICATION_ID_PARAM = 'ama-mfe-module-app-id';\n\n/** The list of query parameters which can be set by the host */\nexport const hostQueryParams = [MFE_HOST_URL_PARAM, MFE_HOST_APPLICATION_ID_PARAM, MFE_MODULE_APPLICATION_ID_PARAM];\n\n/**\n * Information set up at host level to use in embedded context\n */\nexport interface MFEHostInformation {\n /**\n * URL of the host application\n */\n hostURL?: string;\n /**\n * ID of the host application\n */\n hostApplicationId?: string;\n\n /**\n * ID of the module to embed defined at host level\n */\n moduleApplicationId?: string;\n}\n\n/**\n * Gather the host information from the url parameters\n * The host url will use the first found among:\n * - look for the search parameter {@link MFE_HOST_URL_PARAM} in the URL of the iframe\n * - use the first item in `location.ancestorOrigins` (currently not supported on Firefox)\n * - use `document.referrer` (will only work if called before any redirection in the iframe)\n * The host application ID is taken from the search parameter {@link MFE_HOST_APPLICATION_ID_PARAM} in the URL of the iframe\n * The module application ID is taken from the search parameter {@link MFE_APPLICATION_ID_PARAM} in the URL of the iframe\n * @param locationParam - A {@link Location} object with information about the current location of the document. Defaults to global {@link location}.\n */\nexport function getHostInfo(locationParam: Location = location): MFEHostInformation {\n const searchParams = new URLSearchParams(locationParam.search);\n const storedHostInfo = JSON.parse(sessionStorage.getItem(SESSION_STORAGE_KEY) || '{}') as MFEHostInformation;\n return {\n hostURL: searchParams.get(MFE_HOST_URL_PARAM) || storedHostInfo.hostURL || locationParam.ancestorOrigins?.[0] || document.referrer,\n hostApplicationId: searchParams.get(MFE_HOST_APPLICATION_ID_PARAM) || storedHostInfo.hostApplicationId,\n moduleApplicationId: searchParams.get(MFE_MODULE_APPLICATION_ID_PARAM) || storedHostInfo.moduleApplicationId\n };\n}\n\n/**\n * Gather the host information from the url parameters and handle the persistence in session storage.\n */\nexport function persistHostInfo() {\n const hostInfo = getHostInfo();\n sessionStorage.setItem(SESSION_STORAGE_KEY, JSON.stringify(hostInfo));\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n MFE_HOST_APPLICATION_ID_PARAM,\n MFE_HOST_URL_PARAM,\n MFE_MODULE_APPLICATION_ID_PARAM,\n} from './host-info';\n\n/**\n * A pipe that adds the host information in the URL of an iframe,\n */\n@Pipe({\n name: 'hostInfo'\n})\nexport class HostInfoPipe implements PipeTransform {\n private readonly domSanitizer = inject(DomSanitizer);\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending query parameters.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @param options - hostId and moduleId\n * @returns - The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string, options: { hostId: string; moduleId?: string }): string;\n public transform(url: SafeResourceUrl, options: { hostId: string; moduleId?: string }): SafeResourceUrl;\n public transform(url: undefined, options: { hostId: string; moduleId?: string }): undefined;\n public transform(url: string | SafeResourceUrl | undefined, options: { hostId: string; moduleId?: string }): string | SafeResourceUrl | undefined {\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url || null);\n\n if (!url) {\n return undefined;\n }\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n moduleUrl.searchParams.set(MFE_HOST_URL_PARAM, window.location.origin);\n moduleUrl.searchParams.set(MFE_HOST_APPLICATION_ID_PARAM, options.hostId);\n if (options.moduleId) {\n moduleUrl.searchParams.set(MFE_MODULE_APPLICATION_ID_PARAM, options.moduleId);\n }\n\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n }\n}\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\n\n/** the error message type */\nexport const ERROR_MESSAGE_TYPE = 'error';\n\n/**\n * The possible reasons for an error.\n */\nexport type ErrorReason = 'unknown_type' | 'version_mismatch' | 'internal_error';\n\n/**\n * The content of an error message.\n * @template S - The type of the source message.\n */\nexport interface ErrorContent<S extends VersionedMessage = VersionedMessage> {\n /** The reason for the error */\n reason: ErrorReason;\n /** The source message that caused the error */\n source: S;\n}\n","import type {\n Message,\n PeerConnectionOptions,\n} from '@amadeus-it-group/microfrontends';\nimport {\n getHostInfo,\n} from './host-info';\nimport {\n ERROR_MESSAGE_TYPE,\n} from './messages';\n\n/**\n * A constant array of known message types and their versions.\n */\nexport const KNOWN_MESSAGES = [\n {\n type: ERROR_MESSAGE_TYPE,\n version: '1.0'\n }\n] as const satisfies Message[];\n\n/**\n * Returns the default options for starting a client endpoint peer connection.\n * As `origin`, it will take the hostURL from {@link getHostInfo} and the `window` will be the parent window.\n */\nexport function getDefaultClientEndpointStartOptions(): PeerConnectionOptions {\n const hostInfo = getHostInfo();\n if (hostInfo.hostURL) {\n return {\n origin: new URL(hostInfo.hostURL).origin,\n window: window.parent\n };\n }\n return {};\n}\n\n/**\n * Return `true` if embedded inside an iframe, `false` otherwise\n * @param windowParam - A {@link window} object with information about the current window of the document. Defaults to global {@link window}.\n */\nexport function isEmbedded(windowParam: Window = window) {\n return windowParam.top !== windowParam.self;\n}\n","import {\n MESSAGE_PEER_CONFIG,\n MESSAGE_PEER_CONNECT_OPTIONS,\n MessagePeerConfig,\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n makeEnvironmentProviders,\n} from '@angular/core';\nimport {\n type Logger,\n} from '@o3r/logger';\nimport {\n provideHistoryOverrides,\n} from '../history';\nimport {\n getHostInfo,\n persistHostInfo,\n} from '../host-info';\nimport {\n getDefaultClientEndpointStartOptions,\n isEmbedded,\n KNOWN_MESSAGES,\n} from '../utils';\nimport {\n ConnectionConfig,\n ConnectionService,\n} from './connect-resources';\n\n/** Options to configure the connection inside the communication protocol */\nexport interface ConnectionConfigOptions extends Omit<ConnectionConfig, 'id'> {\n /** @inheritdoc */\n id?: string;\n /** Logger used to gather information */\n logger?: Logger;\n}\n\n/**\n * Provide the communication protocol connection configuration\n * @param connectionConfigOptions The identifier of the application in the communication protocol ecosystem plus the types of messages able to exchange and a logger object\n */\nexport function provideConnection(connectionConfigOptions?: ConnectionConfigOptions) {\n persistHostInfo();\n const connectionId = (isEmbedded() && getHostInfo().moduleApplicationId) || connectionConfigOptions?.id;\n if (!connectionId) {\n (connectionConfigOptions?.logger || console).error('An id (moduleId) needs to be provided for the application in order to establish a connection inside the communication protocol');\n return makeEnvironmentProviders([]);\n }\n const config: MessagePeerConfig = {\n id: connectionId,\n messageCheckStrategy: 'version',\n knownMessages: [...KNOWN_MESSAGES, ...(connectionConfigOptions?.knownMessages || [])]\n };\n return makeEnvironmentProviders([\n {\n provide: MESSAGE_PEER_CONFIG, useValue: config\n },\n {\n provide: MESSAGE_PEER_CONNECT_OPTIONS, useValue: getDefaultClientEndpointStartOptions()\n },\n {\n // in the case of the ConnectionService will extend the base service 'useExisting' should be used\n provide: MessagePeerService, useClass: ConnectionService, deps: [MESSAGE_PEER_CONFIG]\n },\n ...isEmbedded() ? [provideHistoryOverrides()] : []\n ]);\n}\n","import {\n NAVIGATION_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n NavigationMessage,\n NavigationV1_0,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n ActivatedRoute,\n Router,\n} from '@angular/router';\nimport {\n Subject,\n} from 'rxjs';\nimport {\n hostQueryParams,\n} from '../host-info';\nimport {\n ConsumerManagerService,\n type MessageConsumer,\n} from '../managers/index';\n\n/**\n * A service that handles navigation messages and routing.\n *\n * This service listens for navigation messages and updates the router state accordingly.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class NavigationConsumerService implements MessageConsumer<NavigationMessage> {\n private readonly router = inject(Router);\n private readonly activeRoute = inject(ActivatedRoute);\n private readonly requestedUrl = new Subject<{ url: string; channelId?: string }>();\n\n /**\n * An observable that emits the requested URL and optional channel ID.\n */\n public readonly requestedUrl$ = this.requestedUrl.asObservable();\n\n /**\n * The type of messages this service handles.\n */\n public readonly type = NAVIGATION_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly supportedVersions = {\n /**\n * Use the message paylod to compute a new url and emit it via the public subject\n * Additionally navigate to the new url\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<NavigationV1_0>) => {\n const channelId = message.from || undefined;\n this.requestedUrl.next({ url: message.payload.url, channelId });\n this.navigate(message.payload.url);\n }\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Parses a URL and returns an object containing the paths and query parameters.\n * @param url - The URL to parse.\n * @returns An object containing the paths and query parameters.\n */\n private parseUrl(url: string): { paths: string[]; queryParams: { [key: string]: string } } {\n const urlObject = new URL(window.origin + url);\n const paths = urlObject.pathname.split('/').filter((segment) => !!segment);\n const queryParams = Object.fromEntries(urlObject.searchParams.entries());\n return { paths, queryParams };\n }\n\n /**\n * Navigates to the specified URL.\n * @param url - The URL to navigate to.\n */\n private navigate(url: string) {\n const { paths, queryParams } = this.parseUrl(url);\n // No need to keep these in the URL\n hostQueryParams.forEach((key) => delete queryParams[key]);\n void this.router.navigate(paths, { relativeTo: this.activeRoute.children.at(-1), queryParams });\n }\n\n /**\n * @inheritdoc\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * @inheritdoc\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import {\n Injectable,\n} from '@angular/core';\n\n/**\n * This service allows routes to be memorized with an optional lifetime and provides methods to retrieve and manage these routes.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class RouteMemorizeService {\n private readonly routeTimers: { [x: string]: ReturnType<typeof setTimeout> } = {};\n /** All memorized routes */\n public readonly routeStack: { [x: string]: string } = {};\n\n /**\n * Memorizes a route for a given channel ID with an optional lifetime.\n * @param channelId - The ID of the channel to memorize the route for.\n * @param url - The URL of the route to memorize.\n * @param liveTime - The optional lifetime of the memorized route in milliseconds. If provided, the route will be removed after this time.\n */\n public memorizeRoute(channelId: string, url: string, liveTime?: number): void {\n this.routeStack[channelId] = url;\n\n const timerRef = this.routeTimers[channelId];\n if (timerRef) {\n clearTimeout(timerRef);\n }\n if (liveTime && liveTime > 0) {\n this.routeTimers[channelId] = setTimeout(() => {\n delete this.routeStack[channelId];\n delete this.routeTimers[channelId];\n }, liveTime);\n }\n }\n\n /**\n * Retrieves the memorized route for a given channel ID.\n * @param channelId - The ID of the channel to retrieve the memorized route for.\n * @returns The memorized route URL or undefined if no route is memorized for the given channel ID.\n */\n public getRoute(channelId: string): string | undefined {\n return this.routeStack[channelId];\n }\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n ActivatedRoute,\n} from '@angular/router';\nimport {\n RouteMemorizeService,\n} from './route-memorize/route-memorize-service';\n\n/**\n * Options for restoring a route with optional query parameters and memory channel ID.\n */\nexport interface RestoreRouteOptions {\n /**\n * Whether to propagate query parameters from the top window to the module URL.\n */\n propagateQueryParams?: boolean;\n\n /**\n * Whether to override existing query parameters in the module URL with those from the top window.\n */\n overrideQueryParams?: boolean;\n\n /**\n * The memory channel ID used to retrieve the memorized route.\n * If provided, the memorized route associated with this ID will be used.\n */\n memoryChannelId?: string;\n}\n\n/**\n * A pipe that restores a route with optional query parameters and memory channel ID.\n *\n * This pipe is used to transform a URL or SafeResourceUrl by appending query parameters\n * and adjusting the pathname based on the current active route and memorized route.\n */\n@Pipe({\n name: 'restoreRoute'\n})\nexport class RestoreRoute implements PipeTransform {\n private readonly activeRoute = inject(ActivatedRoute);\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly routeMemorizeService = inject(RouteMemorizeService, { optional: true });\n private readonly window = inject(Window, { optional: true }) || window;\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending query parameters and adjusting the pathname.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @param options - Optional parameters to control the transformation. {@link RestoreRouteOptions}\n * @returns - The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string, options?: Partial<RestoreRouteOptions>): string;\n public transform(url: SafeResourceUrl, options?: Partial<RestoreRouteOptions>): SafeResourceUrl;\n public transform(url: undefined, options?: Partial<RestoreRouteOptions>): undefined;\n public transform(url: string | SafeResourceUrl | undefined, options?: Partial<RestoreRouteOptions>): string | SafeResourceUrl | undefined {\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url || null);\n\n if (!url) {\n return undefined;\n }\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n const queryParamsModule = new URLSearchParams(moduleUrl.searchParams);\n\n const channelId = options?.memoryChannelId;\n const memorizedRoute = channelId && this.routeMemorizeService?.getRoute(channelId);\n const topWindowUrl = new URL(memorizedRoute ? this.window.origin + memorizedRoute : this.window.location.href);\n const queryParamsTopWindow = new URLSearchParams(topWindowUrl.search);\n\n if (options?.propagateQueryParams) {\n for (const [key, value] of queryParamsTopWindow) {\n if (options?.overrideQueryParams || !queryParamsModule.has(key)) {\n queryParamsModule.set(key, value);\n }\n }\n }\n moduleUrl.search = queryParamsModule.toString();\n moduleUrl.pathname += topWindowUrl.pathname.split(`/${this.activeRoute.routeConfig?.path}`).pop() || '';\n moduleUrl.pathname = moduleUrl.pathname.replace(/\\/{2,}/g, '/');\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n }\n}\n","import {\n computed,\n Directive,\n effect,\n inject,\n input,\n untracked,\n} from '@angular/core';\nimport {\n toSignal,\n} from '@angular/core/rxjs-interop';\nimport {\n NavigationConsumerService,\n} from '../navigation-consumer-service';\nimport {\n RouteMemorizeService,\n} from './route-memorize-service';\n\n@Directive({\n selector: 'iframe[memorizeRoute]',\n standalone: true\n})\nexport class RouteMemorizeDirective {\n /**\n * Whether to memorize the route.\n * Default is true.\n */\n public memorizeRoute = input<boolean | undefined | ''>(true);\n\n /**\n * The ID used to memorize the route.\n */\n public memorizeRouteId = input<string>();\n\n /**\n * The maximum age for memorizing the route.\n * Default is 0.\n */\n public memorizeMaxAge = input<number>(0);\n\n /**\n * The maximum age for memorizing the route, used as a fallback.\n * Default is 0.\n */\n public memorizeRouteMaxAge = input<number>(0);\n\n /**\n * The connection ID for the iframe where the actual directive is applied.\n */\n public connect = input<string>();\n\n private readonly maxAge = computed(() => {\n return this.memorizeMaxAge() || this.memorizeRouteMaxAge();\n });\n\n constructor() {\n const memory = inject(RouteMemorizeService);\n const requestedUrlSignal = toSignal(inject(NavigationConsumerService).requestedUrl$);\n\n /**\n * This effect listens for changes in the `memorizeRoute`, `requestedUrlSignal`, and `memorizeRouteId` or `connect` inputs.\n * If `memorizeRoute` is not false and a requested URL with a matching channel ID is found, it memorizes the route using the route memory service.\n */\n effect(() => {\n const memorizeRoute = this.memorizeRoute();\n if (memorizeRoute === false) {\n return;\n }\n const requested = requestedUrlSignal();\n const channelId = this.connect();\n const id = this.memorizeRouteId() || channelId;\n if (requested && id && requested.channelId === channelId) {\n memory.memorizeRoute(id, requested.url, untracked(this.maxAge));\n }\n });\n }\n}\n","import type {\n NavigationMessage,\n NavigationV1_0,\n} from '@ama-mfe/messages';\nimport {\n NAVIGATION_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n ActivatedRoute,\n NavigationEnd,\n Router,\n} from '@angular/router';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n filter,\n map,\n} from 'rxjs';\nimport {\n type MessageConsumer,\n type MessageProducer,\n registerConsumer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/error';\nimport {\n isEmbedded,\n} from '../utils';\n\n/** Options for the routing handling in case of navigation producer message */\nexport interface RoutingServiceOptions {\n /**\n * Whether to handle only sub-routes.\n * If true, the routing service will handle only sub-routes.\n * Default is false.\n */\n subRouteOnly?: boolean;\n}\n\n/**\n * A service that keeps in sync Router navigation and navigation messages.\n *\n * - listens to Router events and sends navigation messages\n * - handles incoming navigation messages and triggers Router navigation\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class RoutingService implements MessageProducer<NavigationMessage>, MessageConsumer<NavigationMessage> {\n private readonly router = inject(Router);\n private readonly activatedRoute = inject(ActivatedRoute);\n private readonly messageService = inject(MessagePeerService<NavigationMessage>);\n private readonly logger = inject(LoggerService);\n private readonly window = inject(Window, { optional: true }) || window;\n\n /**\n * @inheritdoc\n */\n public readonly types = NAVIGATION_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly type = 'navigation';\n\n /**\n * Use the message payload to navigate to the specified URL.\n * @param message message to consume\n */\n public readonly supportedVersions = {\n '1.0': async (message: RoutedMessage<any>) => {\n await this.router.navigateByUrl(message.payload.url);\n }\n };\n\n constructor() {\n registerProducer(this);\n registerConsumer(this);\n }\n\n /**\n * @inheritdoc\n */\n public start(): void {}\n\n /**\n * @inheritdoc\n */\n public stop(): void {}\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<NavigationV1_0>): void {\n this.logger.error('Error in navigation service message', message);\n }\n\n /**\n * Handles embedded routing by listening to router events and sending navigation messages to the connected endpoints.\n * It can be a parent window or another iframe\n * @note - This method has to be called in an injection context\n * @param options - Optional parameters to control the routing behavior {@link RoutingServiceOptions}.\n */\n public handleEmbeddedRouting(options?: RoutingServiceOptions): void {\n const subRouteOnly = options?.subRouteOnly ?? false;\n this.router.events.pipe(\n takeUntilDestroyed(),\n filter((event): event is NavigationEnd => event instanceof NavigationEnd),\n filter((_event) => !this.router.getCurrentNavigation()?.extras?.skipLocationChange),\n map(({ urlAfterRedirects }) => {\n const channelId = this.router.getCurrentNavigation()?.extras?.state?.channelId;\n const currentRouteRegExp = subRouteOnly && this.activatedRoute.routeConfig?.path && new RegExp('^' + this.activatedRoute.routeConfig.path.replace(/(?=\\W)/g, '\\\\'), 'i');\n return ({ url: currentRouteRegExp ? urlAfterRedirects.replace(currentRouteRegExp, '') : urlAfterRedirects, channelId });\n })\n ).subscribe(({ url, channelId }) => {\n const messageV10 = {\n type: 'navigation',\n version: '1.0',\n url\n } satisfies NavigationV1_0;\n // TODO: sendBest() is not implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n if (isEmbedded(this.window)) {\n this.messageService.send(messageV10);\n } else {\n if (channelId === undefined) {\n this.logger.warn('No channelId provided for navigation message');\n } else {\n try {\n this.messageService.send(messageV10, { to: [channelId] });\n } catch (error) {\n this.logger.error('Error sending navigation message', error);\n }\n }\n }\n });\n }\n}\n","import type {\n ResizeMessage,\n ResizeV1_0,\n} from '@ama-mfe/messages';\nimport {\n RESIZE_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n MessageConsumer,\n} from '../managers/index';\n\n/**\n * This service listens for resize messages and updates the height of elements based on the received messages.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ResizeConsumerService implements MessageConsumer<ResizeMessage> {\n private readonly newHeight = signal<{ height: number; channelId: string } | undefined>(undefined);\n\n /**\n * A readonly signal that provides the new height information from the channel.\n */\n public readonly newHeightFromChannel = this.newHeight.asReadonly();\n\n /**\n * The type of messages this service handles ('resize').\n */\n public readonly type = RESIZE_MESSAGE_TYPE;\n\n /**\n * The supported versions of resize messages and their handlers.\n */\n public supportedVersions = {\n /**\n * Use the message paylod to compute a new height and emit it via the public signal\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<ResizeV1_0>) => this.newHeight.set({ height: message.payload.height, channelId: message.from })\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Starts the resize handler service by registering it into the consumer manager service.\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * Stops the resize handler service by unregistering it from the consumer manager service.\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import type {\n ResizeMessage,\n ResizeV1_0,\n} from '@ama-mfe/messages';\nimport {\n RESIZE_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n afterNextRender,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n type MessageProducer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/index';\n\n/**\n * This service observe changes in the document's body height.\n * When the height changes, it sends a resize message with the new height, to the connected peers\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ResizeService implements MessageProducer<ResizeMessage> {\n private actualHeight?: number;\n private readonly messageService = inject(MessagePeerService<ResizeMessage>);\n private resizeObserver?: ResizeObserver;\n\n /**\n * @inheritdoc\n */\n public readonly types = RESIZE_MESSAGE_TYPE;\n\n constructor() {\n registerProducer(this);\n }\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<ResizeMessage>): void {\n // eslint-disable-next-line no-console -- error handling placeholder\n console.error('Error in resize service message', message);\n }\n\n /**\n * This method sets up a `ResizeObserver` to observe changes in the document's body height.\n * When the height changes, it sends a resize message with the new height, to the connected peers\n */\n public startResizeObserver() {\n this.resizeObserver = new ResizeObserver(() => {\n const newHeight = document.body.getBoundingClientRect().height;\n if (!this.actualHeight || newHeight !== this.actualHeight) {\n this.actualHeight = newHeight;\n const messageV10 = {\n type: 'resize',\n version: '1.0',\n height: this.actualHeight\n } satisfies ResizeV1_0;\n // TODO: sendBest() is not implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n this.messageService.send(messageV10);\n }\n });\n\n afterNextRender(() => this.resizeObserver?.observe(document.body));\n }\n}\n","import {\n computed,\n Directive,\n effect,\n ElementRef,\n inject,\n input,\n Renderer2,\n} from '@angular/core';\nimport {\n ResizeConsumerService,\n} from './resize-consumer-service';\n\n/**\n * A directive that adjusts the height of an element based on resize messages from a specified channel.\n */\n@Directive({\n selector: '[scalable]',\n standalone: true\n})\nexport class ScalableDirective {\n /**\n * The connection ID for the element, used as channel id backup\n */\n public connect = input<string>();\n\n /**\n * The channel id\n */\n public scalable = input<string>();\n\n private readonly resizeHandler = inject(ResizeConsumerService);\n\n /**\n * This signal checks if the current channel requesting the resize matches the channel ID from the resize handler.\n * If they match, it returns the new height information; otherwise, it returns undefined.\n */\n private readonly newHeightFromChannel = computed(() => {\n const channelAskingResize = this.scalable() || this.connect();\n const newHeightFromChannel = this.resizeHandler.newHeightFromChannel();\n if (channelAskingResize && newHeightFromChannel?.channelId === channelAskingResize) {\n return newHeightFromChannel;\n }\n return undefined;\n });\n\n constructor() {\n const elem = inject(ElementRef);\n const renderer = inject(Renderer2);\n\n this.resizeHandler.start();\n\n /** When a new height value is received set the height of the host element (in pixels) */\n effect(() => {\n const newHeightFromChannel = this.newHeightFromChannel();\n if (newHeightFromChannel) {\n renderer.setStyle(elem.nativeElement, 'height', `${newHeightFromChannel.height}px`);\n }\n });\n }\n}\n","import {\n type Logger,\n} from '@o3r/logger';\nimport {\n getHostInfo,\n} from '../host-info';\n\n/** Default suffix for an url containing a theme css file */\nexport const THEME_URL_SUFFIX = '-theme.css';\n/** Default name for the query parameter containing the theme name */\nexport const THEME_QUERY_PARAM_NAME = 'theme';\n\n/** Options and context for Style helpers */\nexport interface StyleHelperOptions {\n /**\n * Logger to reporter the logs\n */\n logger?: Logger;\n}\n\n/**\n * Fetches a CSS document and returns the content as a string.\n * @param cssPath - The path to download the CSS.\n * @param options Options and context for Style helpers\n * @returns The content of the CSS document as a string, empty string if the fetch fails.\n */\nexport async function getStyle(cssPath: string, options?: StyleHelperOptions): Promise<string> {\n try {\n const myRequest = new Request(cssPath);\n const response = await fetch(myRequest);\n const cssText = response.ok ? await response.text() : '';\n return cssText;\n } catch (error) {\n options?.logger?.warn(`Failed to download style from: ${cssPath} with error: ${error?.toString()}`);\n }\n return '';\n}\n\n/**\n * Applies the given CSS theme as a stylesheet.\n * @param themeValue - CSS as text containing a theme definition.\n * @param cleanPrevious - Whether to remove previously applied stylesheets if no themeValue provided. Default is true.\n */\nexport function applyTheme(themeValue?: string, cleanPrevious = true): void {\n if (themeValue !== undefined) {\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(themeValue);\n document.adoptedStyleSheets = cleanPrevious ? [sheet] : [...document.adoptedStyleSheets, sheet];\n } else if (cleanPrevious) { // remove the styles if the theme value comes undefined or empty string\n document.adoptedStyleSheets = [];\n }\n}\n\n/**\n * Download the application additional theme\n * @param theme Name of the theme to download from the current application\n * @param options Options and context for Style helpers\n */\nexport function downloadApplicationThemeCss(theme: string, options?: StyleHelperOptions) {\n const cssHref = `${theme.endsWith('.css') ? theme : theme + THEME_URL_SUFFIX}`;\n return getStyle(cssHref, options);\n}\n\n/**\n * Applies the initial theme based on the URL query parameters.\n *\n * This function fetches the CSS theme specified in the URL query parameters and applies it as a stylesheet.\n * If a referrer is present, it also attempts to fetch and apply the theme from the referrer's URL.\n * @param options Options and context for Style helpers\n */\nexport async function applyInitialTheme(options?: StyleHelperOptions): Promise<PromiseSettledResult<void>[] | undefined> {\n const searchParams = new URLSearchParams(window.location.search);\n const theme = searchParams.get(THEME_QUERY_PARAM_NAME);\n document.adoptedStyleSheets = [];\n if (theme) {\n const themeRequest: Promise<void>[] = [\n downloadApplicationThemeCss(theme, options).then((styleToApply) => applyTheme(styleToApply, false))\n ];\n const hostInfo = getHostInfo();\n if (hostInfo.hostURL) {\n const url = new URL(hostInfo.hostURL);\n url.pathname += `${url.pathname.endsWith('/') ? '' : '/'}${theme}`;\n themeRequest.unshift(getStyle(url.toString(), options).then((styleToApply) => applyTheme(styleToApply, false)));\n }\n\n return Promise.allSettled(themeRequest);\n }\n return undefined;\n}\n","import type {\n ThemeMessage,\n ThemeV1_0,\n} from '@ama-mfe/messages';\nimport {\n THEME_MESSAGE_TYPE,\n ThemeStructure,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n effect,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n type MessageProducer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/index';\nimport {\n applyTheme,\n getStyle,\n THEME_QUERY_PARAM_NAME,\n THEME_URL_SUFFIX,\n} from './theme-helpers';\n/**\n * This service exposing the current theme signal\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ThemeProducerService implements MessageProducer<ThemeMessage> {\n private readonly messageService = inject(MessagePeerService<ThemeMessage>);\n private readonly logger = inject(LoggerService);\n private previousTheme: ThemeStructure | undefined;\n private readonly window = inject(Window, { optional: true }) || window;\n\n private readonly currentThemeSelection;\n /** Current selected theme signal */\n public readonly currentTheme;\n\n /**\n * The type of messages this service handles ('theme').\n */\n public readonly types = THEME_MESSAGE_TYPE;\n\n constructor() {\n registerProducer(this);\n\n // get the current theme name from the url (if any) and emit a first value for the current theme\n const parentUrl = new URL(this.window.location.toString());\n const selectedThemeName = parentUrl.searchParams.get(THEME_QUERY_PARAM_NAME);\n this.currentThemeSelection = signal<ThemeStructure | undefined>(selectedThemeName\n ? {\n name: selectedThemeName,\n css: null\n }\n : undefined);\n this.currentTheme = this.currentThemeSelection.asReadonly();\n\n if (selectedThemeName) {\n void this.changeTheme(selectedThemeName);\n }\n\n // When the current theme changes, apply it to the current application\n effect(() => {\n const themeObj = this.currentTheme();\n if (themeObj?.css !== null) {\n applyTheme(themeObj?.css);\n }\n });\n\n /**\n * This effect listens for changes in the `currentTheme` signal. If a valid theme object with CSS is present,\n * it creates a theme message and sends it via the message service.\n */\n effect(() => {\n const themeObj = this.currentTheme();\n if (themeObj && themeObj.css !== null) {\n const messageV10 = {\n type: 'theme',\n name: themeObj.name,\n css: themeObj.css,\n version: '1.0'\n } satisfies ThemeV1_0;\n // TODO: sendBest() is not yet implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n this.messageService.send(messageV10);\n }\n });\n }\n\n /**\n * Changes the current theme to the specified theme name.\n * @param themeName - The name of the theme to change to.\n */\n public async changeTheme(themeName?: string): Promise<void> {\n const cssHref = themeName && `${themeName}${THEME_URL_SUFFIX}`;\n const styleObj = cssHref ? await getStyle(cssHref) : '';\n this.currentThemeSelection.update((theme) => {\n this.previousTheme = theme;\n return themeName\n ? { name: themeName, css: styleObj }\n : undefined;\n });\n }\n\n /**\n * Reverts to the previous theme.\n */\n public revertToPreviousTheme(): void {\n this.currentThemeSelection.set(this.previousTheme);\n }\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<ThemeV1_0>): void {\n this.logger.error('Error in theme service message', message);\n this.revertToPreviousTheme();\n }\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n ThemeProducerService,\n} from './theme-producer-service';\n\n/**\n * A pipe that applies the current theme from a theme manager service, to a given URL or SafeResourceUrl, as query param\n */\n@Pipe({\n name: 'applyTheme'\n})\nexport class ApplyTheme implements PipeTransform {\n private readonly themeManagerService = inject(ThemeProducerService);\n private readonly domSanitizer = inject(DomSanitizer);\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending the current theme value as a query parameter.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @returns The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string): string;\n public transform(url: SafeResourceUrl): SafeResourceUrl;\n public transform(url: undefined): undefined;\n public transform(url: string | SafeResourceUrl | undefined): string | SafeResourceUrl | undefined {\n if (!url) {\n return undefined;\n }\n const currentTheme = this.themeManagerService.currentTheme();\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url);\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n if (currentTheme) {\n moduleUrl.searchParams.set('theme', currentTheme.name);\n }\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n\n return undefined;\n }\n}\n","import type {\n ThemeMessage,\n ThemeV1_0,\n} from '@ama-mfe/messages';\nimport {\n THEME_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n} from '@angular/platform-browser';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n ConsumerManagerService,\n MessageConsumer,\n} from '../managers/index';\nimport {\n applyTheme,\n downloadApplicationThemeCss,\n} from './theme-helpers';\n\n/**\n * A service that handles theme messages and applies the received theme.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ThemeConsumerService implements MessageConsumer<ThemeMessage> {\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly consumerManagerService = inject(ConsumerManagerService);\n private readonly logger = inject(LoggerService);\n /**\n * The type of messages this service handles ('theme').\n */\n public readonly type = THEME_MESSAGE_TYPE;\n\n /**\n * The supported versions of theme messages and their handlers.\n */\n public readonly supportedVersions = {\n /**\n * Use the message paylod to get the theme and apply it\n * @param message message to consume\n */\n '1.0': async (message: RoutedMessage<ThemeV1_0>) => {\n const sanitizedCss = this.domSanitizer.sanitize(SecurityContext.STYLE, message.payload.css);\n if (sanitizedCss !== null) {\n applyTheme(sanitizedCss);\n }\n try {\n const css = await downloadApplicationThemeCss(message.payload.name, { logger: this.logger });\n applyTheme(css, false);\n } catch (e) {\n this.logger.warn(`No CSS variable for the theme ${message.payload.name}`, e);\n }\n }\n };\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Starts the theme handler service by registering it into the consumer manager service.\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * Stops the theme handler service by unregistering it from the consumer manager service.\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["ConnectionService"],"mappings":"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"}
1
+ {"version":3,"file":"ama-mfe-ng-utils.mjs","sources":["../../src/connect/connect-directive.ts","../../src/messages/available-sender.ts","../../src/messages/error-sender.ts","../../src/managers/producer-manager-service.ts","../../src/managers/consumer-manager-service.ts","../../src/managers/utils.ts","../../src/history/history-consumer-service.ts","../../src/history/history-providers.ts","../../src/host-info/host-info.ts","../../src/host-info/host-info-pipe.ts","../../src/messages/error/base.ts","../../src/messages/user-activity.ts","../../src/utils.ts","../../src/connect/connect-providers.ts","../../src/navigation/navigation-consumer-service.ts","../../src/navigation/route-memorize/route-memorize-service.ts","../../src/navigation/restore-route-pipe.ts","../../src/navigation/route-memorize/route-memorize-directive.ts","../../src/navigation/routing-service.ts","../../src/resize/resize-consumer-service.ts","../../src/resize/resize-producer-service.ts","../../src/resize/scalable-directive.ts","../../src/theme/theme-helpers.ts","../../src/theme/theme-producer-service.ts","../../src/theme/apply-theme-pipe.ts","../../src/theme/theme-consumer-service.ts","../../src/user-activity/config.ts","../../src/user-activity/iframe-activity-tracker.service.ts","../../src/user-activity/activity-producer.service.ts","../../src/user-activity/activity-consumer.service.ts","../../src/ama-mfe-ng-utils.ts"],"sourcesContent":["import {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n computed,\n Directive,\n effect,\n ElementRef,\n HostBinding,\n inject,\n input,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n LoggerService,\n} from '@o3r/logger';\n\n@Directive({\n selector: 'iframe[connect]',\n standalone: true\n})\nexport class ConnectDirective {\n /**\n * The connection ID required for the message peer service.\n */\n public connect = input.required<string>();\n\n /**\n * The sanitized source URL for the iframe.\n */\n public src = input<SafeResourceUrl>();\n\n /**\n * Binds the `src` attribute of the iframe to the sanitized source URL.\n */\n @HostBinding('src')\n public get srcAttr() {\n return this.src();\n }\n\n private readonly messageService = inject(MessagePeerService);\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly iframeElement = inject<ElementRef<HTMLIFrameElement>>(ElementRef).nativeElement;\n\n private readonly clientOrigin = computed(() => {\n const src = this.src();\n const srcString = src && this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, src);\n return srcString && new URL(srcString).origin;\n });\n\n constructor() {\n const logger = inject(LoggerService);\n\n // When the origin or connection ID change - reconnect the message service\n effect((onCleanup) => {\n let stopHandshakeListening = () => { /* no op */ };\n\n const origin = this.clientOrigin();\n const id = this.connect();\n const source = this.iframeElement.contentWindow;\n\n // listen for handshakes only if we know the origin and were given a connection ID\n if (origin && source && id) {\n try {\n stopHandshakeListening = this.messageService.listen({ id, source, origin });\n } catch (e) {\n logger.error(`Failed to start listening for (connection ID: ${id})`, e);\n }\n }\n\n // stop listening for handshakes and disconnect previous connection when:\n // - origin/connection ID change\n // - the directive is destroyed\n onCleanup(() => {\n stopHandshakeListening();\n this.messageService.disconnect();\n });\n });\n }\n}\n","import type {\n DeclareMessages,\n} from '@amadeus-it-group/microfrontends';\nimport type {\n BasicMessageConsumer,\n} from '../managers/interfaces';\n\n/**\n * Gets the available consumers and formats them into a {@link DeclareMessages} object.\n * @param consumers - The list of registered message consumers.\n * @returns The formatted DeclareMessages object.\n */\nexport const getAvailableConsumers = (consumers: BasicMessageConsumer[]) => {\n return {\n type: 'declare_messages',\n version: '1.0',\n messages: consumers.flatMap(({ type, supportedVersions }) => Object.keys(supportedVersions).map((version) => ({ type, version })))\n } satisfies DeclareMessages;\n};\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport type {\n MessagePeerServiceType,\n} from '@amadeus-it-group/microfrontends-angular';\nimport type {\n ERROR_MESSAGE_TYPE,\n ErrorContent,\n ErrorMessageV1_0,\n} from './error/index';\n\n/**\n * Helper function to send an error message by the given endpoint (peer)\n * @param peer The endpoint sending the message\n * @param content the content of the error message to be sent\n */\nexport const sendError = (peer: MessagePeerServiceType<any>, content: ErrorContent) => {\n return peer.send({\n type: 'error',\n version: '1.0',\n ...content\n } satisfies ErrorMessageV1_0);\n};\n\n/**\n * Check if the given message is of type error and the error reson is present too\n * @param message the message to be checked\n */\n// eslint-disable-next-line @stylistic/max-len -- constant definition\nexport const isErrorMessage = (message: any): message is VersionedMessage & { type: typeof ERROR_MESSAGE_TYPE } & ErrorContent => (message && typeof message === 'object' && message.type === 'error' && !!message.reason);\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n Injectable,\n} from '@angular/core';\nimport type {\n ErrorContent,\n} from '../messages/index';\nimport type {\n MessageProducer,\n} from './interfaces';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ProducerManagerService {\n private readonly registeredProducers = new Set<MessageProducer>();\n\n /** Get the list of registered producers of messages. The list will contain unique elements */\n public get producers() {\n return [...this.registeredProducers];\n }\n\n /**\n * Register a producer of a message\n * @param producer The instance of the message producer\n */\n public register(producer: MessageProducer) {\n this.registeredProducers.add((producer));\n }\n\n /**\n * Unregister a producer of a message\n * @param producer The instance of the message producer\n */\n public unregister(producer: MessageProducer) {\n this.registeredProducers.delete((producer));\n }\n\n /**\n * Handles the received error message for the given message type by invoking the appropriate producer handlers.\n * @template T - The type of the message, extending from Message.\n * @param message - The error message to handle.\n * @returns - A promise that resolves to true if the error was handled by at least one handler, false otherwise.\n */\n public async dispatchError<T extends VersionedMessage = VersionedMessage>(message: ErrorContent<T>) {\n const handlers = this.producers\n .filter(({ types }) => (Array.isArray(types) ? types : [types]).includes(message.source.type));\n\n const handlersPresent = handlers.length > 0;\n if (handlersPresent) {\n await Promise.all(\n // eslint-disable-next-line @typescript-eslint/await-thenable -- `handleError` can return void or Promise<void>\n handlers.map((handler) => handler.handleError(message))\n );\n }\n return handlersPresent;\n }\n}\n","import {\n RoutedMessage,\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n effect,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n getAvailableConsumers,\n} from '../messages/available-sender';\nimport {\n isErrorMessage,\n sendError,\n} from '../messages/error-sender';\nimport type {\n BasicMessageConsumer,\n} from './interfaces';\nimport {\n ProducerManagerService,\n} from './producer-manager-service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ConsumerManagerService {\n private readonly messageService = inject(MessagePeerService);\n private readonly producerManagerService = inject(ProducerManagerService);\n private readonly registeredConsumers = signal<BasicMessageConsumer[]>([]);\n private readonly logger = inject(LoggerService);\n\n /** The list of registered consumers */\n public readonly consumers = this.registeredConsumers.asReadonly();\n\n constructor() {\n this.messageService.messages$.pipe(takeUntilDestroyed()).subscribe((message) => this.consumeMessage(message));\n\n // Each time a consumer is registered/unregistered update the list of registered messages\n effect(() => {\n const declareMessages = getAvailableConsumers(this.consumers());\n\n // registering consumed messages locally for validation\n for (const message of declareMessages.messages) {\n this.messageService.registerMessage(message);\n }\n });\n }\n\n /**\n * Consume a received message\n * @param message the received message body\n */\n private async consumeMessage(message: RoutedMessage<VersionedMessage>) {\n if (isErrorMessage(message.payload)) {\n const isHandled = await this.producerManagerService.dispatchError(message.payload);\n if (!isHandled) {\n this.logger.warn('Error message not handled', message);\n }\n return;\n }\n\n return this.consumeAdditionalMessage(message);\n }\n\n /**\n * Call the registered message callback(s) to consume the given message\n * Handle error messages of internal communication protocol messages\n * @param message message to consume\n */\n private async consumeAdditionalMessage(message: RoutedMessage<VersionedMessage>) {\n if (!message.payload) {\n this.logger.warn('Cannot consume a messages with undefined payload.');\n return;\n }\n\n const consumers = this.consumers();\n const typeMatchingConsumers = consumers\n .filter((consumer) => consumer.type === message.payload.type);\n\n if (typeMatchingConsumers.length === 0) {\n this.logger.warn(`No consumer found for message type: ${message.payload.type}`);\n return sendError(this.messageService, { reason: 'unknown_type', source: message.payload });\n }\n\n const versionMatchingConsumers = typeMatchingConsumers\n .filter((consumer) => consumer.supportedVersions[message.payload.version])\n .flat();\n\n if (versionMatchingConsumers.length === 0) {\n this.logger.warn(`No consumer found for message version: ${message.payload.version}`);\n return sendError(this.messageService, { reason: 'version_mismatch', source: message.payload });\n }\n\n await Promise.all(\n versionMatchingConsumers\n .map(async (consumer) => {\n try {\n await consumer.supportedVersions[message.payload.version](message);\n } catch (error) {\n this.logger.error('Error while consuming message', error);\n sendError(this.messageService, { reason: 'internal_error', source: message.payload });\n }\n })\n );\n }\n\n /**\n * Register a message consumer\n * @param consumer an instance of message consumer\n */\n public register(consumer: BasicMessageConsumer) {\n this.registeredConsumers.update((consumers) => {\n return [...new Set(consumers).add(consumer)];\n });\n }\n\n /**\n * Unregister a message consumer\n * @param consumer an instance of message consumer\n */\n public unregister(consumer: BasicMessageConsumer) {\n this.registeredConsumers.update((consumers) => {\n return consumers.filter((c) => c !== consumer);\n });\n }\n}\n","import {\n DestroyRef,\n inject,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n} from './consumer-manager-service';\nimport type {\n MessageConsumer,\n MessageProducer,\n} from './interfaces';\nimport {\n ProducerManagerService,\n} from './producer-manager-service';\n\n/**\n * Method to call in the constructor of a producer\n * @note should be used in injection context\n * @param producer\n */\nexport const registerProducer = (producer: MessageProducer) => {\n const producerManagerService = inject(ProducerManagerService);\n producerManagerService.register(producer);\n\n inject(DestroyRef).onDestroy(() => {\n producerManagerService.unregister(producer);\n });\n};\n\n/**\n * Method to call in the constructor of a consumer\n * @note should be used in injection context\n * @param consumer\n */\nexport const registerConsumer = (consumer: MessageConsumer) => {\n const consumerManagerService = inject(ConsumerManagerService);\n consumerManagerService.register(consumer);\n\n inject(DestroyRef).onDestroy(() => {\n consumerManagerService.unregister(consumer);\n });\n};\n","import type {\n HistoryMessage,\n HistoryV1_0,\n} from '@ama-mfe/messages';\nimport {\n HISTORY_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n type MessageConsumer,\n} from '../managers/index';\n\n/**\n * A service that handles history messages.\n *\n * This service listens for history messages and navigates accordingly.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class HistoryConsumerService implements MessageConsumer<HistoryMessage> {\n /**\n * The type of messages this service handles.\n */\n public readonly type = HISTORY_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly supportedVersions = {\n /**\n * Use the message payload to navigate in the history\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<HistoryV1_0>) => {\n history.go(message.payload.delta);\n }\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * @inheritdoc\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * @inheritdoc\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import {\n HistoryMessage,\n HistoryV1_0,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n inject,\n provideAppInitializer,\n} from '@angular/core';\n\n/**\n * Provides necessary overrides to make the module navigation in history work in an embedded context :\n * - Prevent pushing states to history, replace state instead\n * - Handle history navigation via History messages to let the host manage the states\n */\nexport function provideHistoryOverrides() {\n return provideAppInitializer(() => {\n const messageService = inject(MessagePeerService<HistoryMessage>);\n const navigate = (delta: number) => {\n messageService.send({\n type: 'history',\n version: '1.0',\n delta\n } satisfies HistoryV1_0);\n };\n Object.defineProperty(history, 'pushState', {\n value: (data: any, unused: string, url?: string | URL | null) => {\n history.replaceState(data, unused, url);\n },\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'back', {\n value: () => navigate(-1),\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'forward', {\n value: () => navigate(1),\n writable: false,\n configurable: false\n });\n Object.defineProperty(history, 'go', {\n value: (delta: number) => navigate(delta),\n writable: false,\n configurable: false\n });\n });\n}\n","const SESSION_STORAGE_KEY = 'ama-mfe-host-info';\n\n/**\n * Search parameter to add to the URL when embedding an iframe containing the URL of the host.\n * This is needed to support Firefox (on which {@link https://developer.mozilla.org/docs/Web/API/Location/ancestorOrigins | location.ancestorOrigins} is not currently supported)\n * in case of redirection inside the iframe.\n */\nexport const MFE_HOST_URL_PARAM = 'ama-mfe-host-url';\n\n/**\n * Search parameter to add to the URL to let a module know on which application it's embedded\n */\nexport const MFE_HOST_APPLICATION_ID_PARAM = 'ama-mfe-host-app-id';\n\n/**\n * Search parameter to add to the URL to identify the application in the network of peers in the communication protocol\n */\nexport const MFE_MODULE_APPLICATION_ID_PARAM = 'ama-mfe-module-app-id';\n\n/** The list of query parameters which can be set by the host */\nexport const hostQueryParams = [MFE_HOST_URL_PARAM, MFE_HOST_APPLICATION_ID_PARAM, MFE_MODULE_APPLICATION_ID_PARAM];\n\n/**\n * Information set up at host level to use in embedded context\n */\nexport interface MFEHostInformation {\n /**\n * URL of the host application\n */\n hostURL?: string;\n /**\n * ID of the host application\n */\n hostApplicationId?: string;\n\n /**\n * ID of the module to embed defined at host level\n */\n moduleApplicationId?: string;\n}\n\n/**\n * Gather the host information from the url parameters\n * The host url will use the first found among:\n * - look for the search parameter {@link MFE_HOST_URL_PARAM} in the URL of the iframe\n * - use the first item in `location.ancestorOrigins` (currently not supported on Firefox)\n * - use `document.referrer` (will only work if called before any redirection in the iframe)\n * The host application ID is taken from the search parameter {@link MFE_HOST_APPLICATION_ID_PARAM} in the URL of the iframe\n * The module application ID is taken from the search parameter {@link MFE_APPLICATION_ID_PARAM} in the URL of the iframe\n * @param locationParam - A {@link Location} object with information about the current location of the document. Defaults to global {@link location}.\n */\nexport function getHostInfo(locationParam: Location = location): MFEHostInformation {\n const searchParams = new URLSearchParams(locationParam.search);\n const storedHostInfo = JSON.parse(sessionStorage.getItem(SESSION_STORAGE_KEY) || '{}') as MFEHostInformation;\n return {\n hostURL: searchParams.get(MFE_HOST_URL_PARAM) || storedHostInfo.hostURL || locationParam.ancestorOrigins?.[0] || document.referrer,\n hostApplicationId: searchParams.get(MFE_HOST_APPLICATION_ID_PARAM) || storedHostInfo.hostApplicationId,\n moduleApplicationId: searchParams.get(MFE_MODULE_APPLICATION_ID_PARAM) || storedHostInfo.moduleApplicationId\n };\n}\n\n/**\n * Gather the host information from the url parameters and handle the persistence in session storage.\n */\nexport function persistHostInfo() {\n const hostInfo = getHostInfo();\n sessionStorage.setItem(SESSION_STORAGE_KEY, JSON.stringify(hostInfo));\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n MFE_HOST_APPLICATION_ID_PARAM,\n MFE_HOST_URL_PARAM,\n MFE_MODULE_APPLICATION_ID_PARAM,\n} from './host-info';\n\n/**\n * A pipe that adds the host information in the URL of an iframe,\n */\n@Pipe({\n name: 'hostInfo'\n})\nexport class HostInfoPipe implements PipeTransform {\n private readonly domSanitizer = inject(DomSanitizer);\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending query parameters.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @param options - hostId and moduleId\n * @returns - The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string, options: { hostId: string; moduleId?: string }): string;\n public transform(url: SafeResourceUrl, options: { hostId: string; moduleId?: string }): SafeResourceUrl;\n public transform(url: undefined, options: { hostId: string; moduleId?: string }): undefined;\n public transform(url: string | SafeResourceUrl | undefined, options: { hostId: string; moduleId?: string }): string | SafeResourceUrl | undefined {\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url || null);\n\n if (!url) {\n return undefined;\n }\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n moduleUrl.searchParams.set(MFE_HOST_URL_PARAM, window.location.origin);\n moduleUrl.searchParams.set(MFE_HOST_APPLICATION_ID_PARAM, options.hostId);\n if (options.moduleId) {\n moduleUrl.searchParams.set(MFE_MODULE_APPLICATION_ID_PARAM, options.moduleId);\n }\n\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n }\n}\n","import type {\n VersionedMessage,\n} from '@amadeus-it-group/microfrontends';\n\n/** the error message type */\nexport const ERROR_MESSAGE_TYPE = 'error';\n\n/**\n * The possible reasons for an error.\n */\nexport type ErrorReason = 'unknown_type' | 'version_mismatch' | 'internal_error';\n\n/**\n * The content of an error message.\n * @template S - The type of the source message.\n */\nexport interface ErrorContent<S extends VersionedMessage = VersionedMessage> {\n /** The reason for the error */\n reason: ErrorReason;\n /** The source message that caused the error */\n source: S;\n}\n","import {\n USER_ACTIVITY_MESSAGE_TYPE,\n type UserActivityMessage,\n} from '@ama-mfe/messages';\n\n/**\n * Type guard to check if a message is a user activity message\n * @param message The message to check\n */\nexport function isUserActivityMessage(message: unknown): message is UserActivityMessage {\n return (\n typeof message === 'object'\n && message !== null\n && 'type' in message\n && message.type === USER_ACTIVITY_MESSAGE_TYPE\n );\n}\n","import type {\n Message,\n PeerConnectionOptions,\n} from '@amadeus-it-group/microfrontends';\nimport {\n getHostInfo,\n} from './host-info';\nimport {\n ERROR_MESSAGE_TYPE,\n} from './messages';\n\n/**\n * A constant array of known message types and their versions.\n */\nexport const KNOWN_MESSAGES = [\n {\n type: ERROR_MESSAGE_TYPE,\n version: '1.0'\n }\n] as const satisfies Message[];\n\n/**\n * Returns the default options for starting a client endpoint peer connection.\n * As `origin`, it will take the hostURL from {@link getHostInfo} and the `window` will be the parent window.\n */\nexport function getDefaultClientEndpointStartOptions(): PeerConnectionOptions {\n const hostInfo = getHostInfo();\n if (hostInfo.hostURL) {\n return {\n origin: new URL(hostInfo.hostURL).origin,\n window: window.parent\n };\n }\n return {};\n}\n\n/**\n * Return `true` if embedded inside an iframe, `false` otherwise\n * @param windowParam - A {@link window} object with information about the current window of the document. Defaults to global {@link window}.\n */\nexport function isEmbedded(windowParam: Window = window) {\n return windowParam.top !== windowParam.self;\n}\n","import {\n MESSAGE_PEER_CONFIG,\n MESSAGE_PEER_CONNECT_OPTIONS,\n MessagePeerConfig,\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n makeEnvironmentProviders,\n} from '@angular/core';\nimport {\n type Logger,\n} from '@o3r/logger';\nimport {\n provideHistoryOverrides,\n} from '../history';\nimport {\n getHostInfo,\n persistHostInfo,\n} from '../host-info';\nimport {\n getDefaultClientEndpointStartOptions,\n isEmbedded,\n KNOWN_MESSAGES,\n} from '../utils';\nimport {\n ConnectionConfig,\n ConnectionService,\n} from './connect-resources';\n\n/** Options to configure the connection inside the communication protocol */\nexport interface ConnectionConfigOptions extends Omit<ConnectionConfig, 'id'> {\n /** @inheritdoc */\n id?: string;\n /** Logger used to gather information */\n logger?: Logger;\n}\n\n/**\n * Provide the communication protocol connection configuration\n * @param connectionConfigOptions The identifier of the application in the communication protocol ecosystem plus the types of messages able to exchange and a logger object\n */\nexport function provideConnection(connectionConfigOptions?: ConnectionConfigOptions) {\n persistHostInfo();\n const connectionId = (isEmbedded() && getHostInfo().moduleApplicationId) || connectionConfigOptions?.id;\n if (!connectionId) {\n (connectionConfigOptions?.logger || console).error('An id (moduleId) needs to be provided for the application in order to establish a connection inside the communication protocol');\n return makeEnvironmentProviders([]);\n }\n const config: MessagePeerConfig = {\n id: connectionId,\n messageCheckStrategy: 'version',\n knownMessages: [...KNOWN_MESSAGES, ...(connectionConfigOptions?.knownMessages || [])]\n };\n return makeEnvironmentProviders([\n {\n provide: MESSAGE_PEER_CONFIG, useValue: config\n },\n {\n provide: MESSAGE_PEER_CONNECT_OPTIONS, useValue: getDefaultClientEndpointStartOptions()\n },\n {\n // in the case of the ConnectionService will extend the base service 'useExisting' should be used\n provide: MessagePeerService, useClass: ConnectionService, deps: [MESSAGE_PEER_CONFIG]\n },\n ...isEmbedded() ? [provideHistoryOverrides()] : []\n ]);\n}\n","import {\n NAVIGATION_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n NavigationMessage,\n NavigationV1_0,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n ActivatedRoute,\n Router,\n} from '@angular/router';\nimport {\n Subject,\n} from 'rxjs';\nimport {\n hostQueryParams,\n} from '../host-info';\nimport {\n ConsumerManagerService,\n type MessageConsumer,\n} from '../managers/index';\n\n/**\n * A service that handles navigation messages and routing.\n *\n * This service listens for navigation messages and updates the router state accordingly.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class NavigationConsumerService implements MessageConsumer<NavigationMessage> {\n private readonly router = inject(Router);\n private readonly activeRoute = inject(ActivatedRoute);\n private readonly requestedUrl = new Subject<{ url: string; channelId?: string }>();\n\n /**\n * An observable that emits the requested URL and optional channel ID.\n */\n public readonly requestedUrl$ = this.requestedUrl.asObservable();\n\n /**\n * The type of messages this service handles.\n */\n public readonly type = NAVIGATION_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly supportedVersions = {\n /**\n * Use the message paylod to compute a new url and emit it via the public subject\n * Additionally navigate to the new url\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<NavigationV1_0>) => {\n const channelId = message.from || undefined;\n this.requestedUrl.next({ url: message.payload.url, channelId });\n this.navigate(message.payload.url);\n }\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Parses a URL and returns an object containing the paths and query parameters.\n * @param url - The URL to parse.\n * @returns An object containing the paths and query parameters.\n */\n private parseUrl(url: string): { paths: string[]; queryParams: { [key: string]: string } } {\n const urlObject = new URL(window.origin + url);\n const paths = urlObject.pathname.split('/').filter((segment) => !!segment);\n const queryParams = Object.fromEntries(urlObject.searchParams.entries());\n return { paths, queryParams };\n }\n\n /**\n * Navigates to the specified URL.\n * @param url - The URL to navigate to.\n */\n private navigate(url: string) {\n const { paths, queryParams } = this.parseUrl(url);\n // No need to keep these in the URL\n hostQueryParams.forEach((key) => delete queryParams[key]);\n void this.router.navigate(paths, { relativeTo: this.activeRoute.children.at(-1), queryParams });\n }\n\n /**\n * @inheritdoc\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * @inheritdoc\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import {\n Injectable,\n} from '@angular/core';\n\n/**\n * This service allows routes to be memorized with an optional lifetime and provides methods to retrieve and manage these routes.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class RouteMemorizeService {\n private readonly routeTimers: { [x: string]: ReturnType<typeof setTimeout> } = {};\n /** All memorized routes */\n public readonly routeStack: { [x: string]: string } = {};\n\n /**\n * Memorizes a route for a given channel ID with an optional lifetime.\n * @param channelId - The ID of the channel to memorize the route for.\n * @param url - The URL of the route to memorize.\n * @param liveTime - The optional lifetime of the memorized route in milliseconds. If provided, the route will be removed after this time.\n */\n public memorizeRoute(channelId: string, url: string, liveTime?: number): void {\n this.routeStack[channelId] = url;\n\n const timerRef = this.routeTimers[channelId];\n if (timerRef) {\n clearTimeout(timerRef);\n }\n if (liveTime && liveTime > 0) {\n this.routeTimers[channelId] = setTimeout(() => {\n delete this.routeStack[channelId];\n delete this.routeTimers[channelId];\n }, liveTime);\n }\n }\n\n /**\n * Retrieves the memorized route for a given channel ID.\n * @param channelId - The ID of the channel to retrieve the memorized route for.\n * @returns The memorized route URL or undefined if no route is memorized for the given channel ID.\n */\n public getRoute(channelId: string): string | undefined {\n return this.routeStack[channelId];\n }\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n ActivatedRoute,\n} from '@angular/router';\nimport {\n RouteMemorizeService,\n} from './route-memorize/route-memorize-service';\n\n/**\n * Options for restoring a route with optional query parameters and memory channel ID.\n */\nexport interface RestoreRouteOptions {\n /**\n * Whether to propagate query parameters from the top window to the module URL.\n */\n propagateQueryParams?: boolean;\n\n /**\n * Whether to override existing query parameters in the module URL with those from the top window.\n */\n overrideQueryParams?: boolean;\n\n /**\n * The memory channel ID used to retrieve the memorized route.\n * If provided, the memorized route associated with this ID will be used.\n */\n memoryChannelId?: string;\n}\n\n/**\n * A pipe that restores a route with optional query parameters and memory channel ID.\n *\n * This pipe is used to transform a URL or SafeResourceUrl by appending query parameters\n * and adjusting the pathname based on the current active route and memorized route.\n */\n@Pipe({\n name: 'restoreRoute'\n})\nexport class RestoreRoute implements PipeTransform {\n private readonly activeRoute = inject(ActivatedRoute);\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly routeMemorizeService = inject(RouteMemorizeService, { optional: true });\n private readonly window = inject(Window, { optional: true }) || window;\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending query parameters and adjusting the pathname.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @param options - Optional parameters to control the transformation. {@link RestoreRouteOptions}\n * @returns - The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string, options?: Partial<RestoreRouteOptions>): string;\n public transform(url: SafeResourceUrl, options?: Partial<RestoreRouteOptions>): SafeResourceUrl;\n public transform(url: undefined, options?: Partial<RestoreRouteOptions>): undefined;\n public transform(url: string | SafeResourceUrl | undefined, options?: Partial<RestoreRouteOptions>): string | SafeResourceUrl | undefined {\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url || null);\n\n if (!url) {\n return undefined;\n }\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n const queryParamsModule = new URLSearchParams(moduleUrl.searchParams);\n\n const channelId = options?.memoryChannelId;\n const memorizedRoute = channelId && this.routeMemorizeService?.getRoute(channelId);\n const topWindowUrl = new URL(memorizedRoute ? this.window.origin + memorizedRoute : this.window.location.href);\n const queryParamsTopWindow = new URLSearchParams(topWindowUrl.search);\n\n if (options?.propagateQueryParams) {\n for (const [key, value] of queryParamsTopWindow) {\n if (options?.overrideQueryParams || !queryParamsModule.has(key)) {\n queryParamsModule.set(key, value);\n }\n }\n }\n moduleUrl.search = queryParamsModule.toString();\n moduleUrl.pathname += topWindowUrl.pathname.split(`/${this.activeRoute.routeConfig?.path}`).pop() || '';\n moduleUrl.pathname = moduleUrl.pathname.replace(/\\/{2,}/g, '/');\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n }\n}\n","import {\n computed,\n Directive,\n effect,\n inject,\n input,\n untracked,\n} from '@angular/core';\nimport {\n toSignal,\n} from '@angular/core/rxjs-interop';\nimport {\n NavigationConsumerService,\n} from '../navigation-consumer-service';\nimport {\n RouteMemorizeService,\n} from './route-memorize-service';\n\n@Directive({\n selector: 'iframe[memorizeRoute]',\n standalone: true\n})\nexport class RouteMemorizeDirective {\n /**\n * Whether to memorize the route.\n * Default is true.\n */\n public memorizeRoute = input<boolean | undefined | ''>(true);\n\n /**\n * The ID used to memorize the route.\n */\n public memorizeRouteId = input<string>();\n\n /**\n * The maximum age for memorizing the route.\n * Default is 0.\n */\n public memorizeMaxAge = input<number>(0);\n\n /**\n * The maximum age for memorizing the route, used as a fallback.\n * Default is 0.\n */\n public memorizeRouteMaxAge = input<number>(0);\n\n /**\n * The connection ID for the iframe where the actual directive is applied.\n */\n public connect = input<string>();\n\n private readonly maxAge = computed(() => {\n return this.memorizeMaxAge() || this.memorizeRouteMaxAge();\n });\n\n constructor() {\n const memory = inject(RouteMemorizeService);\n const requestedUrlSignal = toSignal(inject(NavigationConsumerService).requestedUrl$);\n\n /**\n * This effect listens for changes in the `memorizeRoute`, `requestedUrlSignal`, and `memorizeRouteId` or `connect` inputs.\n * If `memorizeRoute` is not false and a requested URL with a matching channel ID is found, it memorizes the route using the route memory service.\n */\n effect(() => {\n const memorizeRoute = this.memorizeRoute();\n if (memorizeRoute === false) {\n return;\n }\n const requested = requestedUrlSignal();\n const channelId = this.connect();\n const id = this.memorizeRouteId() || channelId;\n if (requested && id && requested.channelId === channelId) {\n memory.memorizeRoute(id, requested.url, untracked(this.maxAge));\n }\n });\n }\n}\n","import type {\n NavigationMessage,\n NavigationV1_0,\n} from '@ama-mfe/messages';\nimport {\n NAVIGATION_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n takeUntilDestroyed,\n} from '@angular/core/rxjs-interop';\nimport {\n ActivatedRoute,\n NavigationEnd,\n Router,\n} from '@angular/router';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n filter,\n map,\n} from 'rxjs';\nimport {\n type MessageConsumer,\n type MessageProducer,\n registerConsumer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/error';\nimport {\n isEmbedded,\n} from '../utils';\n\n/** Options for the routing handling in case of navigation producer message */\nexport interface RoutingServiceOptions {\n /**\n * Whether to handle only sub-routes.\n * If true, the routing service will handle only sub-routes.\n * Default is false.\n */\n subRouteOnly?: boolean;\n}\n\n/**\n * A service that keeps in sync Router navigation and navigation messages.\n *\n * - listens to Router events and sends navigation messages\n * - handles incoming navigation messages and triggers Router navigation\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class RoutingService implements MessageProducer<NavigationMessage>, MessageConsumer<NavigationMessage> {\n private readonly router = inject(Router);\n private readonly activatedRoute = inject(ActivatedRoute);\n private readonly messageService = inject(MessagePeerService<NavigationMessage>);\n private readonly logger = inject(LoggerService);\n private readonly window = inject(Window, { optional: true }) || window;\n\n /**\n * @inheritdoc\n */\n public readonly types = NAVIGATION_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly type = 'navigation';\n\n /**\n * Use the message payload to navigate to the specified URL.\n * @param message message to consume\n */\n public readonly supportedVersions = {\n '1.0': async (message: RoutedMessage<any>) => {\n await this.router.navigateByUrl(message.payload.url);\n }\n };\n\n constructor() {\n registerProducer(this);\n registerConsumer(this);\n }\n\n /**\n * @inheritdoc\n */\n public start(): void {}\n\n /**\n * @inheritdoc\n */\n public stop(): void {}\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<NavigationV1_0>): void {\n this.logger.error('Error in navigation service message', message);\n }\n\n /**\n * Handles embedded routing by listening to router events and sending navigation messages to the connected endpoints.\n * It can be a parent window or another iframe\n * @note - This method has to be called in an injection context\n * @param options - Optional parameters to control the routing behavior {@link RoutingServiceOptions}.\n */\n public handleEmbeddedRouting(options?: RoutingServiceOptions): void {\n const subRouteOnly = options?.subRouteOnly ?? false;\n this.router.events.pipe(\n takeUntilDestroyed(),\n filter((event): event is NavigationEnd => event instanceof NavigationEnd),\n filter((_event) => !this.router.getCurrentNavigation()?.extras?.skipLocationChange),\n map(({ urlAfterRedirects }) => {\n const channelId = this.router.getCurrentNavigation()?.extras?.state?.channelId;\n const currentRouteRegExp = subRouteOnly && this.activatedRoute.routeConfig?.path && new RegExp('^' + this.activatedRoute.routeConfig.path.replace(/(?=\\W)/g, '\\\\'), 'i');\n return ({ url: currentRouteRegExp ? urlAfterRedirects.replace(currentRouteRegExp, '') : urlAfterRedirects, channelId });\n })\n ).subscribe(({ url, channelId }) => {\n const messageV10 = {\n type: 'navigation',\n version: '1.0',\n url\n } satisfies NavigationV1_0;\n // TODO: sendBest() is not implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n if (isEmbedded(this.window)) {\n this.messageService.send(messageV10);\n } else {\n if (channelId === undefined) {\n this.logger.warn('No channelId provided for navigation message');\n } else {\n try {\n this.messageService.send(messageV10, { to: [channelId] });\n } catch (error) {\n this.logger.error('Error sending navigation message', error);\n }\n }\n }\n });\n }\n}\n","import type {\n ResizeMessage,\n ResizeV1_0,\n} from '@ama-mfe/messages';\nimport {\n RESIZE_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n ConsumerManagerService,\n MessageConsumer,\n} from '../managers/index';\n\n/**\n * This service listens for resize messages and updates the height of elements based on the received messages.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ResizeConsumerService implements MessageConsumer<ResizeMessage> {\n private readonly newHeight = signal<{ height: number; channelId: string } | undefined>(undefined);\n\n /**\n * A readonly signal that provides the new height information from the channel.\n */\n public readonly newHeightFromChannel = this.newHeight.asReadonly();\n\n /**\n * The type of messages this service handles ('resize').\n */\n public readonly type = RESIZE_MESSAGE_TYPE;\n\n /**\n * The supported versions of resize messages and their handlers.\n */\n public supportedVersions = {\n /**\n * Use the message paylod to compute a new height and emit it via the public signal\n * @param message message to consume\n */\n '1.0': (message: RoutedMessage<ResizeV1_0>) => this.newHeight.set({ height: message.payload.height, channelId: message.from })\n };\n\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Starts the resize handler service by registering it into the consumer manager service.\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * Stops the resize handler service by unregistering it from the consumer manager service.\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import type {\n ResizeMessage,\n ResizeV1_0,\n} from '@ama-mfe/messages';\nimport {\n RESIZE_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n afterNextRender,\n inject,\n Injectable,\n} from '@angular/core';\nimport {\n type MessageProducer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/index';\n\n/**\n * This service observe changes in the document's body height.\n * When the height changes, it sends a resize message with the new height, to the connected peers\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ResizeService implements MessageProducer<ResizeMessage> {\n private actualHeight?: number;\n private readonly messageService = inject(MessagePeerService<ResizeMessage>);\n private resizeObserver?: ResizeObserver;\n\n /**\n * @inheritdoc\n */\n public readonly types = RESIZE_MESSAGE_TYPE;\n\n constructor() {\n registerProducer(this);\n }\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<ResizeMessage>): void {\n // eslint-disable-next-line no-console -- error handling placeholder\n console.error('Error in resize service message', message);\n }\n\n /**\n * This method sets up a `ResizeObserver` to observe changes in the document's body height.\n * When the height changes, it sends a resize message with the new height, to the connected peers\n */\n public startResizeObserver() {\n this.resizeObserver = new ResizeObserver(() => {\n const newHeight = document.body.getBoundingClientRect().height;\n if (!this.actualHeight || newHeight !== this.actualHeight) {\n this.actualHeight = newHeight;\n const messageV10 = {\n type: 'resize',\n version: '1.0',\n height: this.actualHeight\n } satisfies ResizeV1_0;\n // TODO: sendBest() is not implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n this.messageService.send(messageV10);\n }\n });\n\n afterNextRender(() => this.resizeObserver?.observe(document.body));\n }\n}\n","import {\n computed,\n Directive,\n effect,\n ElementRef,\n inject,\n input,\n Renderer2,\n} from '@angular/core';\nimport {\n ResizeConsumerService,\n} from './resize-consumer-service';\n\n/**\n * A directive that adjusts the height of an element based on resize messages from a specified channel.\n */\n@Directive({\n selector: '[scalable]',\n standalone: true\n})\nexport class ScalableDirective {\n /**\n * The connection ID for the element, used as channel id backup\n */\n public connect = input<string>();\n\n /**\n * The channel id\n */\n public scalable = input<string>();\n\n private readonly resizeHandler = inject(ResizeConsumerService);\n\n /**\n * This signal checks if the current channel requesting the resize matches the channel ID from the resize handler.\n * If they match, it returns the new height information; otherwise, it returns undefined.\n */\n private readonly newHeightFromChannel = computed(() => {\n const channelAskingResize = this.scalable() || this.connect();\n const newHeightFromChannel = this.resizeHandler.newHeightFromChannel();\n if (channelAskingResize && newHeightFromChannel?.channelId === channelAskingResize) {\n return newHeightFromChannel;\n }\n return undefined;\n });\n\n constructor() {\n const elem = inject(ElementRef);\n const renderer = inject(Renderer2);\n\n this.resizeHandler.start();\n\n /** When a new height value is received set the height of the host element (in pixels) */\n effect(() => {\n const newHeightFromChannel = this.newHeightFromChannel();\n if (newHeightFromChannel) {\n renderer.setStyle(elem.nativeElement, 'height', `${newHeightFromChannel.height}px`);\n }\n });\n }\n}\n","import {\n type Logger,\n} from '@o3r/logger';\nimport {\n getHostInfo,\n} from '../host-info';\n\n/** Default suffix for an url containing a theme css file */\nexport const THEME_URL_SUFFIX = '-theme.css';\n/** Default name for the query parameter containing the theme name */\nexport const THEME_QUERY_PARAM_NAME = 'theme';\n\n/** Options and context for Style helpers */\nexport interface StyleHelperOptions {\n /**\n * Logger to reporter the logs\n */\n logger?: Logger;\n}\n\n/**\n * Fetches a CSS document and returns the content as a string.\n * @param cssPath - The path to download the CSS.\n * @param options Options and context for Style helpers\n * @returns The content of the CSS document as a string, empty string if the fetch fails.\n */\nexport async function getStyle(cssPath: string, options?: StyleHelperOptions): Promise<string> {\n try {\n const myRequest = new Request(cssPath);\n const response = await fetch(myRequest);\n const cssText = response.ok ? await response.text() : '';\n return cssText;\n } catch (error) {\n options?.logger?.warn(`Failed to download style from: ${cssPath} with error: ${error?.toString()}`);\n }\n return '';\n}\n\n/**\n * Applies the given CSS theme as a stylesheet.\n * @param themeValue - CSS as text containing a theme definition.\n * @param cleanPrevious - Whether to remove previously applied stylesheets if no themeValue provided. Default is true.\n */\nexport function applyTheme(themeValue?: string, cleanPrevious = true): void {\n if (themeValue !== undefined) {\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(themeValue);\n document.adoptedStyleSheets = cleanPrevious ? [sheet] : [...document.adoptedStyleSheets, sheet];\n } else if (cleanPrevious) { // remove the styles if the theme value comes undefined or empty string\n document.adoptedStyleSheets = [];\n }\n}\n\n/**\n * Download the application additional theme\n * @param theme Name of the theme to download from the current application\n * @param options Options and context for Style helpers\n */\nexport function downloadApplicationThemeCss(theme: string, options?: StyleHelperOptions) {\n const cssHref = `${theme.endsWith('.css') ? theme : theme + THEME_URL_SUFFIX}`;\n return getStyle(cssHref, options);\n}\n\n/**\n * Applies the initial theme based on the URL query parameters.\n *\n * This function fetches the CSS theme specified in the URL query parameters and applies it as a stylesheet.\n * If a referrer is present, it also attempts to fetch and apply the theme from the referrer's URL.\n * @param options Options and context for Style helpers\n */\nexport async function applyInitialTheme(options?: StyleHelperOptions): Promise<PromiseSettledResult<void>[] | undefined> {\n const searchParams = new URLSearchParams(window.location.search);\n const theme = searchParams.get(THEME_QUERY_PARAM_NAME);\n document.adoptedStyleSheets = [];\n if (theme) {\n const themeRequest: Promise<void>[] = [\n downloadApplicationThemeCss(theme, options).then((styleToApply) => applyTheme(styleToApply, false))\n ];\n const hostInfo = getHostInfo();\n if (hostInfo.hostURL) {\n const url = new URL(hostInfo.hostURL);\n url.pathname += `${url.pathname.endsWith('/') ? '' : '/'}${theme}`;\n themeRequest.unshift(getStyle(url.toString(), options).then((styleToApply) => applyTheme(styleToApply, false)));\n }\n\n return Promise.allSettled(themeRequest);\n }\n return undefined;\n}\n","import type {\n ThemeMessage,\n ThemeV1_0,\n} from '@ama-mfe/messages';\nimport {\n THEME_MESSAGE_TYPE,\n ThemeStructure,\n} from '@ama-mfe/messages';\nimport {\n MessagePeerService,\n} from '@amadeus-it-group/microfrontends-angular';\nimport {\n effect,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n type MessageProducer,\n registerProducer,\n} from '../managers/index';\nimport {\n type ErrorContent,\n} from '../messages/index';\nimport {\n applyTheme,\n getStyle,\n THEME_QUERY_PARAM_NAME,\n THEME_URL_SUFFIX,\n} from './theme-helpers';\n/**\n * This service exposing the current theme signal\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ThemeProducerService implements MessageProducer<ThemeMessage> {\n private readonly messageService = inject(MessagePeerService<ThemeMessage>);\n private readonly logger = inject(LoggerService);\n private previousTheme: ThemeStructure | undefined;\n private readonly window = inject(Window, { optional: true }) || window;\n\n private readonly currentThemeSelection;\n /** Current selected theme signal */\n public readonly currentTheme;\n\n /**\n * The type of messages this service handles ('theme').\n */\n public readonly types = THEME_MESSAGE_TYPE;\n\n constructor() {\n registerProducer(this);\n\n // get the current theme name from the url (if any) and emit a first value for the current theme\n const parentUrl = new URL(this.window.location.toString());\n const selectedThemeName = parentUrl.searchParams.get(THEME_QUERY_PARAM_NAME);\n this.currentThemeSelection = signal<ThemeStructure | undefined>(selectedThemeName\n ? {\n name: selectedThemeName,\n css: null\n }\n : undefined);\n this.currentTheme = this.currentThemeSelection.asReadonly();\n\n if (selectedThemeName) {\n void this.changeTheme(selectedThemeName);\n }\n\n // When the current theme changes, apply it to the current application\n effect(() => {\n const themeObj = this.currentTheme();\n if (themeObj?.css !== null) {\n applyTheme(themeObj?.css);\n }\n });\n\n /**\n * This effect listens for changes in the `currentTheme` signal. If a valid theme object with CSS is present,\n * it creates a theme message and sends it via the message service.\n */\n effect(() => {\n const themeObj = this.currentTheme();\n if (themeObj && themeObj.css !== null) {\n const messageV10 = {\n type: 'theme',\n name: themeObj.name,\n css: themeObj.css,\n version: '1.0'\n } satisfies ThemeV1_0;\n // TODO: sendBest() is not yet implemented -- https://github.com/AmadeusITGroup/microfrontends/issues/11\n this.messageService.send(messageV10);\n }\n });\n }\n\n /**\n * Changes the current theme to the specified theme name.\n * @param themeName - The name of the theme to change to.\n */\n public async changeTheme(themeName?: string): Promise<void> {\n const cssHref = themeName && `${themeName}${THEME_URL_SUFFIX}`;\n const styleObj = cssHref ? await getStyle(cssHref) : '';\n this.currentThemeSelection.update((theme) => {\n this.previousTheme = theme;\n return themeName\n ? { name: themeName, css: styleObj }\n : undefined;\n });\n }\n\n /**\n * Reverts to the previous theme.\n */\n public revertToPreviousTheme(): void {\n this.currentThemeSelection.set(this.previousTheme);\n }\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<ThemeV1_0>): void {\n this.logger.error('Error in theme service message', message);\n this.revertToPreviousTheme();\n }\n}\n","import {\n inject,\n Pipe,\n PipeTransform,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n type SafeResourceUrl,\n} from '@angular/platform-browser';\nimport {\n ThemeProducerService,\n} from './theme-producer-service';\n\n/**\n * A pipe that applies the current theme from a theme manager service, to a given URL or SafeResourceUrl, as query param\n */\n@Pipe({\n name: 'applyTheme'\n})\nexport class ApplyTheme implements PipeTransform {\n private readonly themeManagerService = inject(ThemeProducerService);\n private readonly domSanitizer = inject(DomSanitizer);\n\n /**\n * Transforms the given URL or SafeResourceUrl by appending the current theme value as a query parameter.\n * @param url - The URL or SafeResourceUrl to be transformed.\n * @returns The transformed SafeResourceUrl or undefined if the input URL is invalid.\n */\n public transform(url: string): string;\n public transform(url: SafeResourceUrl): SafeResourceUrl;\n public transform(url: undefined): undefined;\n public transform(url: string | SafeResourceUrl | undefined): string | SafeResourceUrl | undefined {\n if (!url) {\n return undefined;\n }\n const currentTheme = this.themeManagerService.currentTheme();\n const urlString = typeof url === 'string'\n ? url\n : this.domSanitizer.sanitize(SecurityContext.RESOURCE_URL, url);\n\n if (urlString) {\n const moduleUrl = new URL(urlString);\n if (currentTheme) {\n moduleUrl.searchParams.set('theme', currentTheme.name);\n }\n const moduleUrlStringyfied = moduleUrl.toString();\n return typeof url === 'string' ? moduleUrlStringyfied : this.domSanitizer.bypassSecurityTrustResourceUrl(moduleUrlStringyfied);\n }\n\n return undefined;\n }\n}\n","import type {\n ThemeMessage,\n ThemeV1_0,\n} from '@ama-mfe/messages';\nimport {\n THEME_MESSAGE_TYPE,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n DestroyRef,\n inject,\n Injectable,\n SecurityContext,\n} from '@angular/core';\nimport {\n DomSanitizer,\n} from '@angular/platform-browser';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n ConsumerManagerService,\n MessageConsumer,\n} from '../managers/index';\nimport {\n applyTheme,\n downloadApplicationThemeCss,\n} from './theme-helpers';\n\n/**\n * A service that handles theme messages and applies the received theme.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ThemeConsumerService implements MessageConsumer<ThemeMessage> {\n private readonly domSanitizer = inject(DomSanitizer);\n private readonly consumerManagerService = inject(ConsumerManagerService);\n private readonly logger = inject(LoggerService);\n /**\n * The type of messages this service handles ('theme').\n */\n public readonly type = THEME_MESSAGE_TYPE;\n\n /**\n * The supported versions of theme messages and their handlers.\n */\n public readonly supportedVersions = {\n /**\n * Use the message paylod to get the theme and apply it\n * @param message message to consume\n */\n '1.0': async (message: RoutedMessage<ThemeV1_0>) => {\n const sanitizedCss = this.domSanitizer.sanitize(SecurityContext.STYLE, message.payload.css);\n if (sanitizedCss !== null) {\n applyTheme(sanitizedCss);\n }\n try {\n const css = await downloadApplicationThemeCss(message.payload.name, { logger: this.logger });\n applyTheme(css, false);\n } catch (e) {\n this.logger.warn(`No CSS variable for the theme ${message.payload.name}`, e);\n }\n }\n };\n\n constructor() {\n this.start();\n inject(DestroyRef).onDestroy(() => this.stop());\n }\n\n /**\n * Starts the theme handler service by registering it into the consumer manager service.\n */\n public start() {\n this.consumerManagerService.register(this);\n }\n\n /**\n * Stops the theme handler service by unregistering it from the consumer manager service.\n */\n public stop() {\n this.consumerManagerService.unregister(this);\n }\n}\n","import type {\n UserActivityEventType,\n} from '@ama-mfe/messages';\nimport type {\n ActivityProducerConfig,\n} from './interfaces';\n\n/**\n * DOM events that indicate user activity\n */\nexport const ACTIVITY_EVENTS: readonly Exclude<UserActivityEventType, 'visibilitychange'>[] = [\n 'click',\n 'keydown',\n 'scroll',\n 'touchstart',\n 'focus'\n];\n\n/**\n * Custom activity event type for iframe interactions.\n * Emitted programmatically when an iframe gains focus, not from a DOM event listener.\n */\nexport const IFRAME_INTERACTION_EVENT: UserActivityEventType = 'iframeinteraction';\n\n/**\n * Custom activity event type for visibility changes.\n * Emitted programmatically when the document becomes visible, not from a DOM event listener.\n */\nexport const VISIBILITY_CHANGE_EVENT: UserActivityEventType = 'visibilitychange';\n\n/**\n * High-frequency events that require throttling to avoid performance issues\n */\nexport const HIGH_FREQUENCY_EVENTS: readonly UserActivityEventType[] = [\n 'scroll'\n];\n\n/**\n * Default configuration values for the ActivityProducerService\n */\nexport const DEFAULT_ACTIVITY_PRODUCER_CONFIG: Readonly<ActivityProducerConfig> = {\n /** Default throttle time in milliseconds between activity messages */\n throttleMs: 1000,\n /** Default throttle time in milliseconds for high-frequency events */\n highFrequencyThrottleMs: 300,\n /** Whether to track nested iframes by default */\n trackNestedIframes: false,\n /** Default interval for iframe activity signals (30 seconds) */\n nestedIframeActivityEmitIntervalMs: 30_000,\n /** Default polling interval for detecting iframe focus changes (1 second) */\n nestedIframePollIntervalMs: 1000\n};\n","import {\n Injectable,\n} from '@angular/core';\nimport type {\n IframeActivityTrackerConfig,\n} from './interfaces';\n\n/**\n * Service that tracks user activity within nested iframes.\n *\n * Polls document.activeElement frequently to detect when an iframe has focus.\n * When an iframe gains focus, emits immediately and then at the configured interval.\n * When focus leaves the iframe, it stops emitting.\n *\n * This is needed because cross-origin iframes don't fire focus/blur events\n * that bubble to the parent, and the regular activity tracker can't detect\n * user interactions inside iframes.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class IframeActivityTrackerService {\n /**\n * Interval ID for polling activeElement\n */\n private pollIntervalId?: ReturnType<typeof setInterval>;\n\n /**\n * Interval ID for emitting activity at configured interval\n */\n private activityIntervalId?: ReturnType<typeof setInterval>;\n\n /**\n * Current configuration\n */\n private config?: IframeActivityTrackerConfig;\n\n /**\n * Bound visibility change handler for cleanup\n */\n private readonly visibilityChangeHandler = () => this.handleVisibilityChange();\n\n /**\n * Whether the service has been started\n */\n private get started() {\n return this.config !== undefined;\n }\n\n /**\n * Whether we are currently tracking iframe activity (iframe had focus on last poll)\n */\n private get isTrackingIframeActivity() {\n return this.activityIntervalId !== undefined;\n }\n\n /**\n * Polls document.activeElement to detect iframe focus changes.\n * When iframe gains focus: emit immediately and start activity interval.\n * When iframe loses focus: stop activity interval.\n */\n private checkActiveElement(): void {\n const activeElement = document.activeElement;\n const iframeFocused = activeElement instanceof HTMLIFrameElement;\n\n if (iframeFocused && !this.isTrackingIframeActivity) {\n // Iframe just gained focus - emit immediately and start activity interval\n this.config?.onActivity();\n this.startActivityInterval();\n } else if (!iframeFocused && this.isTrackingIframeActivity) {\n // Focus left the iframe - stop activity interval\n this.stopActivityInterval();\n }\n }\n\n /**\n * Handles visibility change events to pause/resume polling when tab visibility changes.\n */\n private handleVisibilityChange(): void {\n if (document.visibilityState === 'visible') {\n this.startPolling();\n } else {\n this.stopPolling();\n this.stopActivityInterval();\n }\n }\n\n /**\n * Starts polling for active element changes.\n */\n private startPolling(): void {\n if (this.pollIntervalId) {\n return;\n }\n this.pollIntervalId = setInterval(\n () => this.checkActiveElement(),\n this.config!.pollIntervalMs\n );\n }\n\n /**\n * Stops polling for active element changes.\n */\n private stopPolling(): void {\n if (this.pollIntervalId) {\n clearInterval(this.pollIntervalId);\n this.pollIntervalId = undefined;\n }\n }\n\n /**\n * Starts the activity emission interval.\n */\n private startActivityInterval(): void {\n this.stopActivityInterval();\n this.activityIntervalId = setInterval(() => {\n this.config?.onActivity();\n }, this.config!.activityIntervalMs);\n }\n\n /**\n * Stops the activity emission interval.\n */\n private stopActivityInterval(): void {\n if (this.activityIntervalId) {\n clearInterval(this.activityIntervalId);\n this.activityIntervalId = undefined;\n }\n }\n\n /**\n * Starts tracking nested iframes within the document.\n * @param config Configuration for the tracker\n */\n public start(config: IframeActivityTrackerConfig): void {\n if (this.started) {\n return;\n }\n this.config = config;\n\n // Listen for visibility changes to pause/resume polling\n document.addEventListener('visibilitychange', this.visibilityChangeHandler);\n\n // Only start polling if document is currently visible\n if (document.visibilityState === 'visible') {\n this.startPolling();\n }\n }\n\n /**\n * Stops tracking nested iframes and cleans up resources.\n */\n public stop(): void {\n if (!this.started) {\n return;\n }\n\n document.removeEventListener('visibilitychange', this.visibilityChangeHandler);\n this.stopPolling();\n this.stopActivityInterval();\n this.config = undefined;\n }\n}\n","import {\n USER_ACTIVITY_MESSAGE_TYPE,\n type UserActivityEventType,\n type UserActivityMessage,\n type UserActivityMessageV1_0,\n} from '@ama-mfe/messages';\nimport {\n afterNextRender,\n DestroyRef,\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n LoggerService,\n} from '@o3r/logger';\nimport {\n ConnectionService,\n} from '../connect/index';\nimport {\n type MessageProducer,\n registerProducer,\n} from '../managers';\nimport type {\n ErrorContent,\n} from '../messages';\nimport {\n ACTIVITY_EVENTS,\n DEFAULT_ACTIVITY_PRODUCER_CONFIG,\n HIGH_FREQUENCY_EVENTS,\n IFRAME_INTERACTION_EVENT,\n VISIBILITY_CHANGE_EVENT,\n} from './config';\nimport {\n IframeActivityTrackerService,\n} from './iframe-activity-tracker.service';\nimport type {\n ActivityInfo,\n ActivityProducerConfig,\n} from './interfaces';\n\n/**\n * Generic service that tracks user activity and sends messages.\n * Can be configured for different contexts (cockpit or modules) via start() method parameter.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ActivityProducerService implements MessageProducer<UserActivityMessage> {\n private readonly messageService = inject(ConnectionService);\n private readonly destroyRef = inject(DestroyRef);\n private readonly iframeActivityTracker = inject(IframeActivityTrackerService);\n private readonly logger = inject(LoggerService);\n\n /**\n * Timestamp of the last sent activity message\n */\n private lastSentTimestamp = 0;\n\n /**\n * Bound event listeners for cleanup\n */\n private readonly boundListeners = new Map<UserActivityEventType, EventListener>();\n\n /**\n * Last emission timestamps for throttled high-frequency events\n */\n private readonly lastEmitTimestamps = new Map<UserActivityEventType, number>();\n\n /**\n * Whether the service has been started\n */\n private started = false;\n\n /**\n * Signal that emits local activity information.\n * This allows consumers to react to activity detected by this producer.\n */\n private readonly localActivityWritable = signal<ActivityInfo | undefined>(undefined);\n\n /**\n * Read-only signal containing the latest local activity info.\n * Use this signal to react to locally detected activity.\n */\n public readonly localActivity = this.localActivityWritable.asReadonly();\n\n /**\n * @inheritdoc\n */\n public readonly types = USER_ACTIVITY_MESSAGE_TYPE;\n\n constructor() {\n registerProducer(this);\n this.destroyRef.onDestroy(() => this.stop());\n }\n\n /**\n * Handles high-frequency events by applying a per-eventType throttle before calling onActivity.\n *\n * Difference with onActivity:\n * - onActivityThrottled limits how often a given high-frequency event type (e.g. scroll) is processed\n * (based on highFrequencyThrottleMs and lastEmitTimestamps)\n * - onActivity updates the local activity signal and applies the global message throttle\n * (based on global throttleMs and lastSentTimestamp)\n * @param eventType The type of activity event that occurred\n * @param configObject\n */\n private onActivityThrottled(eventType: UserActivityEventType, configObject: ActivityProducerConfig): void {\n const now = Date.now();\n const lastEmit = this.lastEmitTimestamps.get(eventType) ?? 0;\n const throttleMs = configObject.highFrequencyThrottleMs!;\n\n if (now - lastEmit >= throttleMs) {\n this.lastEmitTimestamps.set(eventType, now);\n this.onActivity(eventType, configObject);\n }\n }\n\n /**\n * Handles activity by sending a throttled message and emitting to local signal.\n * @param eventType The type of activity event that occurred\n * @param configObject\n */\n private onActivity(eventType: UserActivityEventType, configObject: ActivityProducerConfig): void {\n const now = Date.now();\n\n // Always emit local activity signal (not throttled for local detection)\n this.localActivityWritable.set({\n channelId: 'local',\n eventType,\n timestamp: now\n });\n\n // Send message with throttling\n if (now - this.lastSentTimestamp >= configObject.throttleMs) {\n this.lastSentTimestamp = now;\n this.sendActivityMessage(eventType, now);\n }\n }\n\n /**\n * Sends an activity message.\n * @param eventType The type of activity event\n * @param timestamp The timestamp of the event\n */\n private sendActivityMessage(eventType: UserActivityEventType, timestamp: number): void {\n const message: UserActivityMessageV1_0 = {\n type: USER_ACTIVITY_MESSAGE_TYPE,\n version: '1.0',\n eventType,\n timestamp\n };\n const registeredPeersIdsForUserActivity = [...this.messageService.knownPeers.entries()]\n .filter(([peerId]) => peerId !== this.messageService.id)\n .filter(([, messages]) => messages.some((msg) => msg.type === USER_ACTIVITY_MESSAGE_TYPE))\n .map((peer) => peer[0]);\n // send messages to the peers waiting for user activity\n // avoids sending the message to modules which are not using it\n if (registeredPeersIdsForUserActivity.length > 0) {\n this.messageService.send(message, { to: registeredPeersIdsForUserActivity });\n }\n }\n\n /**\n * @inheritdoc\n */\n public handleError(message: ErrorContent<UserActivityMessage>): void {\n this.logger.error('Error in user activity service message', message);\n }\n\n /**\n * Starts observing user activity events.\n * When activity is detected, it sends a throttled message.\n * Event listeners are attached after the next render to ensure DOM is ready.\n * @param config Configuration for the activity producer\n */\n public start(config?: Partial<ActivityProducerConfig>): void {\n if (this.started) {\n return;\n }\n this.started = true;\n const configObject: ActivityProducerConfig = { ...DEFAULT_ACTIVITY_PRODUCER_CONFIG, ...config };\n\n // Always use afterNextRender to ensure DOM is ready in all contexts\n afterNextRender(() => {\n ACTIVITY_EVENTS.forEach((eventType) => {\n const isHighFrequency = HIGH_FREQUENCY_EVENTS.includes(eventType);\n const listener = (event: Event) => {\n // do nothing if the event is a key kept pressed\n if (eventType === 'keydown' && event instanceof KeyboardEvent && event.repeat) {\n return;\n }\n // Apply filter if provided\n if (configObject.shouldBroadcast?.(event) === false) {\n return;\n }\n if (isHighFrequency) {\n this.onActivityThrottled(eventType, configObject);\n } else {\n this.onActivity(eventType, configObject);\n }\n };\n this.boundListeners.set(eventType, listener);\n document.addEventListener(eventType, listener, { passive: true, capture: true });\n });\n\n // Also listen for visibility changes\n const visibilityListener = () => {\n if (document.visibilityState === 'visible') {\n this.onActivity(VISIBILITY_CHANGE_EVENT, configObject);\n }\n };\n this.boundListeners.set(VISIBILITY_CHANGE_EVENT, visibilityListener);\n document.addEventListener(VISIBILITY_CHANGE_EVENT, visibilityListener, { passive: true, capture: true });\n\n // Set up nested iframe tracking if enabled\n if (configObject.trackNestedIframes) {\n this.iframeActivityTracker.start({\n pollIntervalMs: configObject.nestedIframePollIntervalMs,\n activityIntervalMs: configObject.nestedIframeActivityEmitIntervalMs,\n onActivity: () => this.onActivity(IFRAME_INTERACTION_EVENT, configObject)\n });\n }\n });\n }\n\n /**\n * Stops observing user activity events.\n */\n public stop(): void {\n this.boundListeners.forEach((listener, eventType) => {\n document.removeEventListener(eventType, listener, { capture: true });\n });\n this.boundListeners.clear();\n this.lastEmitTimestamps.clear();\n this.iframeActivityTracker.stop();\n }\n}\n","import {\n USER_ACTIVITY_MESSAGE_TYPE,\n type UserActivityMessageV1_0,\n} from '@ama-mfe/messages';\nimport type {\n RoutedMessage,\n} from '@amadeus-it-group/microfrontends';\nimport {\n inject,\n Injectable,\n signal,\n} from '@angular/core';\nimport {\n type BasicMessageConsumer,\n ConsumerManagerService,\n} from '../managers';\nimport {\n ActivityInfo,\n} from './interfaces';\n\n/**\n * Generic service that consumes user activity messages.\n * Can be used in both shell (to receive from modules) and modules (to receive from shell).\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class ActivityConsumerService implements BasicMessageConsumer<UserActivityMessageV1_0> {\n private readonly consumerManagerService = inject(ConsumerManagerService);\n\n /**\n * Signal containing the latest activity info\n */\n private readonly latestReceivedActivityWritable = signal<ActivityInfo | undefined>(undefined);\n\n /**\n * Read-only signal containing the latest activity info received from other peers via the message protocol.\n * Access the timestamp via latestReceivedActivity()?.timestamp\n */\n public readonly latestReceivedActivity = this.latestReceivedActivityWritable.asReadonly();\n\n /**\n * @inheritdoc\n */\n public readonly type = USER_ACTIVITY_MESSAGE_TYPE;\n\n /**\n * @inheritdoc\n */\n public readonly supportedVersions: Record<string, (message: RoutedMessage<UserActivityMessageV1_0>) => void> = {\n // eslint-disable-next-line @typescript-eslint/naming-convention -- Version keys follow message versioning convention\n '1.0': (message) => {\n this.latestReceivedActivityWritable.set({\n channelId: message.from || 'unknown',\n eventType: message.payload.eventType,\n timestamp: message.payload.timestamp\n });\n }\n };\n\n /**\n * Starts the activity consumer service by registering it with the consumer manager.\n */\n public start(): void {\n this.consumerManagerService.register(this);\n }\n\n /**\n * Stops the activity consumer service by unregistering it from the consumer manager.\n */\n public stop(): void {\n this.consumerManagerService.unregister(this);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["ConnectionService"],"mappings":"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"}