All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uikitMain.androidx.compose.ui.window.FocusStack.uikit.kt Maven / Gradle / Ivy

/*
 * Copyright 2023 The Android Open Source Project
 *
 * 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.
 */

package androidx.compose.ui.window

import androidx.compose.ui.util.fastForEachReversed
import kotlinx.coroutines.MainScope
import kotlinx.coroutines.launch
import platform.UIKit.UIView

internal class FocusStack {

    private var activeViews = emptyList()
    private var resignedViews = emptyList()
    private val mainScope = MainScope()

    /**
     * Add new view to stack and focus on it.
     */
    fun pushAndFocus(view: UIView) {
        activeViews += view
        resignedViews -= view
        view.becomeFirstResponder()
    }

    /**
     * Pop all elements until some element. Also pop this element too.
     * Last remaining element in Stack will be focused.
     */
    fun popUntilNext(view: UIView) {
        if (activeViews.contains(view)) {
            val index = activeViews.indexOf(view)
            resignedViews += activeViews.subList(index, activeViews.size)
            activeViews = activeViews.subList(0, index)

            mainScope.launch {
                resignedViews.fastForEachReversed {
                    it.resignFirstResponder()
                }
                resignedViews = emptyList()
                activeViews.lastOrNull()?.becomeFirstResponder()
            }
        }
    }

    /**
     * Return first added view or null
     */
    fun first(): UIView? = activeViews.firstOrNull()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy