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-09-27 17:30:26 -07:00
|
|
|
import {isPresent} from '../facade/lang';
|
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 {
|
2015-09-18 00:49:56 +02:00
|
|
|
private _animationPrefix: string = null;
|
|
|
|
private _transitionEnd: string = null;
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
try {
|
2016-09-27 17:30:26 -07:00
|
|
|
const element = this.createElement('div', this.defaultDoc());
|
2015-09-18 00:49:56 +02:00
|
|
|
if (isPresent(this.getStyle(element, 'animationName'))) {
|
|
|
|
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++) {
|
2015-09-18 00:49:56 +02:00
|
|
|
if (isPresent(this.getStyle(element, domPrefixes[i] + 'AnimationName'))) {
|
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) => {
|
2015-09-18 00:49:56 +02:00
|
|
|
if (isPresent(this.getStyle(element, key))) {
|
2016-09-27 17:30:26 -07:00
|
|
|
this._transitionEnd = transEndEventNames[key];
|
2015-09-18 00:49:56 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
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 {
|
2016-09-27 17:30:26 -07:00
|
|
|
return typeof(<any>this.defaultDoc().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 {
|
|
|
|
return isPresent(this._animationPrefix) && isPresent(this._transitionEnd);
|
|
|
|
}
|
2015-03-09 11:35:46 +01:00
|
|
|
}
|