|
|
|
@ -21,6 +21,7 @@ import com.google.android.material.tabs.TabLayout;
|
|
|
|
|
import com.google.android.material.tabs.TabLayoutMediator;
|
|
|
|
|
|
|
|
|
|
import org.session.libsession.utilities.ThemeUtil;
|
|
|
|
|
import org.session.libsignal.utilities.Log;
|
|
|
|
|
import org.thoughtcrime.securesms.components.emoji.EmojiImageView;
|
|
|
|
|
import org.thoughtcrime.securesms.database.model.MessageId;
|
|
|
|
|
import org.thoughtcrime.securesms.util.LifecycleDisposable;
|
|
|
|
@ -35,6 +36,7 @@ public final class ReactionsDialogFragment extends BottomSheetDialogFragment imp
|
|
|
|
|
private static final String ARGS_MESSAGE_ID = "reactions.args.message.id";
|
|
|
|
|
private static final String ARGS_IS_MMS = "reactions.args.is.mms";
|
|
|
|
|
private static final String ARGS_IS_MODERATOR = "reactions.args.is.moderator";
|
|
|
|
|
private static final String ARGS_EMOJI = "reactions.args.emoji";
|
|
|
|
|
|
|
|
|
|
private ViewPager2 recipientPagerView;
|
|
|
|
|
private ReactionViewPagerAdapter recipientsAdapter;
|
|
|
|
@ -42,13 +44,14 @@ public final class ReactionsDialogFragment extends BottomSheetDialogFragment imp
|
|
|
|
|
|
|
|
|
|
private final LifecycleDisposable disposables = new LifecycleDisposable();
|
|
|
|
|
|
|
|
|
|
public static DialogFragment create(MessageId messageId, boolean isUserModerator) {
|
|
|
|
|
public static DialogFragment create(MessageId messageId, boolean isUserModerator, @Nullable String emoji) {
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
|
DialogFragment fragment = new ReactionsDialogFragment();
|
|
|
|
|
|
|
|
|
|
args.putLong(ARGS_MESSAGE_ID, messageId.getId());
|
|
|
|
|
args.putBoolean(ARGS_IS_MMS, messageId.isMms());
|
|
|
|
|
args.putBoolean(ARGS_IS_MODERATOR, isUserModerator);
|
|
|
|
|
args.putString(ARGS_EMOJI, emoji);
|
|
|
|
|
|
|
|
|
|
fragment.setArguments(args);
|
|
|
|
|
|
|
|
|
@ -168,6 +171,18 @@ public final class ReactionsDialogFragment extends BottomSheetDialogFragment imp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
recipientsAdapter.submitList(emojiCounts);
|
|
|
|
|
|
|
|
|
|
// select the tab based on which emoji the user long pressed on
|
|
|
|
|
TabLayout emojiTabs = requireDialog().findViewById(R.id.emoji_tabs);
|
|
|
|
|
String emoji = requireArguments().getString(ARGS_EMOJI);
|
|
|
|
|
int tabIndex = 0;
|
|
|
|
|
for (int i = 0; i < emojiCounts.size(); i++) {
|
|
|
|
|
if(emojiCounts.get(i).getBaseEmoji().equals(emoji)){
|
|
|
|
|
tabIndex = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
emojiTabs.selectTab(emojiTabs.getTabAt(tabIndex));
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|