///
/// HybridBlurViewComponent.hpp
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

#pragma once

#include <optional>
#include <NitroModules/NitroDefines.hpp>
#include <NitroModules/NitroHash.hpp>
#include <NitroModules/CachedProp.hpp>
#include <react/renderer/core/ConcreteComponentDescriptor.h>
#include <react/renderer/core/PropsParserContext.h>
#include <react/renderer/components/view/ConcreteViewShadowNode.h>
#include <react/renderer/components/view/ViewProps.h>

#include <optional>
#include <string>
#include <memory>
#include "HybridBlurViewSpec.hpp"
#include <functional>

namespace margelo::nitro::qmblurview::views {

  using namespace facebook;

  /**
   * The name of the actual native View.
   */
  extern const char HybridBlurViewComponentName[];

  /**
   * Props for the "BlurView" View.
   */
  class HybridBlurViewProps final: public react::ViewProps {
  public:
    HybridBlurViewProps() = default;
    HybridBlurViewProps(const HybridBlurViewProps&);
    HybridBlurViewProps(const react::PropsParserContext& context,
                        const HybridBlurViewProps& sourceProps,
                        const react::RawProps& rawProps);

  public:
    CachedProp<std::optional<double>> blurRadius;
    CachedProp<std::optional<double>> cornerRadius;
    CachedProp<std::optional<double>> blurRounds;
    CachedProp<std::optional<std::string>> overlayColor;
    CachedProp<std::optional<double>> downsampleFactor;
    CachedProp<std::optional<std::function<void(const std::shared_ptr<HybridBlurViewSpec>& /* ref */)>>> hybridRef;

  private:
    static bool filterObjectKeys(const std::string& propName);
  };

  /**
   * State for the "BlurView" View.
   */
  class HybridBlurViewState final {
  public:
    HybridBlurViewState() = default;

  public:
    void setProps(const HybridBlurViewProps& props) { _props.emplace(props); }
    const std::optional<HybridBlurViewProps>& getProps() const { return _props; }

  public:
#ifdef ANDROID
  HybridBlurViewState(const HybridBlurViewState& /* previousState */, folly::dynamic /* data */) {}
  folly::dynamic getDynamic() const {
    throw std::runtime_error("HybridBlurViewState does not support folly!");
  }
  react::MapBuffer getMapBuffer() const {
    throw std::runtime_error("HybridBlurViewState does not support MapBuffer!");
  };
#endif

  private:
    std::optional<HybridBlurViewProps> _props;
  };

  /**
   * The Shadow Node for the "BlurView" View.
   */
  using HybridBlurViewShadowNode = react::ConcreteViewShadowNode<HybridBlurViewComponentName /* "HybridBlurView" */,
                                                                 HybridBlurViewProps /* custom props */,
                                                                 react::ViewEventEmitter /* default */,
                                                                 HybridBlurViewState /* custom state */>;

  /**
   * The Component Descriptor for the "BlurView" View.
   */
  class HybridBlurViewComponentDescriptor final: public react::ConcreteComponentDescriptor<HybridBlurViewShadowNode> {
  public:
    HybridBlurViewComponentDescriptor(const react::ComponentDescriptorParameters& parameters);

  public:
    /**
     * A faster path for cloning props - reuses the caching logic from `HybridBlurViewProps`.
     */
    std::shared_ptr<const react::Props> cloneProps(const react::PropsParserContext& context,
                                                   const std::shared_ptr<const react::Props>& props,
                                                   react::RawProps rawProps) const override;
#ifdef ANDROID
    void adopt(react::ShadowNode& shadowNode) const override;
#endif
  };

  /* The actual view for "BlurView" needs to be implemented in platform-specific code. */

} // namespace margelo::nitro::qmblurview::views
