Rabbit-R1/android (non root)/java/sources/androidx/compose/material/ripple/Ripple$rememberUpdatedInstance$1.java
2024-05-21 17:08:36 -04:00

88 lines
4.9 KiB
Java

package androidx.compose.material.ripple;
import androidx.compose.foundation.interaction.Interaction;
import androidx.compose.foundation.interaction.InteractionSource;
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.Function2;
import kotlinx.coroutines.CoroutineScope;
import kotlinx.coroutines.flow.Flow;
import kotlinx.coroutines.flow.FlowCollector;
/* compiled from: Ripple.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.material.ripple.Ripple$rememberUpdatedInstance$1", f = "Ripple.kt", i = {}, l = {136}, m = "invokeSuspend", n = {}, s = {})
/* loaded from: classes.dex */
final class Ripple$rememberUpdatedInstance$1 extends SuspendLambda implements Function2<CoroutineScope, Continuation<? super Unit>, Object> {
final /* synthetic */ RippleIndicationInstance $instance;
final /* synthetic */ InteractionSource $interactionSource;
private /* synthetic */ 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 Ripple$rememberUpdatedInstance$1(InteractionSource interactionSource, RippleIndicationInstance rippleIndicationInstance, Continuation<? super Ripple$rememberUpdatedInstance$1> continuation) {
super(2, continuation);
this.$interactionSource = interactionSource;
this.$instance = rippleIndicationInstance;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
Ripple$rememberUpdatedInstance$1 ripple$rememberUpdatedInstance$1 = new Ripple$rememberUpdatedInstance$1(this.$interactionSource, this.$instance, continuation);
ripple$rememberUpdatedInstance$1.L$0 = obj;
return ripple$rememberUpdatedInstance$1;
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(CoroutineScope coroutineScope, Continuation<? super Unit> continuation) {
return ((Ripple$rememberUpdatedInstance$1) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE);
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
Object coroutine_suspended = IntrinsicsKt.getCOROUTINE_SUSPENDED();
int i = this.label;
if (i == 0) {
ResultKt.throwOnFailure(obj);
final CoroutineScope coroutineScope = (CoroutineScope) this.L$0;
Flow<Interaction> interactions = this.$interactionSource.getInteractions();
final RippleIndicationInstance rippleIndicationInstance = this.$instance;
this.label = 1;
if (interactions.collect(new FlowCollector<Interaction>() { // from class: androidx.compose.material.ripple.Ripple$rememberUpdatedInstance$1.1
@Override // kotlinx.coroutines.flow.FlowCollector
public /* bridge */ /* synthetic */ Object emit(Interaction interaction, Continuation continuation) {
return emit2(interaction, (Continuation<? super Unit>) continuation);
}
/* renamed from: emit, reason: avoid collision after fix types in other method */
public final Object emit2(Interaction interaction, Continuation<? super Unit> continuation) {
if (interaction instanceof PressInteraction.Press) {
RippleIndicationInstance.this.addRipple((PressInteraction.Press) interaction, coroutineScope);
} else if (interaction instanceof PressInteraction.Release) {
RippleIndicationInstance.this.removeRipple(((PressInteraction.Release) interaction).getPress());
} else if (interaction instanceof PressInteraction.Cancel) {
RippleIndicationInstance.this.removeRipple(((PressInteraction.Cancel) interaction).getPress());
} else {
RippleIndicationInstance.this.updateStateLayer$material_ripple_release(interaction, coroutineScope);
}
return Unit.INSTANCE;
}
}, this) == coroutine_suspended) {
return coroutine_suspended;
}
} else {
if (i != 1) {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
ResultKt.throwOnFailure(obj);
}
return Unit.INSTANCE;
}
}