blob: b79f2cb8c4e4c83204a12ae0d57a9fc150e23aeb [file] [log] [blame]
/*
* Copyright (C) 2017 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.core.transition
import android.transition.Transition
import androidx.annotation.RequiresApi
/**
* Add an action which will be invoked when this transition has ended.
*/
@RequiresApi(19)
fun Transition.doOnEnd(action: (transition: Transition) -> Unit) {
addListener(onEnd = action)
}
/**
* Add an action which will be invoked when this transition has started.
*/
@RequiresApi(19)
fun Transition.doOnStart(action: (transition: Transition) -> Unit) {
addListener(onStart = action)
}
/**
* Add an action which will be invoked when this transition has been cancelled.
*/
@RequiresApi(19)
fun Transition.doOnCancel(action: (transition: Transition) -> Unit) {
addListener(onCancel = action)
}
/**
* Add an action which will be invoked when this transition has resumed after a pause.
*/
@RequiresApi(19)
fun Transition.doOnResume(action: (transition: Transition) -> Unit) {
addListener(onResume = action)
}
/**
* Add an action which will be invoked when this transition has been paused.
*/
@RequiresApi(19)
fun Transition.doOnPause(action: (transition: Transition) -> Unit) {
addListener(onPause = action)
}
/**
* Add a listener to this Transition using the provided actions.
*/
@RequiresApi(19)
fun Transition.addListener(
onEnd: ((transition: Transition) -> Unit)? = null,
onStart: ((transition: Transition) -> Unit)? = null,
onCancel: ((transition: Transition) -> Unit)? = null,
onResume: ((transition: Transition) -> Unit)? = null,
onPause: ((transition: Transition) -> Unit)? = null
) {
addListener(object : Transition.TransitionListener {
override fun onTransitionEnd(transition: Transition) {
onEnd?.invoke(transition)
}
override fun onTransitionResume(transition: Transition) {
onResume?.invoke(transition)
}
override fun onTransitionPause(transition: Transition) {
onPause?.invoke(transition)
}
override fun onTransitionCancel(transition: Transition) {
onCancel?.invoke(transition)
}
override fun onTransitionStart(transition: Transition) {
onStart?.invoke(transition)
}
})
}