/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ package com.facebook.react.views.drawer.events import com.facebook.react.bridge.Arguments import com.facebook.react.bridge.WritableMap import com.facebook.react.uimanager.common.ViewUtil import com.facebook.react.uimanager.events.Event internal class DrawerStateChangedEvent : Event { private val drawerState: Int @Deprecated( "Use constructor with surfaceId", ReplaceWith("DrawerStateChangedEvent(surfaceId, viewId, drawerState)"), ) constructor(viewId: Int, drawerState: Int) : this(ViewUtil.NO_SURFACE_ID, viewId, drawerState) constructor(surfaceId: Int, viewId: Int, drawerState: Int) : super(surfaceId, viewId) { this.drawerState = drawerState } fun getDrawerState(): Int = drawerState override fun getEventName(): String = EVENT_NAME override fun getEventData(): WritableMap { val eventData: WritableMap = Arguments.createMap() eventData.putInt("drawerState", getDrawerState()) return eventData } companion object { const val EVENT_NAME: String = "topDrawerStateChanged" } }