2017-02-16 20:35:14 +00:00
|
|
|
/* @flow */
|
2018-06-08 21:46:58 +00:00
|
|
|
import Platform from '../react/Platform';
|
2017-02-16 21:17:05 +00:00
|
|
|
|
|
|
|
import { ColorPalette } from './components';
|
|
|
|
|
2017-02-16 20:35:14 +00:00
|
|
|
declare type StyleSheet = Object;
|
2018-05-23 08:02:20 +00:00
|
|
|
export type StyleType = StyleSheet | Array<StyleSheet>;
|
2017-02-16 20:35:14 +00:00
|
|
|
|
2019-01-22 10:32:18 +00:00
|
|
|
/**
|
|
|
|
* RegExp pattern for long HEX color format.
|
|
|
|
*/
|
|
|
|
const HEX_LONG_COLOR_FORMAT
|
|
|
|
= /^#([0-9A-F]{2,2})([0-9A-F]{2,2})([0-9A-F]{2,2})$/i;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RegExp pattern for short HEX color format.
|
|
|
|
*/
|
|
|
|
const HEX_SHORT_COLOR_FORMAT
|
|
|
|
= /^#([0-9A-F]{1,1})([0-9A-F]{1,1})([0-9A-F]{1,1})$/i;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RegExp pattern for RGB color format.
|
|
|
|
*/
|
|
|
|
const RGB_COLOR_FORMAT = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/i;
|
|
|
|
|
2019-03-05 17:41:39 +00:00
|
|
|
/**
|
|
|
|
* RegExp pattern for RGBA color format.
|
|
|
|
*/
|
|
|
|
const RGBA_COLOR_FORMAT
|
|
|
|
= /^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*([0-9.]+)\)$/i;
|
|
|
|
|
2017-02-16 20:35:14 +00:00
|
|
|
/**
|
|
|
|
* The list of the well-known style properties which may not be numbers on Web
|
|
|
|
* but must be numbers on React Native.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
const _WELL_KNOWN_NUMBER_PROPERTIES = [ 'height', 'width' ];
|
|
|
|
|
2018-05-23 08:02:20 +00:00
|
|
|
/**
|
|
|
|
* Combines the given 2 styles into a single one.
|
|
|
|
*
|
|
|
|
* @param {StyleType} a - An object or array of styles.
|
|
|
|
* @param {StyleType} b - An object or array of styles.
|
|
|
|
* @private
|
|
|
|
* @returns {StyleType} - The merged styles.
|
|
|
|
*/
|
|
|
|
export function combineStyles(a: StyleType, b: StyleType): StyleType {
|
2019-03-19 15:42:25 +00:00
|
|
|
const result: Array<StyleSheet> = [];
|
2018-05-23 08:02:20 +00:00
|
|
|
|
|
|
|
if (a) {
|
|
|
|
if (Array.isArray(a)) {
|
|
|
|
result.push(...a);
|
|
|
|
} else {
|
|
|
|
result.push(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b) {
|
|
|
|
if (Array.isArray(b)) {
|
|
|
|
result.push(...b);
|
|
|
|
} else {
|
|
|
|
result.push(b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2017-02-16 20:35:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a style sheet using the provided style definitions.
|
|
|
|
*
|
|
|
|
* @param {StyleSheet} styles - A dictionary of named style definitions.
|
|
|
|
* @param {StyleSheet} [overrides={}] - Optional set of additional (often
|
|
|
|
* platform-dependent/specific) style definitions that will override the base
|
|
|
|
* (often platform-independent) styles.
|
|
|
|
* @returns {StyleSheet}
|
|
|
|
*/
|
2018-05-23 08:02:20 +00:00
|
|
|
export function createStyleSheet(
|
|
|
|
styles: StyleSheet, overrides: StyleSheet = {}): StyleSheet {
|
2017-02-16 20:35:14 +00:00
|
|
|
const combinedStyles = {};
|
|
|
|
|
|
|
|
for (const k of Object.keys(styles)) {
|
|
|
|
combinedStyles[k]
|
|
|
|
= _shimStyles({
|
|
|
|
...styles[k],
|
|
|
|
...overrides[k]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return combinedStyles;
|
|
|
|
}
|
|
|
|
|
2017-02-16 21:17:05 +00:00
|
|
|
/**
|
|
|
|
* Works around a bug in react-native or react-native-webrtc on Android which
|
|
|
|
* causes Views overlaying RTCView to be clipped. Even though we (may) display
|
|
|
|
* multiple RTCViews, it is enough to apply the fix only to a View with a
|
|
|
|
* bounding rectangle containing all RTCviews and their overlaying Views.
|
|
|
|
*
|
|
|
|
* @param {StyleSheet} styles - An object which represents a stylesheet.
|
|
|
|
* @public
|
|
|
|
* @returns {StyleSheet}
|
|
|
|
*/
|
|
|
|
export function fixAndroidViewClipping<T: StyleSheet>(styles: T): T {
|
|
|
|
if (Platform.OS === 'android') {
|
|
|
|
styles.borderColor = ColorPalette.appBackground;
|
2017-07-20 13:05:18 +00:00
|
|
|
styles.borderWidth = 1;
|
2017-02-16 21:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return styles;
|
|
|
|
}
|
|
|
|
|
2019-01-22 10:32:18 +00:00
|
|
|
/**
|
|
|
|
* Returns an rgba format of the provided color if it's in hex or rgb format.
|
|
|
|
*
|
|
|
|
* NOTE: The function will return the same color if it's not in one of those
|
|
|
|
* two formats (e.g. 'white').
|
|
|
|
*
|
|
|
|
* @param {string} color - The string representation of the color in rgb or hex
|
|
|
|
* format.
|
|
|
|
* @param {number} alpha - The alpha value to apply.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getRGBAFormat(color: string, alpha: number): string {
|
|
|
|
let match = color.match(HEX_LONG_COLOR_FORMAT);
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
return `#${match[1]}${match[2]}${match[3]}${_getAlphaInHex(alpha)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
match = color.match(HEX_SHORT_COLOR_FORMAT);
|
|
|
|
if (match) {
|
|
|
|
return `#${match[1]}${match[1]}${match[2]}${match[2]}${match[3]}${
|
|
|
|
match[3]}${_getAlphaInHex(alpha)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
match = color.match(RGB_COLOR_FORMAT);
|
|
|
|
if (match) {
|
|
|
|
return `rgba(${match[1]}, ${match[2]}, ${match[3]}, ${alpha})`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2019-03-05 17:41:39 +00:00
|
|
|
/**
|
|
|
|
* Decides if a color is light or dark based on the ITU-R BT.709 and W3C
|
|
|
|
* recommendations.
|
|
|
|
*
|
|
|
|
* NOTE: Please see https://www.w3.org/TR/WCAG20/#relativeluminancedef.
|
|
|
|
*
|
|
|
|
* @param {string} color - The color in rgb, rgba or hex format.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export function isDarkColor(color: string): boolean {
|
|
|
|
const rgb = _getRGBObjectFormat(color);
|
|
|
|
|
|
|
|
return ((_getColorLuminance(rgb.r) * 0.2126)
|
|
|
|
+ (_getColorLuminance(rgb.g) * 0.7152)
|
|
|
|
+ (_getColorLuminance(rgb.b) * 0.0722)) <= 0.179;
|
|
|
|
}
|
|
|
|
|
2019-01-22 10:32:18 +00:00
|
|
|
/**
|
|
|
|
* Converts an [0..1] alpha value into HEX.
|
|
|
|
*
|
|
|
|
* @param {number} alpha - The alpha value to convert.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
function _getAlphaInHex(alpha: number): string {
|
|
|
|
return Number(Math.round(255 * alpha)).toString(16)
|
|
|
|
.padStart(2, '0');
|
|
|
|
}
|
|
|
|
|
2019-03-05 17:41:39 +00:00
|
|
|
/**
|
|
|
|
* Calculated the color luminance component for an individual color channel.
|
|
|
|
*
|
|
|
|
* NOTE: Please see https://www.w3.org/TR/WCAG20/#relativeluminancedef.
|
|
|
|
*
|
|
|
|
* @param {number} c - The color which we need the individual luminance
|
|
|
|
* for.
|
|
|
|
* @returns {number}
|
|
|
|
*/
|
|
|
|
function _getColorLuminance(c: number): number {
|
|
|
|
return c <= 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses a color string into an object containing the RGB values as numbers.
|
|
|
|
*
|
|
|
|
* NOTE: Object properties are not alpha-sorted for sanity.
|
|
|
|
*
|
|
|
|
* @param {string} color - The color to convert.
|
|
|
|
* @returns {{
|
|
|
|
* r: number,
|
|
|
|
* g: number,
|
|
|
|
* b: number
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _getRGBObjectFormat(color: string): {r: number, g: number, b: number} {
|
|
|
|
let match = color.match(HEX_LONG_COLOR_FORMAT);
|
|
|
|
|
|
|
|
if (match) {
|
|
|
|
return {
|
|
|
|
r: parseInt(match[1], 16) / 255.0,
|
|
|
|
g: parseInt(match[2], 16) / 255.0,
|
|
|
|
b: parseInt(match[3], 16) / 255.0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
match = color.match(HEX_SHORT_COLOR_FORMAT);
|
|
|
|
if (match) {
|
|
|
|
return {
|
|
|
|
r: parseInt(`${match[1]}${match[1]}`, 16) / 255.0,
|
|
|
|
g: parseInt(`${match[2]}${match[2]}`, 16) / 255.0,
|
|
|
|
b: parseInt(`${match[3]}${match[3]}`, 16) / 255.0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
match = color.match(RGB_COLOR_FORMAT) || color.match(RGBA_COLOR_FORMAT);
|
|
|
|
if (match) {
|
|
|
|
return {
|
|
|
|
r: parseInt(match[1], 10) / 255.0,
|
|
|
|
g: parseInt(match[2], 10) / 255.0,
|
|
|
|
b: parseInt(match[3], 10) / 255.0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
r: 0,
|
|
|
|
g: 0,
|
|
|
|
b: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-16 20:35:14 +00:00
|
|
|
/**
|
|
|
|
* Shims style properties to work correctly on native. Allows us to minimize the
|
|
|
|
* number of style declarations that need to be set or overridden for specific
|
|
|
|
* platforms.
|
|
|
|
*
|
|
|
|
* @param {StyleSheet} styles - An object which represents a stylesheet.
|
|
|
|
* @private
|
|
|
|
* @returns {StyleSheet}
|
|
|
|
*/
|
|
|
|
function _shimStyles<T: StyleSheet>(styles: T): T {
|
|
|
|
// Certain style properties may not be numbers on Web but must be numbers on
|
|
|
|
// React Native. For example, height and width may be expressed in percent
|
|
|
|
// on Web but React Native will not understand them and we will get errors
|
|
|
|
// (at least during development). Convert such well-known properties to
|
|
|
|
// numbers if possible; otherwise, remove them to avoid runtime errors.
|
|
|
|
for (const k of _WELL_KNOWN_NUMBER_PROPERTIES) {
|
|
|
|
const v = styles[k];
|
|
|
|
const typeofV = typeof v;
|
|
|
|
|
|
|
|
if (typeofV !== 'undefined' && typeofV !== 'number') {
|
|
|
|
const numberV = Number(v);
|
|
|
|
|
|
|
|
if (Number.isNaN(numberV)) {
|
|
|
|
delete styles[k];
|
|
|
|
} else {
|
|
|
|
styles[k] = numberV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return styles;
|
|
|
|
}
|