2017-01-23 16:19:30 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This file is a part of Tusky.
|
2017-01-23 16:19:30 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-01-23 16:19:30 +11:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 10:12:31 +10:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-01-23 16:19:30 +11:00
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
package com.keylesspalace.tusky.adapter;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
|
|
|
import android.content.Context;
|
2017-07-15 08:18:29 +10:00
|
|
|
import android.os.Build;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.view.View;
|
2017-03-07 11:31:05 +11:00
|
|
|
import android.widget.ImageView;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.R;
|
2017-07-14 15:06:32 +10:00
|
|
|
import com.keylesspalace.tusky.interfaces.StatusActionListener;
|
|
|
|
import com.keylesspalace.tusky.view.RoundedTransformation;
|
2017-07-13 05:54:52 +10:00
|
|
|
import com.keylesspalace.tusky.viewdata.StatusViewData;
|
2017-03-07 11:31:05 +11:00
|
|
|
import com.squareup.picasso.Picasso;
|
2017-07-14 15:06:32 +10:00
|
|
|
import com.varunest.sparkbutton.helpers.Utils;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-08-04 07:26:26 +10:00
|
|
|
public class StatusViewHolder extends StatusBaseViewHolder {
|
2017-07-14 15:06:32 +10:00
|
|
|
private ImageView avatarReblog;
|
2017-02-13 16:18:17 +11:00
|
|
|
private View rebloggedBar;
|
2017-02-17 05:52:55 +11:00
|
|
|
private TextView rebloggedByDisplayName;
|
2017-08-03 14:29:31 +10:00
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
StatusViewHolder(View itemView) {
|
2017-01-23 16:19:30 +11:00
|
|
|
super(itemView);
|
2017-07-14 15:06:32 +10:00
|
|
|
avatarReblog = (ImageView) itemView.findViewById(R.id.status_avatar_reblog);
|
2017-02-13 16:18:17 +11:00
|
|
|
rebloggedBar = itemView.findViewById(R.id.status_reblogged_bar);
|
2017-02-17 05:52:55 +11:00
|
|
|
rebloggedByDisplayName = (TextView) itemView.findViewById(R.id.status_reblogged);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-08-04 07:26:26 +10:00
|
|
|
@Override
|
|
|
|
void setAvatar(String url, @Nullable String rebloggedUrl) {
|
|
|
|
super.setAvatar(url, rebloggedUrl);
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-07-14 15:06:32 +10:00
|
|
|
Context context = avatar.getContext();
|
|
|
|
boolean hasReblog = rebloggedUrl != null && !rebloggedUrl.isEmpty();
|
|
|
|
int padding = hasReblog ? Utils.dpToPx(context, 12) : 0;
|
2017-07-15 13:23:14 +10:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
|
|
|
|
avatar.setPaddingRelative(0, 0, padding, padding);
|
2017-07-15 08:18:29 +10:00
|
|
|
} else {
|
|
|
|
avatar.setPadding(0, 0, padding, padding);
|
|
|
|
}
|
2017-07-14 15:06:32 +10:00
|
|
|
|
2017-08-04 07:26:26 +10:00
|
|
|
if (hasReblog) {
|
|
|
|
avatarReblog.setVisibility(View.VISIBLE);
|
2017-07-14 15:06:32 +10:00
|
|
|
Picasso.with(context)
|
2017-08-04 07:26:26 +10:00
|
|
|
.load(rebloggedUrl)
|
|
|
|
.fit()
|
2017-07-14 15:06:32 +10:00
|
|
|
.transform(new RoundedTransformation(7, 0))
|
2017-08-04 07:26:26 +10:00
|
|
|
.into(avatarReblog);
|
|
|
|
} else {
|
|
|
|
avatarReblog.setVisibility(View.GONE);
|
2017-01-31 15:51:02 +11:00
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-08-04 07:26:26 +10:00
|
|
|
@Override
|
|
|
|
void setupWithStatus(StatusViewData status, final StatusActionListener listener,
|
|
|
|
boolean mediaPreviewEnabled) {
|
|
|
|
super.setupWithStatus(status, listener, mediaPreviewEnabled);
|
|
|
|
|
|
|
|
String rebloggedByDisplayName = status.getRebloggedByUsername();
|
|
|
|
if (rebloggedByDisplayName == null) {
|
|
|
|
hideRebloggedByDisplayName();
|
2017-01-23 16:19:30 +11:00
|
|
|
} else {
|
2017-08-04 07:26:26 +10:00
|
|
|
setRebloggedByDisplayName(rebloggedByDisplayName);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
2017-08-04 07:26:26 +10:00
|
|
|
|
|
|
|
// I think it's not efficient to create new object every time we bind a holder.
|
|
|
|
// More efficient approach would be creating View.OnClickListener during holder creation
|
|
|
|
// and storing StatusActionListener in a variable after binding.
|
|
|
|
rebloggedBar.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onOpenReblog(getAdapterPosition());
|
|
|
|
}
|
|
|
|
});
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
private void setRebloggedByDisplayName(String name) {
|
2017-02-17 05:52:55 +11:00
|
|
|
Context context = rebloggedByDisplayName.getContext();
|
2017-01-23 16:19:30 +11:00
|
|
|
String format = context.getString(R.string.status_boosted_format);
|
|
|
|
String boostedText = String.format(format, name);
|
2017-02-17 05:52:55 +11:00
|
|
|
rebloggedByDisplayName.setText(boostedText);
|
2017-02-13 16:18:17 +11:00
|
|
|
rebloggedBar.setVisibility(View.VISIBLE);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
private void hideRebloggedByDisplayName() {
|
2017-08-03 14:29:31 +10:00
|
|
|
if (rebloggedBar == null) {
|
|
|
|
return;
|
|
|
|
}
|
2017-02-13 16:18:17 +11:00
|
|
|
rebloggedBar.setVisibility(View.GONE);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
}
|