-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
288 additions
and
272 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/** | ||
* @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 | ||
*/ | ||
|
||
/** Cached result Set of input types support by the current browser. */ | ||
let supportedInputTypes: Set<string>; | ||
|
||
/** Types of `<input>` that *might* be supported. */ | ||
const candidateInputTypes = [ | ||
// `color` must come first. Chrome 56 shows a warning if we change the type to `color` after | ||
// first changing it to something else: | ||
// The specified value "" does not conform to the required format. | ||
// The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers. | ||
'color', | ||
'button', | ||
'checkbox', | ||
'date', | ||
'datetime-local', | ||
'email', | ||
'file', | ||
'hidden', | ||
'image', | ||
'month', | ||
'number', | ||
'password', | ||
'radio', | ||
'range', | ||
'reset', | ||
'search', | ||
'submit', | ||
'tel', | ||
'text', | ||
'time', | ||
'url', | ||
'week', | ||
]; | ||
|
||
/** @returns The input types supported by this browser. */ | ||
export function getSupportedInputTypes(): Set<string> { | ||
// Result is cached. | ||
if (supportedInputTypes) { | ||
return supportedInputTypes; | ||
} | ||
|
||
// We can't check if an input type is not supported until we're on the browser, so say that | ||
// everything is supported when not on the browser. We don't use `Platform` here since it's | ||
// just a helper function and can't inject it. | ||
if (typeof document !== 'object' || !document) { | ||
supportedInputTypes = new Set(candidateInputTypes); | ||
return supportedInputTypes; | ||
} | ||
|
||
let featureTestInput = document.createElement('input'); | ||
supportedInputTypes = new Set(candidateInputTypes.filter(value => { | ||
featureTestInput.setAttribute('type', value); | ||
return featureTestInput.type === value; | ||
})); | ||
|
||
return supportedInputTypes; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* @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 | ||
*/ | ||
|
||
/** Cached result of whether the user's browser supports passive event listeners. */ | ||
let supportsPassiveEvents: boolean; | ||
|
||
/** | ||
* Checks whether the user's browser supports passive event listeners. | ||
* See: https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md | ||
*/ | ||
export function supportsPassiveEventListeners(): boolean { | ||
if (supportsPassiveEvents == null && typeof window !== 'undefined') { | ||
try { | ||
window.addEventListener('test', null!, Object.defineProperty({}, 'passive', { | ||
get: () => supportsPassiveEvents = true | ||
})); | ||
} finally { | ||
supportsPassiveEvents = supportsPassiveEvents || false; | ||
} | ||
} | ||
|
||
return supportsPassiveEvents; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/** | ||
* @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 | ||
*/ | ||
|
||
/** The possible ways the browser may handle the horizontal scroll axis in RTL languages. */ | ||
export enum RtlScrollAxisType { | ||
/** | ||
* scrollLeft is 0 when scrolled all the way left and (scrollWidth - clientWidth) when scrolled | ||
* all the way right. | ||
*/ | ||
NORMAL, | ||
/** | ||
* scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and 0 when scrolled | ||
* all the way right. | ||
*/ | ||
NEGATED, | ||
/** | ||
* scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and 0 when scrolled | ||
* all the way right. | ||
*/ | ||
INVERTED | ||
} | ||
|
||
/** Cached result of the way the browser handles the horizontal scroll axis in RTL mode. */ | ||
let rtlScrollAxisType: RtlScrollAxisType; | ||
|
||
/** Check whether the browser supports scroll behaviors. */ | ||
export function supportsScrollBehavior(): boolean { | ||
return !!(typeof document == 'object' && 'scrollBehavior' in document.documentElement.style); | ||
} | ||
|
||
/** | ||
* Checks the type of RTL scroll axis used by this browser. As of time of writing, Chrome is NORMAL, | ||
* Firefox & Safari are NEGATED, and IE & Edge are INVERTED. | ||
*/ | ||
export function getRtlScrollAxisType(): RtlScrollAxisType { | ||
// We can't check unless we're on the browser. Just assume 'normal' if we're not. | ||
if (typeof document !== 'object' || !document) { | ||
return RtlScrollAxisType.NORMAL; | ||
} | ||
|
||
if (!rtlScrollAxisType) { | ||
// Create a 1px wide scrolling container and a 2px wide content element. | ||
const scrollContainer = document.createElement('div'); | ||
const containerStyle = scrollContainer.style; | ||
scrollContainer.dir = 'rtl'; | ||
containerStyle.height = '1px'; | ||
containerStyle.width = '1px'; | ||
containerStyle.overflow = 'auto'; | ||
containerStyle.visibility = 'hidden'; | ||
containerStyle.pointerEvents = 'none'; | ||
containerStyle.position = 'absolute'; | ||
|
||
const content = document.createElement('div'); | ||
const contentStyle = content.style; | ||
contentStyle.width = '2px'; | ||
contentStyle.height = '1px'; | ||
|
||
scrollContainer.appendChild(content); | ||
document.body.appendChild(scrollContainer); | ||
|
||
rtlScrollAxisType = RtlScrollAxisType.NORMAL; | ||
|
||
// The viewport starts scrolled all the way to the right in RTL mode. If we are in a NORMAL | ||
// browser this would mean that the scrollLeft should be 1. If it's zero instead we know we're | ||
// dealing with one of the other two types of browsers. | ||
if (scrollContainer.scrollLeft === 0) { | ||
// In a NEGATED browser the scrollLeft is always somewhere in [-maxScrollAmount, 0]. For an | ||
// INVERTED browser it is always somewhere in [0, maxScrollAmount]. We can determine which by | ||
// setting to the scrollLeft to 1. This is past the max for a NEGATED browser, so it will | ||
// return 0 when we read it again. | ||
scrollContainer.scrollLeft = 1; | ||
rtlScrollAxisType = | ||
scrollContainer.scrollLeft === 0 ? RtlScrollAxisType.NEGATED : RtlScrollAxisType.INVERTED; | ||
} | ||
|
||
scrollContainer.parentNode!.removeChild(scrollContainer); | ||
} | ||
return rtlScrollAxisType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.