2017-01-23 16:19:30 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is part of Tusky.
|
|
|
|
*
|
|
|
|
* Tusky 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.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
2017-01-27 11:34:32 +11:00
|
|
|
import android.text.SpannableStringBuilder;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.text.Spanned;
|
2017-01-27 11:34:32 +11:00
|
|
|
import android.text.method.LinkMovementMethod;
|
|
|
|
import android.text.style.ClickableSpan;
|
|
|
|
import android.text.style.URLSpan;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.view.View;
|
2017-02-01 10:42:05 +11:00
|
|
|
import android.widget.CompoundButton;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.widget.ImageButton;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
2017-02-01 10:42:05 +11:00
|
|
|
import android.widget.ToggleButton;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
|
|
|
import com.android.volley.toolbox.ImageLoader;
|
|
|
|
import com.android.volley.toolbox.NetworkImageView;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
public class StatusViewHolder extends RecyclerView.ViewHolder {
|
|
|
|
private View container;
|
|
|
|
private TextView displayName;
|
|
|
|
private TextView username;
|
|
|
|
private TextView sinceCreated;
|
|
|
|
private TextView content;
|
|
|
|
private NetworkImageView avatar;
|
2017-02-13 16:18:17 +11:00
|
|
|
private View rebloggedBar;
|
|
|
|
private TextView rebloggedByUsername;
|
2017-01-23 16:19:30 +11:00
|
|
|
private ImageButton replyButton;
|
2017-02-13 16:18:17 +11:00
|
|
|
private StatusButton reblogButton;
|
|
|
|
private StatusButton favouriteButton;
|
2017-01-23 16:19:30 +11:00
|
|
|
private ImageButton moreButton;
|
|
|
|
private boolean favourited;
|
|
|
|
private boolean reblogged;
|
|
|
|
private NetworkImageView mediaPreview0;
|
|
|
|
private NetworkImageView mediaPreview1;
|
|
|
|
private NetworkImageView mediaPreview2;
|
|
|
|
private NetworkImageView mediaPreview3;
|
|
|
|
private View sensitiveMediaWarning;
|
2017-02-01 10:42:05 +11:00
|
|
|
private View contentWarningBar;
|
|
|
|
private TextView contentWarningDescription;
|
|
|
|
private ToggleButton contentWarningButton;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
|
|
|
public StatusViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
|
|
|
container = itemView.findViewById(R.id.status_container);
|
|
|
|
displayName = (TextView) itemView.findViewById(R.id.status_display_name);
|
|
|
|
username = (TextView) itemView.findViewById(R.id.status_username);
|
|
|
|
sinceCreated = (TextView) itemView.findViewById(R.id.status_since_created);
|
|
|
|
content = (TextView) itemView.findViewById(R.id.status_content);
|
|
|
|
avatar = (NetworkImageView) itemView.findViewById(R.id.status_avatar);
|
2017-01-31 15:51:02 +11:00
|
|
|
avatar.setDefaultImageResId(R.drawable.avatar_default);
|
|
|
|
avatar.setErrorImageResId(R.drawable.avatar_error);
|
2017-02-13 16:18:17 +11:00
|
|
|
rebloggedBar = itemView.findViewById(R.id.status_reblogged_bar);
|
|
|
|
rebloggedByUsername = (TextView) itemView.findViewById(R.id.status_reblogged);
|
2017-01-23 16:19:30 +11:00
|
|
|
replyButton = (ImageButton) itemView.findViewById(R.id.status_reply);
|
2017-02-13 16:18:17 +11:00
|
|
|
reblogButton = (StatusButton) itemView.findViewById(R.id.status_reblog);
|
|
|
|
favouriteButton = (StatusButton) itemView.findViewById(R.id.status_favourite);
|
2017-01-23 16:19:30 +11:00
|
|
|
moreButton = (ImageButton) itemView.findViewById(R.id.status_more);
|
|
|
|
reblogged = false;
|
|
|
|
favourited = false;
|
|
|
|
mediaPreview0 = (NetworkImageView) itemView.findViewById(R.id.status_media_preview_0);
|
|
|
|
mediaPreview1 = (NetworkImageView) itemView.findViewById(R.id.status_media_preview_1);
|
|
|
|
mediaPreview2 = (NetworkImageView) itemView.findViewById(R.id.status_media_preview_2);
|
|
|
|
mediaPreview3 = (NetworkImageView) itemView.findViewById(R.id.status_media_preview_3);
|
|
|
|
mediaPreview0.setDefaultImageResId(R.drawable.media_preview_unloaded);
|
|
|
|
mediaPreview1.setDefaultImageResId(R.drawable.media_preview_unloaded);
|
|
|
|
mediaPreview2.setDefaultImageResId(R.drawable.media_preview_unloaded);
|
|
|
|
mediaPreview3.setDefaultImageResId(R.drawable.media_preview_unloaded);
|
|
|
|
sensitiveMediaWarning = itemView.findViewById(R.id.status_sensitive_media_warning);
|
2017-02-01 10:42:05 +11:00
|
|
|
contentWarningBar = itemView.findViewById(R.id.status_content_warning_bar);
|
|
|
|
contentWarningDescription =
|
|
|
|
(TextView) itemView.findViewById(R.id.status_content_warning_description);
|
|
|
|
contentWarningButton =
|
|
|
|
(ToggleButton) itemView.findViewById(R.id.status_content_warning_button);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setDisplayName(String name) {
|
|
|
|
displayName.setText(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUsername(String name) {
|
|
|
|
Context context = username.getContext();
|
|
|
|
String format = context.getString(R.string.status_username_format);
|
|
|
|
String usernameText = String.format(format, name);
|
|
|
|
username.setText(usernameText);
|
|
|
|
}
|
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
public void setContent(Spanned content, Status.Mention[] mentions,
|
|
|
|
final StatusActionListener listener) {
|
2017-02-02 07:20:39 +11:00
|
|
|
/* Redirect URLSpan's in the status content to the listener for viewing tag pages and
|
|
|
|
* account pages. */
|
2017-01-27 11:34:32 +11:00
|
|
|
SpannableStringBuilder builder = new SpannableStringBuilder(content);
|
|
|
|
URLSpan[] urlSpans = content.getSpans(0, content.length(), URLSpan.class);
|
|
|
|
for (URLSpan span : urlSpans) {
|
|
|
|
int start = builder.getSpanStart(span);
|
|
|
|
int end = builder.getSpanEnd(span);
|
|
|
|
int flags = builder.getSpanFlags(span);
|
2017-01-28 14:33:43 +11:00
|
|
|
CharSequence text = builder.subSequence(start, end);
|
|
|
|
if (text.charAt(0) == '#') {
|
|
|
|
final String tag = text.subSequence(1, text.length()).toString();
|
2017-01-27 11:34:32 +11:00
|
|
|
ClickableSpan newSpan = new ClickableSpan() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View widget) {
|
2017-01-28 14:33:43 +11:00
|
|
|
listener.onViewTag(tag);
|
2017-01-27 11:34:32 +11:00
|
|
|
}
|
|
|
|
};
|
|
|
|
builder.removeSpan(span);
|
|
|
|
builder.setSpan(newSpan, start, end, flags);
|
2017-01-28 14:33:43 +11:00
|
|
|
} else if (text.charAt(0) == '@') {
|
|
|
|
final String accountUsername = text.subSequence(1, text.length()).toString();
|
|
|
|
String id = null;
|
|
|
|
for (Status.Mention mention: mentions) {
|
|
|
|
if (mention.getUsername().equals(accountUsername)) {
|
|
|
|
id = mention.getId();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (id != null) {
|
|
|
|
final String accountId = id;
|
|
|
|
ClickableSpan newSpan = new ClickableSpan() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View widget) {
|
|
|
|
listener.onViewAccount(accountId, accountUsername);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
builder.removeSpan(span);
|
|
|
|
builder.setSpan(newSpan, start, end, flags);
|
|
|
|
}
|
2017-01-27 11:34:32 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Set the contents.
|
|
|
|
this.content.setText(builder);
|
|
|
|
// Make links clickable.
|
|
|
|
this.content.setLinksClickable(true);
|
|
|
|
this.content.setMovementMethod(LinkMovementMethod.getInstance());
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setAvatar(String url) {
|
2017-01-31 15:51:02 +11:00
|
|
|
if (url.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
Context context = avatar.getContext();
|
|
|
|
ImageLoader imageLoader = VolleySingleton.getInstance(context).getImageLoader();
|
|
|
|
avatar.setImageUrl(url, imageLoader);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreatedAt(@Nullable Date createdAt) {
|
|
|
|
String readout;
|
|
|
|
if (createdAt != null) {
|
|
|
|
long then = createdAt.getTime();
|
|
|
|
long now = new Date().getTime();
|
|
|
|
readout = DateUtils.getRelativeTimeSpanString(then, now);
|
|
|
|
} else {
|
|
|
|
readout = "?m"; // unknown minutes~
|
|
|
|
}
|
|
|
|
sinceCreated.setText(readout);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRebloggedByUsername(String name) {
|
2017-02-13 16:18:17 +11:00
|
|
|
Context context = rebloggedByUsername.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-13 16:18:17 +11:00
|
|
|
rebloggedByUsername.setText(boostedText);
|
|
|
|
rebloggedBar.setVisibility(View.VISIBLE);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void hideRebloggedByUsername() {
|
2017-02-13 16:18:17 +11:00
|
|
|
rebloggedBar.setVisibility(View.GONE);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setReblogged(boolean reblogged) {
|
|
|
|
this.reblogged = reblogged;
|
2017-02-13 16:18:17 +11:00
|
|
|
reblogButton.setMarked(reblogged);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-02-13 16:18:17 +11:00
|
|
|
public void setRebloggingEnabled(boolean enabled) {
|
|
|
|
reblogButton.setEnabled(enabled);
|
|
|
|
if (enabled) {
|
|
|
|
reblogButton.setImageResource(R.drawable.ic_reblog);
|
|
|
|
} else {
|
|
|
|
reblogButton.setImageResource(R.drawable.ic_reblog_disabled);
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setFavourited(boolean favourited) {
|
|
|
|
this.favourited = favourited;
|
2017-02-13 16:18:17 +11:00
|
|
|
favouriteButton.setMarked(favourited);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setMediaPreviews(final Status.MediaAttachment[] attachments,
|
|
|
|
boolean sensitive, final StatusActionListener listener) {
|
|
|
|
final NetworkImageView[] previews = {
|
|
|
|
mediaPreview0,
|
|
|
|
mediaPreview1,
|
|
|
|
mediaPreview2,
|
|
|
|
mediaPreview3
|
|
|
|
};
|
|
|
|
Context context = mediaPreview0.getContext();
|
|
|
|
ImageLoader imageLoader = VolleySingleton.getInstance(context).getImageLoader();
|
|
|
|
final int n = Math.min(attachments.length, Status.MAX_MEDIA_ATTACHMENTS);
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
String previewUrl = attachments[i].getPreviewUrl();
|
|
|
|
previews[i].setImageUrl(previewUrl, imageLoader);
|
|
|
|
if (!sensitive) {
|
|
|
|
previews[i].setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
previews[i].setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
final String url = attachments[i].getUrl();
|
|
|
|
final Status.MediaAttachment.Type type = attachments[i].getType();
|
|
|
|
previews[i].setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onViewMedia(url, type);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (sensitive) {
|
|
|
|
sensitiveMediaWarning.setVisibility(View.VISIBLE);
|
|
|
|
sensitiveMediaWarning.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
v.setVisibility(View.GONE);
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
previews[i].setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
v.setOnClickListener(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Hide any of the placeholder previews beyond the ones set.
|
|
|
|
for (int i = n; i < Status.MAX_MEDIA_ATTACHMENTS; i++) {
|
|
|
|
previews[i].setImageUrl(null, imageLoader);
|
|
|
|
previews[i].setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void hideSensitiveMediaWarning() {
|
|
|
|
sensitiveMediaWarning.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
2017-02-01 10:42:05 +11:00
|
|
|
public void setSpoilerText(String spoilerText) {
|
|
|
|
contentWarningDescription.setText(spoilerText);
|
|
|
|
contentWarningBar.setVisibility(View.VISIBLE);
|
|
|
|
content.setVisibility(View.GONE);
|
|
|
|
contentWarningButton.setOnCheckedChangeListener(
|
|
|
|
new CompoundButton.OnCheckedChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
|
|
|
if (isChecked) {
|
|
|
|
content.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
content.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-02-01 20:25:22 +11:00
|
|
|
public void hideSpoilerText() {
|
|
|
|
contentWarningBar.setVisibility(View.GONE);
|
|
|
|
content.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
public void setupButtons(final StatusActionListener listener, final int position) {
|
2017-01-28 14:33:43 +11:00
|
|
|
avatar.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onViewAccount(position);
|
|
|
|
}
|
|
|
|
});
|
2017-01-23 16:19:30 +11:00
|
|
|
replyButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onReply(position);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
reblogButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onReblog(!reblogged, position);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
favouriteButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onFavourite(!favourited, position);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
moreButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onMore(v, position);
|
|
|
|
}
|
|
|
|
});
|
2017-01-28 14:33:43 +11:00
|
|
|
/* Even though the content TextView is a child of the container, it won't respond to clicks
|
|
|
|
* if it contains URLSpans without also setting its listener. The surrounding spans will
|
|
|
|
* just eat the clicks instead of deferring to the parent listener, but WILL respond to a
|
|
|
|
* listener directly on the TextView, for whatever reason. */
|
|
|
|
View.OnClickListener viewThreadListener = new View.OnClickListener() {
|
2017-01-23 16:19:30 +11:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
listener.onViewThread(position);
|
|
|
|
}
|
2017-01-28 14:33:43 +11:00
|
|
|
};
|
|
|
|
content.setOnClickListener(viewThreadListener);
|
|
|
|
container.setOnClickListener(viewThreadListener);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setupWithStatus(Status status, StatusActionListener listener, int position) {
|
|
|
|
setDisplayName(status.getDisplayName());
|
|
|
|
setUsername(status.getUsername());
|
|
|
|
setCreatedAt(status.getCreatedAt());
|
2017-01-28 14:33:43 +11:00
|
|
|
setContent(status.getContent(), status.getMentions(), listener);
|
2017-01-23 16:19:30 +11:00
|
|
|
setAvatar(status.getAvatar());
|
|
|
|
setReblogged(status.getReblogged());
|
|
|
|
setFavourited(status.getFavourited());
|
|
|
|
String rebloggedByUsername = status.getRebloggedByUsername();
|
|
|
|
if (rebloggedByUsername == null) {
|
|
|
|
hideRebloggedByUsername();
|
|
|
|
} else {
|
|
|
|
setRebloggedByUsername(rebloggedByUsername);
|
|
|
|
}
|
|
|
|
Status.MediaAttachment[] attachments = status.getAttachments();
|
|
|
|
boolean sensitive = status.getSensitive();
|
|
|
|
setMediaPreviews(attachments, sensitive, listener);
|
|
|
|
/* A status without attachments is sometimes still marked sensitive, so it's necessary to
|
|
|
|
* check both whether there are any attachments and if it's marked sensitive. */
|
|
|
|
if (!sensitive || attachments.length == 0) {
|
|
|
|
hideSensitiveMediaWarning();
|
|
|
|
}
|
|
|
|
setupButtons(listener, position);
|
2017-02-13 16:18:17 +11:00
|
|
|
setRebloggingEnabled(status.getVisibility() != Status.Visibility.PRIVATE);
|
2017-02-01 20:25:22 +11:00
|
|
|
if (status.getSpoilerText().isEmpty()) {
|
|
|
|
hideSpoilerText();
|
|
|
|
} else {
|
2017-02-01 10:42:05 +11:00
|
|
|
setSpoilerText(status.getSpoilerText());
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
}
|