| 
									
										
										
										
											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-08-22 17:37:48 -07:00
										 |  |  | import {NgZone} from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-03 16:58:27 -07:00
										 |  |  | import {global} from './facade/lang'; | 
					
						
							| 
									
										
										
										
											2016-08-30 18:07:40 -07:00
										 |  |  | import {getDOM} from './private_import_platform-browser'; | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-27 14:55:58 -08:00
										 |  |  | export let browserDetection: BrowserDetection; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  | export class BrowserDetection { | 
					
						
							| 
									
										
										
										
											2016-05-01 22:09:58 -07:00
										 |  |  |   private _overrideUa: string; | 
					
						
							| 
									
										
										
										
											2016-05-01 22:50:37 -07:00
										 |  |  |   private get _ua(): string { | 
					
						
							| 
									
										
										
										
											2016-11-03 16:58:27 -07:00
										 |  |  |     if (typeof this._overrideUa === 'string') { | 
					
						
							| 
									
										
										
										
											2016-05-01 22:09:58 -07:00
										 |  |  |       return this._overrideUa; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-03 16:58:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return getDOM() ? getDOM().getUserAgent() : ''; | 
					
						
							| 
									
										
										
										
											2016-05-01 22:09:58 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-15 16:38:27 -08:00
										 |  |  |   static setup() { browserDetection = new BrowserDetection(null); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:50:37 -07:00
										 |  |  |   constructor(ua: string) { this._overrideUa = ua; } | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   get isFirefox(): boolean { return this._ua.indexOf('Firefox') > -1; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   get isAndroid(): boolean { | 
					
						
							|  |  |  |     return this._ua.indexOf('Mozilla/5.0') > -1 && this._ua.indexOf('Android') > -1 && | 
					
						
							| 
									
										
										
										
											2016-07-29 19:05:12 +02:00
										 |  |  |         this._ua.indexOf('AppleWebKit') > -1 && this._ua.indexOf('Chrome') == -1 && | 
					
						
							|  |  |  |         this._ua.indexOf('IEMobile') == -1; | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   get isEdge(): boolean { return this._ua.indexOf('Edge') > -1; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   get isIE(): boolean { return this._ua.indexOf('Trident') > -1; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   get isWebkit(): boolean { | 
					
						
							| 
									
										
										
										
											2016-07-29 19:05:12 +02:00
										 |  |  |     return this._ua.indexOf('AppleWebKit') > -1 && this._ua.indexOf('Edge') == -1 && | 
					
						
							|  |  |  |         this._ua.indexOf('IEMobile') == -1; | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 16:41:11 +02:00
										 |  |  |   get isIOS7(): boolean { | 
					
						
							| 
									
										
										
										
											2016-07-29 19:05:12 +02:00
										 |  |  |     return (this._ua.indexOf('iPhone OS 7') > -1 || this._ua.indexOf('iPad OS 7') > -1) && | 
					
						
							|  |  |  |         this._ua.indexOf('IEMobile') == -1; | 
					
						
							| 
									
										
										
										
											2015-09-09 16:41:11 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   get isSlow(): boolean { return this.isAndroid || this.isIE || this.isIOS7; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-01 00:55:13 +02:00
										 |  |  |   // The Intl API is only natively supported in Chrome, Firefox, IE11 and Edge.
 | 
					
						
							|  |  |  |   // This detector is needed in tests to make the difference between:
 | 
					
						
							|  |  |  |   // 1) IE11/Edge: they have a native Intl API, but with some discrepancies
 | 
					
						
							|  |  |  |   // 2) IE9/IE10: they use the polyfill, and so no discrepancies
 | 
					
						
							|  |  |  |   get supportsNativeIntlApi(): boolean { | 
					
						
							|  |  |  |     return !!(<any>global).Intl && (<any>global).Intl !== (<any>global).IntlPolyfill; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-05-10 17:47:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   get isChromeDesktop(): boolean { | 
					
						
							| 
									
										
										
										
											2016-05-13 13:22:29 -07:00
										 |  |  |     return this._ua.indexOf('Chrome') > -1 && this._ua.indexOf('Mobile Safari') == -1 && | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |         this._ua.indexOf('Edge') == -1; | 
					
						
							| 
									
										
										
										
											2016-05-10 17:47:17 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-09-01 00:55:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // "Old Chrome" means Chrome 3X, where there are some discrepancies in the Intl API.
 | 
					
						
							|  |  |  |   // Android 4.4 and 5.X have such browsers by default (respectively 30 and 39).
 | 
					
						
							|  |  |  |   get isOldChrome(): boolean { | 
					
						
							|  |  |  |     return this._ua.indexOf('Chrome') > -1 && this._ua.indexOf('Chrome/3') > -1 && | 
					
						
							|  |  |  |         this._ua.indexOf('Edge') == -1; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2015-08-24 15:41:36 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-26 12:25:55 +01:00
										 |  |  | BrowserDetection.setup(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | export function dispatchEvent( | 
					
						
							|  |  |  |     element: any /** TODO #9100 */, eventType: any /** TODO #9100 */): void { | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |   getDOM().dispatchEvent(element, getDOM().createEvent(eventType)); | 
					
						
							| 
									
										
										
										
											2015-02-03 07:27:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 20:03:00 -07:00
										 |  |  | export function el(html: string): HTMLElement { | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |   return <HTMLElement>getDOM().firstChild(getDOM().content(getDOM().createTemplate(html))); | 
					
						
							| 
									
										
										
										
											2015-05-26 13:57:13 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-27 10:22:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function normalizeCSS(css: string): string { | 
					
						
							| 
									
										
										
										
											2016-10-06 15:10:27 -07:00
										 |  |  |   return css.replace(/\s+/g, ' ') | 
					
						
							|  |  |  |       .replace(/:\s/g, ':') | 
					
						
							|  |  |  |       .replace(/'/g, '"') | 
					
						
							|  |  |  |       .replace(/ }/g, '}') | 
					
						
							|  |  |  |       .replace(/url\((\"|\s)(.+)(\"|\s)\)(\s*)/g, (...match: string[]) => `url("${match[2]}")`) | 
					
						
							|  |  |  |       .replace(/\[(.+)=([^"\]]+)\]/g, (...match: string[]) => `[${match[1]}="${match[2]}"]`); | 
					
						
							| 
									
										
										
										
											2015-05-27 10:22:30 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  | const _singleTagWhitelist = ['br', 'hr', 'input']; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:45:15 -07:00
										 |  |  | export function stringifyElement(el: any /** TODO #9100 */): string { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   let result = ''; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |   if (getDOM().isElementNode(el)) { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const tagName = getDOM().tagName(el).toLowerCase(); | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Opening tag
 | 
					
						
							|  |  |  |     result += `<${tagName}`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Attributes in an ordered way
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const attributeMap = getDOM().attributeMap(el); | 
					
						
							|  |  |  |     const keys: string[] = Array.from(attributeMap.keys()).sort(); | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |     for (let i = 0; i < keys.length; i++) { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |       const key = keys[i]; | 
					
						
							|  |  |  |       const attValue = attributeMap.get(key); | 
					
						
							| 
									
										
										
										
											2016-10-19 13:42:39 -07:00
										 |  |  |       if (typeof attValue !== 'string') { | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |         result += ` ${key}`; | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         result += ` ${key}="${attValue}"`; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     result += '>'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Children
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const childrenRoot = getDOM().templateAwareRoot(el); | 
					
						
							|  |  |  |     const children = childrenRoot ? getDOM().childNodes(childrenRoot) : []; | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |     for (let j = 0; j < children.length; j++) { | 
					
						
							|  |  |  |       result += stringifyElement(children[j]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Closing tag
 | 
					
						
							| 
									
										
										
										
											2016-10-21 15:14:44 -07:00
										 |  |  |     if (_singleTagWhitelist.indexOf(tagName) == -1) { | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |       result += `</${tagName}>`; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |   } else if (getDOM().isCommentNode(el)) { | 
					
						
							|  |  |  |     result += `<!--${getDOM().nodeValue(el)}-->`; | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |   } else { | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |     result += getDOM().getText(el); | 
					
						
							| 
									
										
										
										
											2015-05-22 17:47:13 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return result; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-22 17:37:48 -07:00
										 |  |  | export function createNgZone(): NgZone { | 
					
						
							|  |  |  |   return new NgZone({enableLongStackTrace: true}); | 
					
						
							| 
									
										
										
										
											2016-12-27 14:55:58 -08:00
										 |  |  | } |