Rabbit-R1/switch port/java/sources/androidx/compose/foundation/ClickableKt$handlePressInteraction$2$delayJob$1.java
2024-05-21 17:08:36 -04:00

85 lines
4.3 KiB
Java

package androidx.compose.foundation;
import androidx.compose.foundation.AbstractClickableNode;
import androidx.compose.foundation.interaction.MutableInteractionSource;
import androidx.compose.foundation.interaction.PressInteraction;
import kotlin.Metadata;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt;
import kotlin.coroutines.jvm.internal.DebugMetadata;
import kotlin.coroutines.jvm.internal.SuspendLambda;
import kotlin.jvm.functions.Function0;
import kotlin.jvm.functions.Function2;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.DelayKt;
/* compiled from: Clickable.kt */
@Metadata(d1 = {"\u0000\n\n\u0000\n\u0002\u0010\u0002\n\u0002\u0018\u0002\u0010\u0000\u001a\u00020\u0001*\u00020\u0002H\u008a@"}, d2 = {"<anonymous>", "", "Lkotlinx/coroutines/CoroutineScope;"}, k = 3, mv = {1, 8, 0}, xi = 48)
@DebugMetadata(c = "androidx.compose.foundation.ClickableKt$handlePressInteraction$2$delayJob$1", f = "Clickable.kt", i = {1}, l = {293, 296}, m = "invokeSuspend", n = {"press"}, s = {"L$0"})
/* loaded from: classes.dex */
final class ClickableKt$handlePressInteraction$2$delayJob$1 extends SuspendLambda implements Function2<CoroutineScope, Continuation<? super Unit>, Object> {
final /* synthetic */ Function0<Boolean> $delayPressInteraction;
final /* synthetic */ AbstractClickableNode.InteractionData $interactionData;
final /* synthetic */ MutableInteractionSource $interactionSource;
final /* synthetic */ long $pressPoint;
Object L$0;
int label;
/* JADX INFO: Access modifiers changed from: package-private */
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public ClickableKt$handlePressInteraction$2$delayJob$1(Function0<Boolean> function0, long j, MutableInteractionSource mutableInteractionSource, AbstractClickableNode.InteractionData interactionData, Continuation<? super ClickableKt$handlePressInteraction$2$delayJob$1> continuation) {
super(2, continuation);
this.$delayPressInteraction = function0;
this.$pressPoint = j;
this.$interactionSource = mutableInteractionSource;
this.$interactionData = interactionData;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
return new ClickableKt$handlePressInteraction$2$delayJob$1(this.$delayPressInteraction, this.$pressPoint, this.$interactionSource, this.$interactionData, continuation);
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(CoroutineScope coroutineScope, Continuation<? super Unit> continuation) {
return ((ClickableKt$handlePressInteraction$2$delayJob$1) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE);
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
PressInteraction.Press press;
Object coroutine_suspended = IntrinsicsKt.getCOROUTINE_SUSPENDED();
int i = this.label;
if (i == 0) {
ResultKt.throwOnFailure(obj);
if (this.$delayPressInteraction.invoke().booleanValue()) {
this.label = 1;
if (DelayKt.delay(Clickable_androidKt.getTapIndicationDelay(), this) == coroutine_suspended) {
return coroutine_suspended;
}
}
} else {
if (i != 1) {
if (i != 2) {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
press = (PressInteraction.Press) this.L$0;
ResultKt.throwOnFailure(obj);
this.$interactionData.setPressInteraction(press);
return Unit.INSTANCE;
}
ResultKt.throwOnFailure(obj);
}
PressInteraction.Press press2 = new PressInteraction.Press(this.$pressPoint, null);
this.L$0 = press2;
this.label = 2;
if (this.$interactionSource.emit(press2, this) == coroutine_suspended) {
return coroutine_suspended;
}
press = press2;
this.$interactionData.setPressInteraction(press);
return Unit.INSTANCE;
}
}