2018-05-25 07:22:05 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2018-05-25 07:22:05 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2019-08-22 19:16:25 -07:00
|
|
|
import {DOCUMENT, ɵgetDOM as getDOM} from '@angular/common';
|
2018-05-25 07:22:05 -07:00
|
|
|
import {Inject, Injectable} from '@angular/core';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ServerEventManagerPlugin /* extends EventManagerPlugin which is private */ {
|
|
|
|
constructor(@Inject(DOCUMENT) private doc: any) {}
|
|
|
|
|
|
|
|
// Handle all events on the server.
|
2020-04-13 16:40:21 -07:00
|
|
|
supports(eventName: string) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-05-25 07:22:05 -07:00
|
|
|
|
|
|
|
addEventListener(element: HTMLElement, eventName: string, handler: Function): Function {
|
|
|
|
return getDOM().onAndCancel(element, eventName, handler);
|
|
|
|
}
|
|
|
|
|
2021-04-29 22:03:51 +02:00
|
|
|
/** @deprecated No longer being used in Ivy code. To be removed in version 14. */
|
2018-05-25 07:22:05 -07:00
|
|
|
addGlobalEventListener(element: string, eventName: string, handler: Function): Function {
|
|
|
|
const target: HTMLElement = getDOM().getGlobalEventTarget(this.doc, element);
|
|
|
|
if (!target) {
|
|
|
|
throw new Error(`Unsupported event target ${target} for event ${eventName}`);
|
|
|
|
}
|
|
|
|
return this.addEventListener(target, eventName, handler);
|
|
|
|
}
|
|
|
|
}
|