2018-05-25 14:22:05 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2018-05-25 14:22:05 +00: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-23 02:16:25 +00:00
|
|
|
import {DOCUMENT, ɵgetDOM as getDOM} from '@angular/common';
|
2018-05-25 14:22:05 +00: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 23:40:21 +00:00
|
|
|
supports(eventName: string) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2018-05-25 14:22:05 +00:00
|
|
|
|
|
|
|
|
addEventListener(element: HTMLElement, eventName: string, handler: Function): Function {
|
|
|
|
|
return getDOM().onAndCancel(element, eventName, handler);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-29 20:03:51 +00:00
|
|
|
/** @deprecated No longer being used in Ivy code. To be removed in version 14. */
|
2018-05-25 14:22:05 +00: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);
|
|
|
|
|
}
|
|
|
|
|
}
|