/// /// MixAudioMode.hpp /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// #pragma once #if __has_include() #include #else #error NitroModules cannot be found! Are you sure you installed NitroModules properly? #endif #if __has_include() #include #else #error NitroModules cannot be found! Are you sure you installed NitroModules properly? #endif #if __has_include() #include #else #error NitroModules cannot be found! Are you sure you installed NitroModules properly? #endif namespace margelo::nitro::video { /** * An enum which can be represented as a JavaScript union (MixAudioMode). */ enum class MixAudioMode { MIXWITHOTHERS SWIFT_NAME(mixwithothers) = 0, DONOTMIX SWIFT_NAME(donotmix) = 1, DUCKOTHERS SWIFT_NAME(duckothers) = 2, AUTO SWIFT_NAME(auto) = 3, } CLOSED_ENUM; } // namespace margelo::nitro::video namespace margelo::nitro { // C++ MixAudioMode <> JS MixAudioMode (union) template <> struct JSIConverter final { static inline margelo::nitro::video::MixAudioMode fromJSI(jsi::Runtime& runtime, const jsi::Value& arg) { std::string unionValue = JSIConverter::fromJSI(runtime, arg); switch (hashString(unionValue.c_str(), unionValue.size())) { case hashString("mixWithOthers"): return margelo::nitro::video::MixAudioMode::MIXWITHOTHERS; case hashString("doNotMix"): return margelo::nitro::video::MixAudioMode::DONOTMIX; case hashString("duckOthers"): return margelo::nitro::video::MixAudioMode::DUCKOTHERS; case hashString("auto"): return margelo::nitro::video::MixAudioMode::AUTO; default: [[unlikely]] throw std::invalid_argument("Cannot convert \"" + unionValue + "\" to enum MixAudioMode - invalid value!"); } } static inline jsi::Value toJSI(jsi::Runtime& runtime, margelo::nitro::video::MixAudioMode arg) { switch (arg) { case margelo::nitro::video::MixAudioMode::MIXWITHOTHERS: return JSIConverter::toJSI(runtime, "mixWithOthers"); case margelo::nitro::video::MixAudioMode::DONOTMIX: return JSIConverter::toJSI(runtime, "doNotMix"); case margelo::nitro::video::MixAudioMode::DUCKOTHERS: return JSIConverter::toJSI(runtime, "duckOthers"); case margelo::nitro::video::MixAudioMode::AUTO: return JSIConverter::toJSI(runtime, "auto"); default: [[unlikely]] throw std::invalid_argument("Cannot convert MixAudioMode to JS - invalid value: " + std::to_string(static_cast(arg)) + "!"); } } static inline bool canConvert(jsi::Runtime& runtime, const jsi::Value& value) { if (!value.isString()) { return false; } std::string unionValue = JSIConverter::fromJSI(runtime, value); switch (hashString(unionValue.c_str(), unionValue.size())) { case hashString("mixWithOthers"): case hashString("doNotMix"): case hashString("duckOthers"): case hashString("auto"): return true; default: return false; } } }; } // namespace margelo::nitro