123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /*
- * 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.
- */
- #pragma once
- #include <better/map.h>
- #include <folly/dynamic.h>
- #include <react/graphics/conversions.h>
- #include <react/imagemanager/primitives.h>
- namespace facebook {
- namespace react {
- inline void fromRawValue(const RawValue &value, ImageSource &result) {
- if (value.hasType<std::string>()) {
- result = {
- /* .type = */ ImageSource::Type::Remote,
- /* .uri = */ (std::string)value,
- };
- return;
- }
- if (value.hasType<better::map<std::string, RawValue>>()) {
- auto items = (better::map<std::string, RawValue>)value;
- result = {};
- result.type = ImageSource::Type::Remote;
- if (items.find("__packager_asset") != items.end()) {
- result.type = ImageSource::Type::Local;
- }
- if (items.find("width") != items.end() &&
- items.find("height") != items.end() &&
- // The following checks have to be removed after codegen is shipped.
- // See T45151459.
- items.at("width").hasType<Float>() &&
- items.at("height").hasType<Float>()) {
- result.size = {(Float)items.at("width"), (Float)items.at("height")};
- }
- if (items.find("scale") != items.end() &&
- // The following checks have to be removed after codegen is shipped.
- // See T45151459.
- items.at("scale").hasType<Float>()) {
- result.scale = (Float)items.at("scale");
- } else {
- result.scale = items.find("deprecated") != items.end() ? 0.0 : 1.0;
- }
- if (items.find("url") != items.end() &&
- // The following should be removed after codegen is shipped.
- // See T45151459.
- items.at("url").hasType<std::string>()) {
- result.uri = (std::string)items.at("url");
- }
- if (items.find("uri") != items.end() &&
- // The following should be removed after codegen is shipped.
- // See T45151459.
- items.at("uri").hasType<std::string>()) {
- result.uri = (std::string)items.at("uri");
- }
- if (items.find("bundle") != items.end() &&
- // The following should be removed after codegen is shipped.
- // See T45151459.
- items.at("bundle").hasType<std::string>()) {
- result.bundle = (std::string)items.at("bundle");
- result.type = ImageSource::Type::Local;
- }
- return;
- }
- // The following should be removed after codegen is shipped.
- // See T45151459.
- result = {};
- result.type = ImageSource::Type::Invalid;
- }
- inline std::string toString(const ImageSource &value) {
- return "{uri: " + value.uri + "}";
- }
- inline void fromRawValue(const RawValue &value, ImageResizeMode &result) {
- assert(value.hasType<std::string>());
- auto stringValue = (std::string)value;
- if (stringValue == "cover") {
- result = ImageResizeMode::Cover;
- return;
- }
- if (stringValue == "contain") {
- result = ImageResizeMode::Contain;
- return;
- }
- if (stringValue == "stretch") {
- result = ImageResizeMode::Stretch;
- return;
- }
- if (stringValue == "center") {
- result = ImageResizeMode::Center;
- return;
- }
- if (stringValue == "repeat") {
- result = ImageResizeMode::Repeat;
- return;
- }
- abort();
- }
- inline std::string toString(const ImageResizeMode &value) {
- switch (value) {
- case ImageResizeMode::Cover:
- return "cover";
- case ImageResizeMode::Contain:
- return "contain";
- case ImageResizeMode::Stretch:
- return "stretch";
- case ImageResizeMode::Center:
- return "center";
- case ImageResizeMode::Repeat:
- return "repeat";
- }
- }
- } // namespace react
- } // namespace facebook
|