2018-06-22 07:28:40 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-06-22 07:28:40 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
2018-11-10 14:19:08 -08:00
|
|
|
#include <react/components/image/ImageProps.h>
|
|
|
|
#include <react/components/image/conversions.h>
|
|
|
|
#include <react/core/propsConversions.h>
|
2018-06-22 07:28:40 -07:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
2018-10-05 11:01:08 -07:00
|
|
|
ImageProps::ImageProps(const ImageProps &sourceProps, const RawProps &rawProps)
|
|
|
|
: ViewProps(sourceProps, rawProps),
|
|
|
|
sources(convertRawProp(rawProps, "source", sourceProps.sources)),
|
|
|
|
defaultSources(convertRawProp(
|
|
|
|
rawProps,
|
|
|
|
"defaultSource",
|
|
|
|
sourceProps.defaultSources)),
|
|
|
|
resizeMode(convertRawProp(
|
|
|
|
rawProps,
|
|
|
|
"resizeMode",
|
|
|
|
sourceProps.resizeMode,
|
|
|
|
ImageResizeMode::Stretch)),
|
|
|
|
blurRadius(
|
|
|
|
convertRawProp(rawProps, "blurRadius", sourceProps.blurRadius)),
|
|
|
|
capInsets(convertRawProp(rawProps, "capInsets", sourceProps.capInsets)),
|
|
|
|
tintColor(convertRawProp(rawProps, "tintColor", sourceProps.tintColor)) {}
|
2018-06-22 07:28:40 -07:00
|
|
|
|
|
|
|
} // namespace react
|
|
|
|
} // namespace facebook
|