discord-jadx/app/src/main/java/com/discord/widgets/chat/input/emoji/GuildIcon.java

50 lines
2.3 KiB
Java

package com.discord.widgets.chat.input.emoji;
import android.content.Context;
import android.util.AttributeSet;
import com.discord.models.guild.Guild;
import com.discord.utilities.icon.IconUtils;
import com.discord.utilities.images.MGImages;
import com.facebook.drawee.view.SimpleDraweeView;
import d0.z.d.m;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: GuildIcon.kt */
public final class GuildIcon extends SimpleDraweeView {
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public GuildIcon(Context context) {
super(context);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public GuildIcon(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public GuildIcon(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ GuildIcon(Context context, AttributeSet attributeSet, int i, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(context, (i2 & 2) != 0 ? null : attributeSet, (i2 & 4) != 0 ? 0 : i);
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ GuildIcon(Context context, AttributeSet attributeSet, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(context, (i & 2) != 0 ? null : attributeSet);
}
public final void updateView(Guild guild) {
m.checkNotNullParameter(guild, "guild");
if (guild.hasIcon()) {
int mediaProxySize = IconUtils.getMediaProxySize(getLayoutParams().width);
String forGuild$default = IconUtils.getForGuild$default(guild, null, false, null, 10, null);
MGImages.setImage$default(this, m.stringPlus(forGuild$default, "?size=" + mediaProxySize), getLayoutParams().width, getLayoutParams().height, false, null, null, 112, null);
}
}
}