mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The exposed type of the `EVENT_MANAGER_PLUGINS` token should be in the public API. PR Close #49969
27 lines
801 B
TypeScript
27 lines
801 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
import {DOCUMENT, ɵgetDOM as getDOM} from '@angular/common';
|
|
import {Inject, Injectable} from '@angular/core';
|
|
import {EventManagerPlugin} from '@angular/platform-browser';
|
|
|
|
@Injectable()
|
|
export class ServerEventManagerPlugin extends EventManagerPlugin {
|
|
constructor(@Inject(DOCUMENT) private doc: any) {
|
|
super(doc);
|
|
}
|
|
|
|
// Handle all events on the server.
|
|
override supports(eventName: string) {
|
|
return true;
|
|
}
|
|
|
|
override addEventListener(element: HTMLElement, eventName: string, handler: Function): Function {
|
|
return getDOM().onAndCancel(element, eventName, handler);
|
|
}
|
|
}
|