///
/// HybridAirPlayButtonComponent.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 <string>
#include <memory>
#include "HybridAirPlayButtonSpec.hpp"
#include <functional>
#include <optional>

namespace margelo::nitro::aviation::views {

  using namespace facebook;

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

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

  public:
    CachedProp<std::string> tintColor;
    CachedProp<std::string> activeTintColor;
    CachedProp<std::optional<std::function<void(const std::shared_ptr<HybridAirPlayButtonSpec>& /* ref */)>>> hybridRef;

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

  /**
   * State for the "AirPlayButton" View.
   */
  class HybridAirPlayButtonState final {
  public:
    HybridAirPlayButtonState() = default;
    explicit HybridAirPlayButtonState(const std::shared_ptr<HybridAirPlayButtonProps>& props):
      _props(props) {}

  public:
    [[nodiscard]]
    const std::shared_ptr<HybridAirPlayButtonProps>& getProps() const {
      return _props;
    }

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

  private:
    std::shared_ptr<HybridAirPlayButtonProps> _props;
  };

  /**
   * The Shadow Node for the "AirPlayButton" View.
   */
  using HybridAirPlayButtonShadowNode = react::ConcreteViewShadowNode<HybridAirPlayButtonComponentName /* "HybridAirPlayButton" */,
                                                                      HybridAirPlayButtonProps /* custom props */,
                                                                      react::ViewEventEmitter /* default */,
                                                                      HybridAirPlayButtonState /* custom state */>;

  /**
   * The Component Descriptor for the "AirPlayButton" View.
   */
  class HybridAirPlayButtonComponentDescriptor final: public react::ConcreteComponentDescriptor<HybridAirPlayButtonShadowNode> {
  public:
    explicit HybridAirPlayButtonComponentDescriptor(const react::ComponentDescriptorParameters& parameters);

  public:
    /**
     * A faster path for cloning props - reuses the caching logic from `HybridAirPlayButtonProps`.
     */
    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 "AirPlayButton" needs to be implemented in platform-specific code. */

} // namespace margelo::nitro::aviation::views
