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

#import "HybridAirPlayButtonComponent.hpp"
#import <memory>
#import <react/renderer/componentregistry/ComponentDescriptorProvider.h>
#import <React/RCTViewComponentView.h>
#import <React/RCTComponentViewFactory.h>
#import <React/UIView+ComponentViewProtocol.h>
#import <NitroModules/NitroDefines.hpp>
#import <UIKit/UIKit.h>

#import "HybridAirPlayButtonSpecSwift.hpp"
#import "Aviation-Swift-Cxx-Umbrella.hpp"

using namespace facebook;
using namespace margelo::nitro::aviation;
using namespace margelo::nitro::aviation::views;

/**
 * Represents the React Native View holder for the Nitro "AirPlayButton" HybridView.
 */
@interface HybridAirPlayButtonComponent: RCTViewComponentView
+ (BOOL)shouldBeRecycled;
@end

@implementation HybridAirPlayButtonComponent {
  std::shared_ptr<HybridAirPlayButtonSpecSwift> _hybridView;
}

+ (void) load {
  [super load];
  [RCTComponentViewFactory.currentComponentViewFactory registerComponentViewClass:[HybridAirPlayButtonComponent class]];
}

+ (react::ComponentDescriptorProvider) componentDescriptorProvider {
  return react::concreteComponentDescriptorProvider<HybridAirPlayButtonComponentDescriptor>();
}

- (instancetype) init {
  if (self = [super init]) {
    std::shared_ptr<HybridAirPlayButtonSpec> hybridView = Aviation::AviationAutolinking::createAirPlayButton();
    _hybridView = std::dynamic_pointer_cast<HybridAirPlayButtonSpecSwift>(hybridView);
    [self updateView];
  }
  return self;
}

- (void) updateView {
  // 1. Get Swift part
  Aviation::HybridAirPlayButtonSpec_cxx& swiftPart = _hybridView->getSwiftPart();

  // 2. Get UIView*
  void* viewUnsafe = swiftPart.getView();
  UIView* view = (__bridge_transfer UIView*) viewUnsafe;

  // 3. Update RCTViewComponentView's [contentView]
  [self setContentView:view];
}

- (void) updateProps:(const std::shared_ptr<const react::Props>&)props
            oldProps:(const std::shared_ptr<const react::Props>&)oldProps {
  // 1. Downcast props
  const auto& newViewPropsConst = *std::static_pointer_cast<HybridAirPlayButtonProps const>(props);
  auto& newViewProps = const_cast<HybridAirPlayButtonProps&>(newViewPropsConst);
  Aviation::HybridAirPlayButtonSpec_cxx& swiftPart = _hybridView->getSwiftPart();

  // 2. Update each prop individually
  swiftPart.beforeUpdate();

  // tintColor: string
  if (newViewProps.tintColor.isDirty) {
    swiftPart.setTintColor(newViewProps.tintColor.value);
    newViewProps.tintColor.isDirty = false;
  }
  // activeTintColor: string
  if (newViewProps.activeTintColor.isDirty) {
    swiftPart.setActiveTintColor(newViewProps.activeTintColor.value);
    newViewProps.activeTintColor.isDirty = false;
  }

  swiftPart.afterUpdate();

  // 3. Update hybridRef if it changed
  if (newViewProps.hybridRef.isDirty) {
    // hybridRef changed - call it with new this
    const auto& maybeFunc = newViewProps.hybridRef.value;
    if (maybeFunc.has_value()) {
      maybeFunc.value()(_hybridView);
    }
    newViewProps.hybridRef.isDirty = false;
  }

  // 4. Continue in base class
  [super updateProps:props oldProps:oldProps];
}

+ (BOOL)shouldBeRecycled {
  return Aviation::AviationAutolinking::isAirPlayButtonRecyclable();
}

- (void)prepareForRecycle {
  [super prepareForRecycle];
  Aviation::HybridAirPlayButtonSpec_cxx& swiftPart = _hybridView->getSwiftPart();
  swiftPart.maybePrepareForRecycle();
}

@end
