discord-jadx/app/src/main/java/com/discord/widgets/chat/list/ViewThreadsFeatureFlag.java

55 lines
2.1 KiB
Java

package com.discord.widgets.chat.list;
import com.discord.models.experiments.domain.Experiment;
import com.discord.stores.StoreExperiments;
import com.discord.stores.StoreStream;
import d0.g;
import d0.z.d.m;
import kotlin.Lazy;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: ViewThreadsFeatureFlag.kt */
public final class ViewThreadsFeatureFlag {
public static final Companion Companion = new Companion(null);
private static final Lazy INSTANCE$delegate = g.lazy(ViewThreadsFeatureFlag$Companion$INSTANCE$2.INSTANCE);
private final StoreExperiments storeExperiments;
/* compiled from: ViewThreadsFeatureFlag.kt */
public static final class Companion {
private Companion() {
}
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
public final ViewThreadsFeatureFlag getINSTANCE() {
Lazy access$getINSTANCE$cp = ViewThreadsFeatureFlag.access$getINSTANCE$cp();
Companion companion = ViewThreadsFeatureFlag.Companion;
return (ViewThreadsFeatureFlag) access$getINSTANCE$cp.getValue();
}
}
public ViewThreadsFeatureFlag() {
this(null, 1, null);
}
public ViewThreadsFeatureFlag(StoreExperiments storeExperiments) {
m.checkNotNullParameter(storeExperiments, "storeExperiments");
this.storeExperiments = storeExperiments;
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ ViewThreadsFeatureFlag(StoreExperiments storeExperiments, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? StoreStream.Companion.getExperiments() : storeExperiments);
}
public static final /* synthetic */ Lazy access$getINSTANCE$cp() {
return INSTANCE$delegate;
}
public final boolean isEnabled() {
Experiment userExperiment = this.storeExperiments.getUserExperiment("2021-02_view_threads", true);
return userExperiment != null && userExperiment.getBucket() == 1;
}
}