2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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
|
|
|
|
*/
|
|
|
|
|
2016-04-28 17:50:03 -07:00
|
|
|
import {DomAdapter} from '../dom/dom_adapter';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
2015-10-14 09:41:15 -07:00
|
|
|
|
2015-03-09 11:35:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides DOM operations in any browser environment.
|
2016-08-17 13:42:18 -07:00
|
|
|
*
|
|
|
|
* @security Tread carefully! Interacting with the DOM directly is dangerous and
|
|
|
|
* can introduce XSS risks.
|
2015-03-09 11:35:46 +01:00
|
|
|
*/
|
2015-09-25 14:48:17 -07:00
|
|
|
export abstract class GenericBrowserDomAdapter extends DomAdapter {
|
2017-03-24 09:59:41 -07:00
|
|
|
private _animationPrefix: string|null = null;
|
|
|
|
private _transitionEnd: string|null = null;
|
2015-09-18 00:49:56 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
try {
|
2017-02-14 16:14:40 -08:00
|
|
|
const element = this.createElement('div', document);
|
2017-03-02 09:37:01 -08:00
|
|
|
if (this.getStyle(element, 'animationName') != null) {
|
2015-09-18 00:49:56 +02:00
|
|
|
this._animationPrefix = '';
|
|
|
|
} else {
|
2016-09-27 17:30:26 -07:00
|
|
|
const domPrefixes = ['Webkit', 'Moz', 'O', 'ms'];
|
|
|
|
|
|
|
|
for (let i = 0; i < domPrefixes.length; i++) {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (this.getStyle(element, domPrefixes[i] + 'AnimationName') != null) {
|
2015-10-31 13:04:26 -07:00
|
|
|
this._animationPrefix = '-' + domPrefixes[i].toLowerCase() + '-';
|
2015-09-18 00:49:56 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-27 17:30:26 -07:00
|
|
|
|
|
|
|
const transEndEventNames: {[key: string]: string} = {
|
2015-09-18 00:49:56 +02:00
|
|
|
WebkitTransition: 'webkitTransitionEnd',
|
|
|
|
MozTransition: 'transitionend',
|
|
|
|
OTransition: 'oTransitionEnd otransitionend',
|
|
|
|
transition: 'transitionend'
|
|
|
|
};
|
2016-09-27 17:30:26 -07:00
|
|
|
|
|
|
|
Object.keys(transEndEventNames).forEach((key: string) => {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (this.getStyle(element, key) != null) {
|
2016-09-27 17:30:26 -07:00
|
|
|
this._transitionEnd = transEndEventNames[key];
|
2015-09-18 00:49:56 +02:00
|
|
|
}
|
|
|
|
});
|
2018-08-14 15:34:51 +02:00
|
|
|
} catch {
|
2015-09-18 00:49:56 +02:00
|
|
|
this._animationPrefix = null;
|
|
|
|
this._transitionEnd = null;
|
|
|
|
}
|
|
|
|
}
|
2015-10-14 09:41:15 -07:00
|
|
|
|
2015-08-28 11:29:19 -07:00
|
|
|
getDistributedNodes(el: HTMLElement): Node[] { return (<any>el).getDistributedNodes(); }
|
2015-07-07 20:03:00 -07:00
|
|
|
resolveAndSetHref(el: HTMLAnchorElement, baseUrl: string, href: string) {
|
2015-03-09 11:35:46 +01:00
|
|
|
el.href = href == null ? baseUrl : baseUrl + '/../' + href;
|
|
|
|
}
|
2015-05-12 11:19:47 -07:00
|
|
|
supportsDOMEvents(): boolean { return true; }
|
2015-06-26 11:10:52 -07:00
|
|
|
supportsNativeShadowDOM(): boolean {
|
2017-02-14 16:14:40 -08:00
|
|
|
return typeof(<any>document.body).createShadowRoot === 'function';
|
2015-09-18 00:49:56 +02:00
|
|
|
}
|
2016-09-27 17:30:26 -07:00
|
|
|
getAnimationPrefix(): string { return this._animationPrefix ? this._animationPrefix : ''; }
|
|
|
|
getTransitionEnd(): string { return this._transitionEnd ? this._transitionEnd : ''; }
|
2015-09-18 00:49:56 +02:00
|
|
|
supportsAnimation(): boolean {
|
2017-03-02 09:37:01 -08:00
|
|
|
return this._animationPrefix != null && this._transitionEnd != null;
|
2015-09-18 00:49:56 +02:00
|
|
|
}
|
2015-03-09 11:35:46 +01:00
|
|
|
}
|