function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } /** * 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. * * */ import * as React from 'react'; import { forwardRef } from 'react'; import Image from '../Image'; import StyleSheet from '../StyleSheet'; import View from '../View'; var emptyObject = {}; /** * Very simple drop-in replacement for which supports nesting views. */ var ImageBackground = forwardRef(function (props, forwardedRef) { var children = props.children, _props$style = props.style, style = _props$style === void 0 ? emptyObject : _props$style, imageStyle = props.imageStyle, imageRef = props.imageRef, rest = _objectWithoutPropertiesLoose(props, ["children", "style", "imageStyle", "imageRef"]); var _StyleSheet$flatten = StyleSheet.flatten(style), height = _StyleSheet$flatten.height, width = _StyleSheet$flatten.width; return React.createElement(View, { ref: forwardedRef, style: style }, React.createElement(Image, _extends({}, rest, { ref: imageRef, style: [StyleSheet.absoluteFill, { // Temporary Workaround: // Current (imperfect yet) implementation of overwrites width and height styles // (which is not quite correct), and these styles conflict with explicitly set styles // of and with our internal layout model here. // So, we have to proxy/reapply these styles explicitly for actual component. // This workaround should be removed after implementing proper support of // intrinsic content size of the . width: width, height: height, zIndex: -1 }, imageStyle] })), children); }); ImageBackground.displayName = 'ImageBackground'; export default ImageBackground;