2017-01-20 19:09:10 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 10:12:31 +10:00
|
|
|
* This file is a part of Tusky.
|
2017-01-20 19:09:10 +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-20 19:09:10 +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-20 19:09:10 +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-20 19:09:10 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
package com.keylesspalace.tusky.adapter;
|
2017-01-08 09:24:02 +11:00
|
|
|
|
|
|
|
import android.content.Context;
|
2017-07-14 15:06:32 +10:00
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.PorterDuff;
|
2017-03-08 06:42:01 +11:00
|
|
|
import android.graphics.Typeface;
|
2017-12-01 06:12:09 +11:00
|
|
|
import android.graphics.drawable.Drawable;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.support.annotation.Nullable;
|
2017-03-08 06:42:01 +11:00
|
|
|
import android.support.v4.content.ContextCompat;
|
2017-01-08 09:24:02 +11:00
|
|
|
import android.support.v7.widget.RecyclerView;
|
2017-03-08 06:42:01 +11:00
|
|
|
import android.text.SpannableStringBuilder;
|
|
|
|
import android.text.Spanned;
|
2017-11-08 07:31:44 +11:00
|
|
|
import android.text.TextUtils;
|
2017-04-05 06:36:42 +10:00
|
|
|
import android.text.style.StyleSpan;
|
2017-01-08 09:24:02 +11:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2017-11-08 07:31:44 +11:00
|
|
|
import android.widget.CompoundButton;
|
2017-01-23 16:19:30 +11:00
|
|
|
import android.widget.ImageView;
|
2017-01-08 09:24:02 +11:00
|
|
|
import android.widget.TextView;
|
2017-11-08 07:31:44 +11:00
|
|
|
import android.widget.ToggleButton;
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.R;
|
2017-03-09 10:27:37 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Notification;
|
2017-11-08 07:31:44 +11:00
|
|
|
import com.keylesspalace.tusky.entity.Status;
|
2017-12-01 06:12:09 +11:00
|
|
|
import com.keylesspalace.tusky.interfaces.LinkListener;
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.interfaces.StatusActionListener;
|
2017-12-01 06:12:09 +11:00
|
|
|
import com.keylesspalace.tusky.util.CustomEmojiHelper;
|
|
|
|
import com.keylesspalace.tusky.util.DateUtils;
|
|
|
|
import com.keylesspalace.tusky.util.LinkHelper;
|
2017-07-14 15:06:32 +10:00
|
|
|
import com.keylesspalace.tusky.view.RoundedTransformation;
|
2017-07-13 05:54:52 +10:00
|
|
|
import com.keylesspalace.tusky.viewdata.NotificationViewData;
|
|
|
|
import com.keylesspalace.tusky.viewdata.StatusViewData;
|
2017-03-08 06:42:01 +11:00
|
|
|
import com.squareup.picasso.Picasso;
|
2017-02-27 12:14:13 +11:00
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
import java.util.ArrayList;
|
2017-12-01 06:12:09 +11:00
|
|
|
import java.util.Date;
|
2017-01-08 09:24:02 +11:00
|
|
|
import java.util.List;
|
|
|
|
|
2017-07-14 11:31:31 +10:00
|
|
|
public class NotificationsAdapter extends RecyclerView.Adapter {
|
2017-01-23 16:19:30 +11:00
|
|
|
private static final int VIEW_TYPE_MENTION = 0;
|
|
|
|
private static final int VIEW_TYPE_FOOTER = 1;
|
|
|
|
private static final int VIEW_TYPE_STATUS_NOTIFICATION = 2;
|
|
|
|
private static final int VIEW_TYPE_FOLLOW = 3;
|
2017-11-04 08:17:31 +11:00
|
|
|
private static final int VIEW_TYPE_PLACEHOLDER = 4;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-07-13 05:54:52 +10:00
|
|
|
private List<NotificationViewData> notifications;
|
2017-01-23 16:19:30 +11:00
|
|
|
private StatusActionListener statusListener;
|
2017-03-21 07:34:23 +11:00
|
|
|
private NotificationActionListener notificationActionListener;
|
2017-07-01 08:30:25 +10:00
|
|
|
private FooterViewHolder.State footerState;
|
2017-06-26 19:15:47 +10:00
|
|
|
private boolean mediaPreviewEnabled;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public NotificationsAdapter(StatusActionListener statusListener,
|
2017-07-13 05:54:52 +10:00
|
|
|
NotificationActionListener notificationActionListener) {
|
2017-01-23 16:19:30 +11:00
|
|
|
super();
|
|
|
|
notifications = new ArrayList<>();
|
|
|
|
this.statusListener = statusListener;
|
2017-03-21 07:34:23 +11:00
|
|
|
this.notificationActionListener = notificationActionListener;
|
2017-07-01 08:30:25 +10:00
|
|
|
footerState = FooterViewHolder.State.END;
|
2017-06-26 19:15:47 +10:00
|
|
|
mediaPreviewEnabled = true;
|
2017-04-16 03:25:39 +10:00
|
|
|
}
|
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
@Override
|
|
|
|
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
2017-01-23 16:19:30 +11:00
|
|
|
switch (viewType) {
|
|
|
|
default:
|
|
|
|
case VIEW_TYPE_MENTION: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_status, parent, false);
|
|
|
|
return new StatusViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOOTER: {
|
2017-07-01 08:30:25 +10:00
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_footer, parent, false);
|
2017-01-23 16:19:30 +11:00
|
|
|
return new FooterViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_STATUS_NOTIFICATION: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_status_notification, parent, false);
|
|
|
|
return new StatusNotificationViewHolder(view);
|
|
|
|
}
|
|
|
|
case VIEW_TYPE_FOLLOW: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_follow, parent, false);
|
|
|
|
return new FollowViewHolder(view);
|
|
|
|
}
|
2017-11-04 08:17:31 +11:00
|
|
|
case VIEW_TYPE_PLACEHOLDER: {
|
|
|
|
View view = LayoutInflater.from(parent.getContext())
|
|
|
|
.inflate(R.layout.item_status_placeholder, parent, false);
|
|
|
|
return new PlaceholderViewHolder(view);
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(RecyclerView.ViewHolder viewHolder, int position) {
|
2017-01-23 16:19:30 +11:00
|
|
|
if (position < notifications.size()) {
|
2017-07-13 05:54:52 +10:00
|
|
|
NotificationViewData notification = notifications.get(position);
|
2017-11-06 03:11:00 +11:00
|
|
|
if (notification instanceof NotificationViewData.Placeholder) {
|
|
|
|
NotificationViewData.Placeholder placeholder = ((NotificationViewData.Placeholder) notification);
|
|
|
|
PlaceholderViewHolder holder = (PlaceholderViewHolder) viewHolder;
|
|
|
|
holder.setup(!placeholder.isLoading(), statusListener);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
NotificationViewData.Concrete concreteNotificaton =
|
|
|
|
(NotificationViewData.Concrete) notification;
|
|
|
|
Notification.Type type = concreteNotificaton.getType();
|
2017-01-23 16:19:30 +11:00
|
|
|
switch (type) {
|
|
|
|
case MENTION: {
|
|
|
|
StatusViewHolder holder = (StatusViewHolder) viewHolder;
|
2017-11-07 02:19:15 +11:00
|
|
|
StatusViewData.Concrete status = concreteNotificaton.getStatusViewData();
|
2017-07-13 05:54:52 +10:00
|
|
|
holder.setupWithStatus(status,
|
|
|
|
statusListener, mediaPreviewEnabled);
|
2017-01-23 16:19:30 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FAVOURITE:
|
|
|
|
case REBLOG: {
|
|
|
|
StatusNotificationViewHolder holder = (StatusNotificationViewHolder) viewHolder;
|
2017-12-01 06:12:09 +11:00
|
|
|
StatusViewData.Concrete statusViewData = concreteNotificaton.getStatusViewData();
|
2018-03-02 07:10:10 +11:00
|
|
|
|
|
|
|
if(statusViewData == null) {
|
|
|
|
holder.showNotificationContent(false);
|
|
|
|
} else {
|
|
|
|
holder.showNotificationContent(true);
|
|
|
|
|
|
|
|
holder.setDisplayName(statusViewData.getUserFullName());
|
|
|
|
holder.setUsername(statusViewData.getNickname());
|
|
|
|
holder.setCreatedAt(statusViewData.getCreatedAt());
|
|
|
|
|
|
|
|
holder.setAvatars(concreteNotificaton.getStatusViewData().getAvatar(),
|
|
|
|
concreteNotificaton.getAccount().avatar);
|
|
|
|
}
|
2017-12-01 06:12:09 +11:00
|
|
|
|
|
|
|
holder.setMessage(concreteNotificaton, statusListener);
|
2017-11-08 06:36:19 +11:00
|
|
|
holder.setupButtons(notificationActionListener,
|
|
|
|
concreteNotificaton.getAccount().id,
|
|
|
|
concreteNotificaton.getId());
|
2018-03-02 07:10:10 +11:00
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case FOLLOW: {
|
|
|
|
FollowViewHolder holder = (FollowViewHolder) viewHolder;
|
2017-11-06 03:11:00 +11:00
|
|
|
holder.setMessage(concreteNotificaton.getAccount().getDisplayName(),
|
|
|
|
concreteNotificaton.getAccount().username, concreteNotificaton.getAccount().avatar);
|
|
|
|
holder.setupButtons(notificationActionListener, concreteNotificaton.getAccount().id);
|
2017-11-04 08:17:31 +11:00
|
|
|
break;
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
2017-07-01 08:30:25 +10:00
|
|
|
} else {
|
|
|
|
FooterViewHolder holder = (FooterViewHolder) viewHolder;
|
|
|
|
holder.setState(footerState);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemCount() {
|
2017-01-23 16:19:30 +11:00
|
|
|
return notifications.size() + 1;
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
if (position == notifications.size()) {
|
|
|
|
return VIEW_TYPE_FOOTER;
|
|
|
|
} else {
|
2017-07-13 05:54:52 +10:00
|
|
|
NotificationViewData notification = notifications.get(position);
|
2017-11-06 03:11:00 +11:00
|
|
|
if (notification instanceof NotificationViewData.Concrete) {
|
|
|
|
NotificationViewData.Concrete concrete = ((NotificationViewData.Concrete) notification);
|
|
|
|
switch (concrete.getType()) {
|
|
|
|
default:
|
|
|
|
case MENTION: {
|
|
|
|
return VIEW_TYPE_MENTION;
|
|
|
|
}
|
|
|
|
case FAVOURITE:
|
|
|
|
case REBLOG: {
|
|
|
|
return VIEW_TYPE_STATUS_NOTIFICATION;
|
|
|
|
}
|
|
|
|
case FOLLOW: {
|
|
|
|
return VIEW_TYPE_FOLLOW;
|
|
|
|
}
|
2017-11-04 08:17:31 +11:00
|
|
|
}
|
2017-11-06 03:11:00 +11:00
|
|
|
} else if (notification instanceof NotificationViewData.Placeholder) {
|
|
|
|
return VIEW_TYPE_PLACEHOLDER;
|
|
|
|
} else {
|
|
|
|
throw new AssertionError("Unknown notification type");
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 05:54:52 +10:00
|
|
|
public void update(@Nullable List<NotificationViewData> newNotifications) {
|
2017-03-20 18:03:03 +11:00
|
|
|
if (newNotifications == null || newNotifications.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-07-13 05:54:52 +10:00
|
|
|
notifications.clear();
|
|
|
|
notifications.addAll(newNotifications);
|
2017-01-08 09:24:02 +11:00
|
|
|
notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
|
2017-07-13 05:54:52 +10:00
|
|
|
public void updateItemWithNotify(int position, NotificationViewData notification,
|
|
|
|
boolean notifyAdapter) {
|
|
|
|
notifications.set(position, notification);
|
2017-12-02 08:13:47 +11:00
|
|
|
if (notifyAdapter) notifyItemChanged(position);
|
2017-06-30 16:31:58 +10:00
|
|
|
}
|
|
|
|
|
2017-07-14 11:31:31 +10:00
|
|
|
public void addItems(List<NotificationViewData> newNotifications) {
|
2017-07-13 05:54:52 +10:00
|
|
|
notifications.addAll(newNotifications);
|
|
|
|
notifyItemRangeInserted(notifications.size(), newNotifications.size());
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
|
2017-06-26 19:15:47 +10:00
|
|
|
public void clear() {
|
|
|
|
notifications.clear();
|
|
|
|
notifyDataSetChanged();
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2017-07-01 08:30:25 +10:00
|
|
|
public void setFooterState(FooterViewHolder.State newFooterState) {
|
2017-06-26 19:15:47 +10:00
|
|
|
footerState = newFooterState;
|
2017-04-22 10:58:44 +10:00
|
|
|
}
|
|
|
|
|
2017-06-26 19:15:47 +10:00
|
|
|
public void setMediaPreviewEnabled(boolean enabled) {
|
|
|
|
mediaPreviewEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public interface NotificationActionListener {
|
2017-03-03 11:25:35 +11:00
|
|
|
void onViewAccount(String id);
|
2017-11-08 06:36:19 +11:00
|
|
|
|
|
|
|
void onViewStatusForNotificationId(String notificationId);
|
2017-12-01 06:12:09 +11:00
|
|
|
|
|
|
|
void onExpandedChange(boolean expanded, int position);
|
|
|
|
|
2017-02-27 12:14:13 +11:00
|
|
|
}
|
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
private static class FollowViewHolder extends RecyclerView.ViewHolder {
|
2017-01-08 09:24:02 +11:00
|
|
|
private TextView message;
|
2017-02-27 12:14:13 +11:00
|
|
|
private TextView usernameView;
|
|
|
|
private TextView displayNameView;
|
2017-03-08 06:42:01 +11:00
|
|
|
private ImageView avatar;
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
FollowViewHolder(View itemView) {
|
2017-01-08 09:24:02 +11:00
|
|
|
super(itemView);
|
2017-10-18 09:20:26 +11:00
|
|
|
message = itemView.findViewById(R.id.notification_text);
|
|
|
|
usernameView = itemView.findViewById(R.id.notification_username);
|
|
|
|
displayNameView = itemView.findViewById(R.id.notification_display_name);
|
|
|
|
avatar = itemView.findViewById(R.id.notification_avatar);
|
2017-12-02 22:22:52 +11:00
|
|
|
//workaround because Android < API 21 does not support setting drawableLeft from xml when it is a vector image
|
|
|
|
Drawable followIcon = ContextCompat.getDrawable(message.getContext(), R.drawable.ic_person_add_24dp);
|
|
|
|
message.setCompoundDrawablesWithIntrinsicBounds(followIcon, null, null, null);
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
|
2017-02-27 12:14:13 +11:00
|
|
|
void setMessage(String displayName, String username, String avatarUrl) {
|
2017-01-08 09:24:02 +11:00
|
|
|
Context context = message.getContext();
|
2017-02-27 12:14:13 +11:00
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
String format = context.getString(R.string.notification_follow_format);
|
|
|
|
String wholeMessage = String.format(format, displayName);
|
|
|
|
message.setText(wholeMessage);
|
2017-02-27 12:14:13 +11:00
|
|
|
|
|
|
|
format = context.getString(R.string.status_username_format);
|
|
|
|
String wholeUsername = String.format(format, username);
|
|
|
|
usernameView.setText(wholeUsername);
|
|
|
|
|
|
|
|
displayNameView.setText(displayName);
|
|
|
|
|
2018-01-16 03:06:21 +11:00
|
|
|
if (TextUtils.isEmpty(avatarUrl)) {
|
|
|
|
avatar.setImageResource(R.drawable.avatar_default);
|
|
|
|
} else {
|
|
|
|
Picasso.with(context)
|
|
|
|
.load(avatarUrl)
|
|
|
|
.fit()
|
|
|
|
.transform(new RoundedTransformation(7, 0))
|
|
|
|
.placeholder(R.drawable.avatar_default)
|
|
|
|
.into(avatar);
|
|
|
|
}
|
2017-02-27 12:14:13 +11:00
|
|
|
}
|
|
|
|
|
2017-03-21 07:34:23 +11:00
|
|
|
void setupButtons(final NotificationActionListener listener, final String accountId) {
|
2017-12-02 22:22:52 +11:00
|
|
|
avatar.setOnClickListener(v -> listener.onViewAccount(accountId));
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-08 06:36:19 +11:00
|
|
|
private static class StatusNotificationViewHolder extends RecyclerView.ViewHolder
|
2017-11-08 07:31:44 +11:00
|
|
|
implements View.OnClickListener, ToggleButton.OnCheckedChangeListener {
|
2017-11-08 06:36:19 +11:00
|
|
|
private final TextView message;
|
2018-03-02 07:10:10 +11:00
|
|
|
private final View statusNameBar;
|
2017-12-01 06:12:09 +11:00
|
|
|
private final TextView displayName;
|
|
|
|
private final TextView username;
|
|
|
|
private final TextView timestampInfo;
|
2017-11-08 06:36:19 +11:00
|
|
|
private final TextView statusContent;
|
|
|
|
private final ViewGroup container;
|
|
|
|
private final ImageView statusAvatar;
|
|
|
|
private final ImageView notificationAvatar;
|
2017-11-08 07:31:44 +11:00
|
|
|
private final View contentWarningBar;
|
|
|
|
private final TextView contentWarningDescriptionTextView;
|
|
|
|
private final ToggleButton contentWarningButton;
|
2017-11-08 06:36:19 +11:00
|
|
|
|
|
|
|
private String accountId;
|
|
|
|
private String notificationId;
|
2017-12-01 06:12:09 +11:00
|
|
|
private NotificationActionListener notificationActionListener;
|
2017-11-08 07:31:44 +11:00
|
|
|
private StatusViewData.Concrete statusViewData;
|
2017-01-23 16:19:30 +11:00
|
|
|
|
2017-02-23 06:13:51 +11:00
|
|
|
StatusNotificationViewHolder(View itemView) {
|
2017-01-23 16:19:30 +11:00
|
|
|
super(itemView);
|
2017-12-01 06:12:09 +11:00
|
|
|
message = itemView.findViewById(R.id.notification_top_text);
|
2018-03-02 07:10:10 +11:00
|
|
|
statusNameBar = itemView.findViewById(R.id.status_name_bar);
|
2017-12-01 06:12:09 +11:00
|
|
|
displayName = itemView.findViewById(R.id.status_display_name);
|
|
|
|
username = itemView.findViewById(R.id.status_username);
|
|
|
|
timestampInfo = itemView.findViewById(R.id.status_timestamp_info);
|
2017-10-18 09:20:26 +11:00
|
|
|
statusContent = itemView.findViewById(R.id.notification_content);
|
|
|
|
container = itemView.findViewById(R.id.notification_container);
|
|
|
|
statusAvatar = itemView.findViewById(R.id.notification_status_avatar);
|
|
|
|
notificationAvatar = itemView.findViewById(R.id.notification_notification_avatar);
|
2017-11-08 07:31:44 +11:00
|
|
|
contentWarningBar = itemView.findViewById(R.id.notification_content_warning_bar);
|
|
|
|
contentWarningDescriptionTextView = itemView.findViewById(R.id.notification_content_warning_description);
|
|
|
|
contentWarningButton = itemView.findViewById(R.id.notification_content_warning_button);
|
2017-11-08 06:36:19 +11:00
|
|
|
|
2017-07-14 15:06:32 +10:00
|
|
|
int darkerFilter = Color.rgb(123, 123, 123);
|
|
|
|
statusAvatar.setColorFilter(darkerFilter, PorterDuff.Mode.MULTIPLY);
|
|
|
|
notificationAvatar.setColorFilter(darkerFilter, PorterDuff.Mode.MULTIPLY);
|
2017-11-08 06:36:19 +11:00
|
|
|
|
|
|
|
container.setOnClickListener(this);
|
2017-12-01 06:12:09 +11:00
|
|
|
message.setOnClickListener(this);
|
|
|
|
statusContent.setOnClickListener(this);
|
2017-11-08 07:31:44 +11:00
|
|
|
contentWarningButton.setOnCheckedChangeListener(this);
|
2017-01-23 16:19:30 +11:00
|
|
|
}
|
|
|
|
|
2018-03-02 07:10:10 +11:00
|
|
|
private void showNotificationContent(boolean show) {
|
|
|
|
statusNameBar.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
contentWarningBar.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
statusContent.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
statusAvatar.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
notificationAvatar.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-12-01 06:12:09 +11:00
|
|
|
private void setDisplayName(String name) {
|
|
|
|
displayName.setText(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
private 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setCreatedAt(@Nullable Date createdAt) {
|
|
|
|
// This is the visible timestampInfo.
|
|
|
|
String readout;
|
|
|
|
/* This one is for screen-readers. Frequently, they would mispronounce timestamps like "17m"
|
|
|
|
* as 17 meters instead of minutes. */
|
|
|
|
CharSequence readoutAloud;
|
|
|
|
if (createdAt != null) {
|
|
|
|
long then = createdAt.getTime();
|
|
|
|
long now = new Date().getTime();
|
|
|
|
readout = DateUtils.getRelativeTimeSpanString(timestampInfo.getContext(), then, now);
|
|
|
|
readoutAloud = android.text.format.DateUtils.getRelativeTimeSpanString(then, now,
|
|
|
|
android.text.format.DateUtils.SECOND_IN_MILLIS,
|
|
|
|
android.text.format.DateUtils.FORMAT_ABBREV_RELATIVE);
|
|
|
|
} else {
|
|
|
|
// unknown minutes~
|
|
|
|
readout = "?m";
|
|
|
|
readoutAloud = "? minutes";
|
|
|
|
}
|
|
|
|
timestampInfo.setText(readout);
|
|
|
|
timestampInfo.setContentDescription(readoutAloud);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setMessage(NotificationViewData.Concrete notificationViewData, LinkListener listener) {
|
|
|
|
this.statusViewData = notificationViewData.getStatusViewData();
|
|
|
|
|
|
|
|
String displayName = notificationViewData.getAccount().getDisplayName();
|
|
|
|
Notification.Type type = notificationViewData.getType();
|
2017-11-08 07:31:44 +11:00
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
Context context = message.getContext();
|
|
|
|
String format;
|
2017-12-01 06:12:09 +11:00
|
|
|
Drawable icon;
|
2017-01-08 09:24:02 +11:00
|
|
|
switch (type) {
|
2017-01-23 16:19:30 +11:00
|
|
|
default:
|
2017-01-08 09:24:02 +11:00
|
|
|
case FAVOURITE: {
|
2017-12-01 06:12:09 +11:00
|
|
|
icon = ContextCompat.getDrawable(context, R.drawable.ic_star_24dp);
|
|
|
|
if (icon != null) {
|
|
|
|
icon.setColorFilter(ContextCompat.getColor(context,
|
|
|
|
R.color.status_favourite_button_marked_dark), PorterDuff.Mode.SRC_ATOP);
|
|
|
|
}
|
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
format = context.getString(R.string.notification_favourite_format);
|
2017-01-08 09:24:02 +11:00
|
|
|
break;
|
|
|
|
}
|
2017-01-23 16:19:30 +11:00
|
|
|
case REBLOG: {
|
2017-12-01 06:12:09 +11:00
|
|
|
icon = ContextCompat.getDrawable(context, R.drawable.ic_repeat_24dp);
|
|
|
|
if(icon != null) {
|
|
|
|
icon.setColorFilter(ContextCompat.getColor(context,
|
|
|
|
R.color.color_accent_dark), PorterDuff.Mode.SRC_ATOP);
|
|
|
|
}
|
|
|
|
|
2017-01-23 16:19:30 +11:00
|
|
|
format = context.getString(R.string.notification_reblog_format);
|
2017-01-08 09:24:02 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-12-01 06:12:09 +11:00
|
|
|
message.setCompoundDrawablesWithIntrinsicBounds(icon, null, null, null);
|
2017-01-23 16:19:30 +11:00
|
|
|
String wholeMessage = String.format(format, displayName);
|
2017-03-08 06:42:01 +11:00
|
|
|
final SpannableStringBuilder str = new SpannableStringBuilder(wholeMessage);
|
2017-04-05 06:36:42 +10:00
|
|
|
str.setSpan(new StyleSpan(Typeface.BOLD), 0, displayName.length(),
|
2017-03-08 14:11:03 +11:00
|
|
|
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2017-03-08 06:42:01 +11:00
|
|
|
message.setText(str);
|
2017-11-08 07:31:44 +11:00
|
|
|
|
2018-03-02 07:10:10 +11:00
|
|
|
if (statusViewData != null) {
|
|
|
|
boolean hasSpoiler = !TextUtils.isEmpty(statusViewData.getSpoilerText());
|
|
|
|
contentWarningBar.setVisibility(hasSpoiler ? View.VISIBLE : View.GONE);
|
|
|
|
setupContentAndSpoiler(notificationViewData, listener);
|
|
|
|
}
|
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
2017-03-21 07:34:23 +11:00
|
|
|
|
2017-11-08 06:36:19 +11:00
|
|
|
void setupButtons(final NotificationActionListener listener, final String accountId,
|
|
|
|
final String notificationId) {
|
2017-12-01 06:12:09 +11:00
|
|
|
this.notificationActionListener = listener;
|
2017-11-08 06:36:19 +11:00
|
|
|
this.accountId = accountId;
|
|
|
|
this.notificationId = notificationId;
|
2017-03-21 07:34:23 +11:00
|
|
|
}
|
2017-07-14 15:06:32 +10:00
|
|
|
|
|
|
|
void setAvatars(@Nullable String statusAvatarUrl, @Nullable String notificationAvatarUrl) {
|
|
|
|
Context context = statusAvatar.getContext();
|
|
|
|
|
2018-01-16 03:06:21 +11:00
|
|
|
if (TextUtils.isEmpty(statusAvatarUrl)) {
|
2017-07-14 15:06:32 +10:00
|
|
|
statusAvatar.setImageResource(R.drawable.avatar_default);
|
|
|
|
} else {
|
|
|
|
Picasso.with(context)
|
|
|
|
.load(statusAvatarUrl)
|
|
|
|
.placeholder(R.drawable.avatar_default)
|
|
|
|
.transform(new RoundedTransformation(7, 0))
|
|
|
|
.into(statusAvatar);
|
|
|
|
}
|
|
|
|
|
2018-01-16 03:06:21 +11:00
|
|
|
if (TextUtils.isEmpty(notificationAvatarUrl)) {
|
2017-12-01 06:12:09 +11:00
|
|
|
notificationAvatar.setImageResource(R.drawable.avatar_default);
|
2017-07-14 15:06:32 +10:00
|
|
|
} else {
|
|
|
|
Picasso.with(context)
|
|
|
|
.load(notificationAvatarUrl)
|
2017-12-01 06:12:09 +11:00
|
|
|
.placeholder(R.drawable.avatar_default)
|
2017-07-14 15:06:32 +10:00
|
|
|
.fit()
|
|
|
|
.transform(new RoundedTransformation(7, 0))
|
|
|
|
.into(notificationAvatar);
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 06:36:19 +11:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
switch (v.getId()) {
|
|
|
|
case R.id.notification_container:
|
2017-12-01 06:12:09 +11:00
|
|
|
case R.id.notification_content:
|
|
|
|
if (notificationActionListener != null) notificationActionListener.onViewStatusForNotificationId(notificationId);
|
2017-11-08 06:36:19 +11:00
|
|
|
break;
|
2017-12-01 06:12:09 +11:00
|
|
|
case R.id.notification_top_text:
|
|
|
|
if (notificationActionListener != null) notificationActionListener.onViewAccount(accountId);
|
2017-11-08 06:36:19 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 07:31:44 +11:00
|
|
|
|
2017-12-01 06:12:09 +11:00
|
|
|
private void setupContentAndSpoiler(NotificationViewData.Concrete notificationViewData, final LinkListener listener) {
|
|
|
|
|
|
|
|
boolean shouldShowContentIfSpoiler = notificationViewData.isExpanded();
|
2017-11-08 07:31:44 +11:00
|
|
|
boolean hasSpoiler = !TextUtils.isEmpty(statusViewData.getSpoilerText());
|
|
|
|
if (!shouldShowContentIfSpoiler && hasSpoiler) {
|
2017-12-01 06:12:09 +11:00
|
|
|
statusContent.setVisibility(View.GONE);
|
2017-11-08 07:31:44 +11:00
|
|
|
} else {
|
2017-12-01 06:12:09 +11:00
|
|
|
statusContent.setVisibility(View.VISIBLE);
|
2017-11-08 07:31:44 +11:00
|
|
|
}
|
2017-12-01 06:12:09 +11:00
|
|
|
|
|
|
|
Spanned content = statusViewData.getContent();
|
|
|
|
List<Status.Emoji> emojis = statusViewData.getEmojis();
|
|
|
|
|
|
|
|
Spanned emojifiedText = CustomEmojiHelper.emojifyText(content, emojis, statusContent);
|
|
|
|
|
|
|
|
LinkHelper.setClickableText(statusContent, emojifiedText, statusViewData.getMentions(), listener);
|
|
|
|
|
|
|
|
|
|
|
|
Spanned emojifiedContentWarning =
|
|
|
|
CustomEmojiHelper.emojifyString(statusViewData.getSpoilerText(), statusViewData.getEmojis(), contentWarningDescriptionTextView);
|
|
|
|
contentWarningDescriptionTextView.setText(emojifiedContentWarning);
|
2017-11-08 07:31:44 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
|
2017-12-01 06:12:09 +11:00
|
|
|
if (getAdapterPosition() != RecyclerView.NO_POSITION) {
|
|
|
|
notificationActionListener.onExpandedChange(isChecked, getAdapterPosition());
|
|
|
|
}
|
|
|
|
if (isChecked) {
|
|
|
|
statusContent.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
statusContent.setVisibility(View.GONE);
|
|
|
|
}
|
2017-11-08 07:31:44 +11:00
|
|
|
}
|
2017-01-08 09:24:02 +11:00
|
|
|
}
|
|
|
|
}
|