mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
100 lines
5.7 KiB
Java
100 lines
5.7 KiB
Java
package androidx.compose.material3;
|
|
|
|
import androidx.compose.foundation.interaction.DragInteraction;
|
|
import androidx.compose.foundation.interaction.FocusInteraction;
|
|
import androidx.compose.foundation.interaction.HoverInteraction;
|
|
import androidx.compose.foundation.interaction.Interaction;
|
|
import androidx.compose.foundation.interaction.InteractionSource;
|
|
import androidx.compose.foundation.interaction.PressInteraction;
|
|
import androidx.compose.runtime.snapshots.SnapshotStateList;
|
|
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: Chip.kt */
|
|
@Metadata(k = 3, mv = {1, 8, 0}, xi = 48)
|
|
@DebugMetadata(c = "androidx.compose.material3.SelectableChipElevation$animateElevation$1$1", f = "Chip.kt", i = {}, l = {1657}, m = "invokeSuspend", n = {}, s = {})
|
|
/* loaded from: classes.dex */
|
|
final class SelectableChipElevation$animateElevation$1$1 extends SuspendLambda implements Function2<CoroutineScope, Continuation<? super Unit>, Object> {
|
|
final /* synthetic */ InteractionSource $interactionSource;
|
|
final /* synthetic */ SnapshotStateList<Interaction> $interactions;
|
|
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 SelectableChipElevation$animateElevation$1$1(InteractionSource interactionSource, SnapshotStateList<Interaction> snapshotStateList, Continuation<? super SelectableChipElevation$animateElevation$1$1> continuation) {
|
|
super(2, continuation);
|
|
this.$interactionSource = interactionSource;
|
|
this.$interactions = snapshotStateList;
|
|
}
|
|
|
|
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
|
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
|
|
return new SelectableChipElevation$animateElevation$1$1(this.$interactionSource, this.$interactions, continuation);
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function2
|
|
public final Object invoke(CoroutineScope coroutineScope, Continuation<? super Unit> continuation) {
|
|
return ((SelectableChipElevation$animateElevation$1$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);
|
|
Flow<Interaction> interactions = this.$interactionSource.getInteractions();
|
|
final SnapshotStateList<Interaction> snapshotStateList = this.$interactions;
|
|
this.label = 1;
|
|
if (interactions.collect(new FlowCollector<Interaction>() { // from class: androidx.compose.material3.SelectableChipElevation$animateElevation$1$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 HoverInteraction.Enter) {
|
|
snapshotStateList.add(interaction);
|
|
} else if (interaction instanceof HoverInteraction.Exit) {
|
|
snapshotStateList.remove(((HoverInteraction.Exit) interaction).getEnter());
|
|
} else if (interaction instanceof FocusInteraction.Focus) {
|
|
snapshotStateList.add(interaction);
|
|
} else if (interaction instanceof FocusInteraction.Unfocus) {
|
|
snapshotStateList.remove(((FocusInteraction.Unfocus) interaction).getFocus());
|
|
} else if (interaction instanceof PressInteraction.Press) {
|
|
snapshotStateList.add(interaction);
|
|
} else if (interaction instanceof PressInteraction.Release) {
|
|
snapshotStateList.remove(((PressInteraction.Release) interaction).getPress());
|
|
} else if (interaction instanceof PressInteraction.Cancel) {
|
|
snapshotStateList.remove(((PressInteraction.Cancel) interaction).getPress());
|
|
} else if (interaction instanceof DragInteraction.Start) {
|
|
snapshotStateList.add(interaction);
|
|
} else if (interaction instanceof DragInteraction.Stop) {
|
|
snapshotStateList.remove(((DragInteraction.Stop) interaction).getStart());
|
|
} else if (interaction instanceof DragInteraction.Cancel) {
|
|
snapshotStateList.remove(((DragInteraction.Cancel) interaction).getStart());
|
|
}
|
|
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;
|
|
}
|
|
}
|