UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

62 lines (47 loc) 1.72 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow strict-local */ 'use strict'; const Platform = require('../Utilities/Platform'); const normalizeColor = require('./normalizeColor'); import type {ColorValue} from './StyleSheet'; import type {NativeColorValue} from './PlatformColorValueTypes'; export type ProcessedColorValue = number | NativeColorValue; /* eslint no-bitwise: 0 */ function processColor(color?: ?(number | ColorValue)): ?ProcessedColorValue { if (color === undefined || color === null) { return color; } let normalizedColor = normalizeColor(color); if (normalizedColor === null || normalizedColor === undefined) { return undefined; } if (typeof normalizedColor === 'object') { const processColorObject = require('./PlatformColorValueTypes') .processColorObject; const processedColorObj = processColorObject(normalizedColor); if (processedColorObj != null) { return processedColorObj; } } if (typeof normalizedColor !== 'number') { return null; } // Converts 0xrrggbbaa into 0xaarrggbb normalizedColor = ((normalizedColor << 24) | (normalizedColor >>> 8)) >>> 0; if (Platform.OS === 'android') { // Android use 32 bit *signed* integer to represent the color // We utilize the fact that bitwise operations in JS also operates on // signed 32 bit integers, so that we can use those to convert from // *unsigned* to *signed* 32bit int that way. normalizedColor = normalizedColor | 0x0; } return normalizedColor; } module.exports = processColor;