/*
 * Copyright (c) 2025 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_BASE_PROPERTIES_UI_MATERIAL_NAPI_H
#define FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_BASE_PROPERTIES_UI_MATERIAL_NAPI_H
 
#include "core/components_ng/common_napi_utils/common_napi_utils.h"

namespace OHOS::Ace {
struct ImmersiveOptions;
class UiMaterial;
} // namespace OHOS::Ace

namespace OHOS::Ace::Napi {

// Type tag for napi_wrap_s/napi_unwrap_s type safety
constexpr napi_type_tag UI_MATERIAL_TYPE_TAG = {
    .lower = 0x8E4F9C3D7A2B6E5F,
    .upper = 0x2C7B8D4E9A3F1E6D,
};

class UiMaterialNapi {
public:
    UiMaterialNapi() = default;
    virtual ~UiMaterialNapi() = default;
    static napi_value Init(napi_env env, napi_value exports);

private:
    static napi_status EnumMaterialTypeInit(napi_env env, napi_value exports);
    static napi_status EnumImmersiveStyleInit(napi_env env, napi_value exports);
    static napi_status EnumImmersiveLevelInit(napi_env env, napi_value exports);
    static napi_status EnumMaterialStateInit(napi_env env, napi_value exports);
    static napi_status ImmersiveMaterialInit(napi_env env, napi_value exports, napi_value baseCtr);
    static napi_value JSGetImmersiveLevel(napi_env env, napi_callback_info info);
    static napi_value JSGetMaterialInfo(napi_env env, napi_callback_info info);
    static napi_value JSGetEmpty(napi_env env, napi_callback_info info);
    static napi_value JSConvertToECMaterial(napi_env env, napi_callback_info info);
    static napi_value JSConvertToECSubMaterial(napi_env env, napi_callback_info info);
    static napi_value GetNamedProperty(napi_env env, napi_value object, const std::string& propertyName);
    static int32_t GetCInt32(napi_value value, napi_env env);
    static napi_valuetype GetValueType(napi_env env, napi_value value);
    static napi_value MaterialConstructor(napi_env env, napi_callback_info info);
    static napi_value ImmersiveMaterialConstructor(napi_env env, napi_callback_info info);
    static void Destructor(napi_env env, void* nativeObject, void* finalize);
    static UiMaterial* WrapMaterialObject(napi_env env, napi_value jsThis, int32_t materialType);
    static UiMaterial* WrapImmersiveMaterialObject(napi_env env, napi_value jsThis, const ImmersiveOptions& options);
    static ImmersiveOptions ParseImmersiveOptions(napi_env env, napi_value value);
    static napi_value JSIsImmersiveMaterialSupported(napi_env env, napi_callback_info info);

    static void ConvertToImmersiveOptionsEC(ImmersiveOptions& options);
    static void ConvertToImmersiveOptionsECSub(ImmersiveOptions& options);
};
} // namespace OHOS::Ace
#endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_BASE_PROPERTIES_UI_MATERIAL_NAPI_H