2018-02-21 14:46:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018, Daniel Gultsch All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
* other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package eu.siacs.conversations.ui;
|
|
|
|
|
2018-02-21 22:07:53 +00:00
|
|
|
import android.app.Activity;
|
2020-12-01 19:31:30 +00:00
|
|
|
import android.app.AlertDialog;
|
2018-02-23 10:35:13 +00:00
|
|
|
import android.app.Fragment;
|
2018-04-25 18:25:28 +00:00
|
|
|
import android.content.Intent;
|
2018-04-06 11:49:50 +00:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Paint;
|
2018-02-21 14:46:56 +00:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.LayoutInflater;
|
2018-04-25 18:25:28 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2018-02-21 14:46:56 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2020-12-11 10:29:23 +00:00
|
|
|
import android.widget.Toast;
|
2018-02-21 14:46:56 +00:00
|
|
|
|
2021-01-23 08:25:34 +00:00
|
|
|
import androidx.databinding.DataBindingUtil;
|
|
|
|
import androidx.recyclerview.widget.ItemTouchHelper;
|
|
|
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
|
|
|
|
import com.google.android.material.snackbar.Snackbar;
|
2020-12-01 19:31:30 +00:00
|
|
|
import com.google.common.collect.Collections2;
|
|
|
|
|
2018-02-21 14:46:56 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2020-12-01 19:31:30 +00:00
|
|
|
import java.util.concurrent.atomic.AtomicReference;
|
2018-02-21 14:46:56 +00:00
|
|
|
|
|
|
|
import eu.siacs.conversations.Config;
|
|
|
|
import eu.siacs.conversations.R;
|
|
|
|
import eu.siacs.conversations.databinding.FragmentConversationsOverviewBinding;
|
2020-12-01 19:31:30 +00:00
|
|
|
import eu.siacs.conversations.entities.Account;
|
2018-02-21 14:46:56 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversation;
|
2019-02-06 13:45:51 +00:00
|
|
|
import eu.siacs.conversations.entities.Conversational;
|
2018-02-21 14:46:56 +00:00
|
|
|
import eu.siacs.conversations.ui.adapter.ConversationAdapter;
|
2018-02-22 18:49:39 +00:00
|
|
|
import eu.siacs.conversations.ui.interfaces.OnConversationArchived;
|
2018-02-21 14:46:56 +00:00
|
|
|
import eu.siacs.conversations.ui.interfaces.OnConversationSelected;
|
2018-04-25 18:25:28 +00:00
|
|
|
import eu.siacs.conversations.ui.util.MenuDoubleTabUtil;
|
2018-04-06 11:49:50 +00:00
|
|
|
import eu.siacs.conversations.ui.util.PendingActionHelper;
|
2018-02-22 18:49:39 +00:00
|
|
|
import eu.siacs.conversations.ui.util.PendingItem;
|
2018-02-25 17:00:27 +00:00
|
|
|
import eu.siacs.conversations.ui.util.ScrollState;
|
2018-09-12 12:37:41 +00:00
|
|
|
import eu.siacs.conversations.ui.util.StyledAttributes;
|
2020-09-01 14:50:25 +00:00
|
|
|
import eu.siacs.conversations.utils.AccountUtils;
|
2020-12-01 19:31:30 +00:00
|
|
|
import eu.siacs.conversations.utils.EasyOnboardingInvite;
|
2018-04-21 18:38:14 +00:00
|
|
|
import eu.siacs.conversations.utils.ThemeHelper;
|
2018-02-21 14:46:56 +00:00
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
import static androidx.recyclerview.widget.ItemTouchHelper.LEFT;
|
|
|
|
import static androidx.recyclerview.widget.ItemTouchHelper.RIGHT;
|
2018-04-06 11:49:50 +00:00
|
|
|
|
|
|
|
public class ConversationsOverviewFragment extends XmppFragment {
|
2018-02-21 14:46:56 +00:00
|
|
|
|
2018-02-25 17:00:27 +00:00
|
|
|
private static final String STATE_SCROLL_POSITION = ConversationsOverviewFragment.class.getName()+".scroll_state";
|
|
|
|
|
2018-02-21 14:46:56 +00:00
|
|
|
private final List<Conversation> conversations = new ArrayList<>();
|
2018-02-23 11:53:47 +00:00
|
|
|
private final PendingItem<Conversation> swipedConversation = new PendingItem<>();
|
2018-02-25 17:00:27 +00:00
|
|
|
private final PendingItem<ScrollState> pendingScrollState = new PendingItem<>();
|
2018-02-23 11:53:47 +00:00
|
|
|
private FragmentConversationsOverviewBinding binding;
|
2018-02-21 14:46:56 +00:00
|
|
|
private ConversationAdapter conversationsAdapter;
|
2018-02-21 22:07:53 +00:00
|
|
|
private XmppActivity activity;
|
2018-04-25 10:56:48 +00:00
|
|
|
private float mSwipeEscapeVelocity = 0f;
|
2021-01-23 08:25:34 +00:00
|
|
|
private final PendingActionHelper pendingActionHelper = new PendingActionHelper();
|
2018-04-06 11:49:50 +00:00
|
|
|
|
2021-01-23 08:25:34 +00:00
|
|
|
private final ItemTouchHelper.SimpleCallback callback = new ItemTouchHelper.SimpleCallback(0,LEFT|RIGHT) {
|
2018-04-06 11:49:50 +00:00
|
|
|
@Override
|
|
|
|
public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) {
|
|
|
|
//todo maybe we can manually changing the position of the conversation
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-25 10:56:48 +00:00
|
|
|
@Override
|
|
|
|
public float getSwipeEscapeVelocity (float defaultValue) {
|
|
|
|
return mSwipeEscapeVelocity;
|
|
|
|
}
|
|
|
|
|
2018-04-06 11:49:50 +00:00
|
|
|
@Override
|
|
|
|
public void onChildDraw(Canvas c, RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder,
|
|
|
|
float dX, float dY, int actionState, boolean isCurrentlyActive) {
|
|
|
|
super.onChildDraw(c, recyclerView, viewHolder, dX, dY, actionState, isCurrentlyActive);
|
|
|
|
if(actionState != ItemTouchHelper.ACTION_STATE_IDLE){
|
|
|
|
Paint paint = new Paint();
|
2018-09-12 12:37:41 +00:00
|
|
|
paint.setColor(StyledAttributes.getColor(activity,R.attr.conversations_overview_background));
|
2018-04-06 11:49:50 +00:00
|
|
|
paint.setStyle(Paint.Style.FILL);
|
|
|
|
c.drawRect(viewHolder.itemView.getLeft(),viewHolder.itemView.getTop()
|
|
|
|
,viewHolder.itemView.getRight(),viewHolder.itemView.getBottom(), paint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void clearView(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {
|
|
|
|
super.clearView(recyclerView, viewHolder);
|
|
|
|
viewHolder.itemView.setAlpha(1f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSwiped(RecyclerView.ViewHolder viewHolder, int direction) {
|
|
|
|
pendingActionHelper.execute();
|
|
|
|
int position = viewHolder.getLayoutPosition();
|
|
|
|
try {
|
|
|
|
swipedConversation.push(conversations.get(position));
|
|
|
|
} catch (IndexOutOfBoundsException e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
conversationsAdapter.remove(swipedConversation.peek(), position);
|
|
|
|
activity.xmppConnectionService.markRead(swipedConversation.peek());
|
|
|
|
|
|
|
|
if (position == 0 && conversationsAdapter.getItemCount() == 0) {
|
|
|
|
final Conversation c = swipedConversation.pop();
|
|
|
|
activity.xmppConnectionService.archiveConversation(c);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final boolean formerlySelected = ConversationFragment.getConversation(getActivity()) == swipedConversation.peek();
|
|
|
|
if (activity instanceof OnConversationArchived) {
|
|
|
|
((OnConversationArchived) activity).onConversationArchived(swipedConversation.peek());
|
|
|
|
}
|
2019-02-06 13:45:51 +00:00
|
|
|
final Conversation c = swipedConversation.peek();
|
|
|
|
final int title;
|
|
|
|
if (c.getMode() == Conversational.MODE_MULTI) {
|
|
|
|
if (c.getMucOptions().isPrivateAndNonAnonymous()) {
|
|
|
|
title = R.string.title_undo_swipe_out_group_chat;
|
|
|
|
} else {
|
|
|
|
title = R.string.title_undo_swipe_out_channel;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
title = R.string.title_undo_swipe_out_conversation;
|
|
|
|
}
|
2018-04-06 11:49:50 +00:00
|
|
|
|
2018-04-21 18:38:14 +00:00
|
|
|
final Snackbar snackbar = Snackbar.make(binding.list, title, 5000)
|
2018-04-06 11:49:50 +00:00
|
|
|
.setAction(R.string.undo, v -> {
|
|
|
|
pendingActionHelper.undo();
|
2019-02-06 13:45:51 +00:00
|
|
|
Conversation conversation = swipedConversation.pop();
|
|
|
|
conversationsAdapter.insert(conversation, position);
|
2018-04-06 11:49:50 +00:00
|
|
|
if (formerlySelected) {
|
|
|
|
if (activity instanceof OnConversationSelected) {
|
|
|
|
((OnConversationSelected) activity).onConversationSelected(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LinearLayoutManager layoutManager = (LinearLayoutManager) binding.list.getLayoutManager();
|
|
|
|
if (position > layoutManager.findLastVisibleItemPosition()) {
|
|
|
|
binding.list.smoothScrollToPosition(position);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.addCallback(new Snackbar.Callback() {
|
|
|
|
@Override
|
|
|
|
public void onDismissed(Snackbar transientBottomBar, int event) {
|
|
|
|
switch (event) {
|
|
|
|
case DISMISS_EVENT_SWIPE:
|
|
|
|
case DISMISS_EVENT_TIMEOUT:
|
|
|
|
pendingActionHelper.execute();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-04-21 18:38:14 +00:00
|
|
|
});
|
2018-06-25 18:04:30 +00:00
|
|
|
|
|
|
|
pendingActionHelper.push(() -> {
|
|
|
|
if (snackbar.isShownOrQueued()) {
|
|
|
|
snackbar.dismiss();
|
|
|
|
}
|
2019-02-06 13:45:51 +00:00
|
|
|
final Conversation conversation = swipedConversation.pop();
|
|
|
|
if(conversation != null){
|
|
|
|
if (!conversation.isRead() && conversation.getMode() == Conversation.MODE_SINGLE) {
|
2018-06-25 18:04:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
activity.xmppConnectionService.archiveConversation(c);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-04-28 14:32:23 +00:00
|
|
|
ThemeHelper.fix(snackbar);
|
2018-04-21 18:38:14 +00:00
|
|
|
snackbar.show();
|
2018-04-06 11:49:50 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-04 14:02:55 +00:00
|
|
|
private ItemTouchHelper touchHelper;
|
2018-02-21 14:46:56 +00:00
|
|
|
|
2018-02-23 11:53:47 +00:00
|
|
|
public static Conversation getSuggestion(Activity activity) {
|
2018-02-24 11:53:02 +00:00
|
|
|
final Conversation exception;
|
|
|
|
Fragment fragment = activity.getFragmentManager().findFragmentById(R.id.main_fragment);
|
2019-04-08 14:32:10 +00:00
|
|
|
if (fragment instanceof ConversationsOverviewFragment) {
|
2018-02-24 11:53:02 +00:00
|
|
|
exception = ((ConversationsOverviewFragment) fragment).swipedConversation.peek();
|
|
|
|
} else {
|
|
|
|
exception = null;
|
|
|
|
}
|
|
|
|
return getSuggestion(activity, exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Conversation getSuggestion(Activity activity, Conversation exception) {
|
2018-02-23 11:53:47 +00:00
|
|
|
Fragment fragment = activity.getFragmentManager().findFragmentById(R.id.main_fragment);
|
2019-04-08 14:32:10 +00:00
|
|
|
if (fragment instanceof ConversationsOverviewFragment) {
|
2018-02-23 11:53:47 +00:00
|
|
|
List<Conversation> conversations = ((ConversationsOverviewFragment) fragment).conversations;
|
|
|
|
if (conversations.size() > 0) {
|
2018-02-24 11:53:02 +00:00
|
|
|
Conversation suggestion = conversations.get(0);
|
|
|
|
if (suggestion == exception) {
|
|
|
|
if (conversations.size() > 1) {
|
|
|
|
return conversations.get(1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return suggestion;
|
|
|
|
}
|
2018-02-23 11:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
2018-02-22 18:49:39 +00:00
|
|
|
|
2018-02-25 17:00:27 +00:00
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle savedInstanceState) {
|
|
|
|
super.onActivityCreated(savedInstanceState);
|
|
|
|
if (savedInstanceState == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pendingScrollState.push(savedInstanceState.getParcelable(STATE_SCROLL_POSITION));
|
|
|
|
}
|
|
|
|
|
2018-02-21 14:46:56 +00:00
|
|
|
@Override
|
2018-02-21 22:07:53 +00:00
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
if (activity instanceof XmppActivity) {
|
|
|
|
this.activity = (XmppActivity) activity;
|
2018-02-21 14:46:56 +00:00
|
|
|
} else {
|
2018-02-21 22:07:53 +00:00
|
|
|
throw new IllegalStateException("Trying to attach fragment to activity that is not an XmppActivity");
|
2018-02-21 14:46:56 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-04 14:02:55 +00:00
|
|
|
@Override
|
|
|
|
public void onDestroyView() {
|
|
|
|
Log.d(Config.LOGTAG,"ConversationsOverviewFragment.onDestroyView()");
|
|
|
|
super.onDestroyView();
|
|
|
|
this.binding = null;
|
|
|
|
this.conversationsAdapter = null;
|
|
|
|
this.touchHelper = null;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void onDestroy() {
|
|
|
|
Log.d(Config.LOGTAG,"ConversationsOverviewFragment.onDestroy()");
|
|
|
|
super.onDestroy();
|
2018-02-21 14:46:56 +00:00
|
|
|
|
2020-10-04 14:02:55 +00:00
|
|
|
}
|
2018-04-06 11:49:50 +00:00
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
Log.d(Config.LOGTAG,"ConversationsOverviewFragment.onPause()");
|
|
|
|
pendingActionHelper.execute();
|
|
|
|
super.onPause();
|
|
|
|
}
|
|
|
|
|
2018-02-23 11:53:47 +00:00
|
|
|
@Override
|
|
|
|
public void onDetach() {
|
|
|
|
super.onDetach();
|
|
|
|
this.activity = null;
|
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setHasOptionsMenu(true);
|
|
|
|
}
|
|
|
|
|
2018-02-21 14:46:56 +00:00
|
|
|
@Override
|
|
|
|
public View onCreateView(final LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
2018-04-25 10:56:48 +00:00
|
|
|
this.mSwipeEscapeVelocity = getResources().getDimension(R.dimen.swipe_escape_velocity);
|
2018-02-21 14:46:56 +00:00
|
|
|
this.binding = DataBindingUtil.inflate(inflater, R.layout.fragment_conversations_overview, container, false);
|
2018-02-23 11:53:47 +00:00
|
|
|
this.binding.fab.setOnClickListener((view) -> StartConversationActivity.launch(getActivity()));
|
2018-02-21 14:46:56 +00:00
|
|
|
|
|
|
|
this.conversationsAdapter = new ConversationAdapter(this.activity, this.conversations);
|
2018-04-06 11:49:50 +00:00
|
|
|
this.conversationsAdapter.setConversationClickListener((view, conversation) -> {
|
2018-02-21 14:46:56 +00:00
|
|
|
if (activity instanceof OnConversationSelected) {
|
|
|
|
((OnConversationSelected) activity).onConversationSelected(conversation);
|
|
|
|
} else {
|
2018-02-23 11:53:47 +00:00
|
|
|
Log.w(ConversationsOverviewFragment.class.getCanonicalName(), "Activity does not implement OnConversationSelected");
|
2018-02-21 14:46:56 +00:00
|
|
|
}
|
|
|
|
});
|
2018-04-06 11:49:50 +00:00
|
|
|
this.binding.list.setAdapter(this.conversationsAdapter);
|
|
|
|
this.binding.list.setLayoutManager(new LinearLayoutManager(getActivity(),LinearLayoutManager.VERTICAL,false));
|
2020-10-04 14:02:55 +00:00
|
|
|
this.touchHelper = new ItemTouchHelper(this.callback);
|
2018-04-06 11:49:50 +00:00
|
|
|
this.touchHelper.attachToRecyclerView(this.binding.list);
|
2018-02-21 14:46:56 +00:00
|
|
|
return binding.getRoot();
|
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater menuInflater) {
|
|
|
|
menuInflater.inflate(R.menu.fragment_conversations_overview, menu);
|
2020-09-01 14:50:25 +00:00
|
|
|
AccountUtils.showHideMenuItems(menu);
|
2020-12-01 19:31:30 +00:00
|
|
|
final MenuItem easyOnboardInvite = menu.findItem(R.id.action_easy_invite);
|
|
|
|
easyOnboardInvite.setVisible(EasyOnboardingInvite.anyHasSupport(activity == null ? null : activity.xmppConnectionService));
|
2018-04-25 18:25:28 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 14:46:56 +00:00
|
|
|
@Override
|
2018-03-13 21:44:08 +00:00
|
|
|
public void onBackendConnected() {
|
2018-02-21 22:07:53 +00:00
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2018-02-25 17:00:27 +00:00
|
|
|
@Override
|
|
|
|
public void onSaveInstanceState(Bundle bundle) {
|
|
|
|
super.onSaveInstanceState(bundle);
|
2018-02-25 22:58:56 +00:00
|
|
|
ScrollState scrollState = getScrollState();
|
|
|
|
if (scrollState != null) {
|
|
|
|
bundle.putParcelable(STATE_SCROLL_POSITION, scrollState);
|
|
|
|
}
|
2018-02-25 17:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private ScrollState getScrollState() {
|
2018-02-25 22:58:56 +00:00
|
|
|
if (this.binding == null) {
|
|
|
|
return null;
|
|
|
|
}
|
2018-04-06 11:49:50 +00:00
|
|
|
LinearLayoutManager layoutManager = (LinearLayoutManager) this.binding.list.getLayoutManager();
|
|
|
|
int position = layoutManager.findFirstVisibleItemPosition();
|
2018-02-25 17:00:27 +00:00
|
|
|
final View view = this.binding.list.getChildAt(0);
|
|
|
|
if (view != null) {
|
|
|
|
return new ScrollState(position,view.getTop());
|
|
|
|
} else {
|
|
|
|
return new ScrollState(position, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 22:07:53 +00:00
|
|
|
@Override
|
|
|
|
public void onStart() {
|
|
|
|
super.onStart();
|
2018-02-23 11:53:47 +00:00
|
|
|
Log.d(Config.LOGTAG, "ConversationsOverviewFragment.onStart()");
|
2018-02-21 22:07:53 +00:00
|
|
|
if (activity.xmppConnectionService != null) {
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
2018-02-23 11:53:47 +00:00
|
|
|
Log.d(Config.LOGTAG, "ConversationsOverviewFragment.onResume()");
|
2018-02-21 22:07:53 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 18:25:28 +00:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(final MenuItem item) {
|
|
|
|
if (MenuDoubleTabUtil.shouldIgnoreTap()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.action_search:
|
|
|
|
startActivity(new Intent(getActivity(), SearchActivity.class));
|
|
|
|
return true;
|
2020-12-01 19:31:30 +00:00
|
|
|
case R.id.action_easy_invite:
|
|
|
|
selectAccountToStartEasyInvite();
|
|
|
|
return true;
|
2018-04-25 18:25:28 +00:00
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
|
2020-12-01 19:31:30 +00:00
|
|
|
private void selectAccountToStartEasyInvite() {
|
|
|
|
final List<Account> accounts = EasyOnboardingInvite.getSupportingAccounts(activity.xmppConnectionService);
|
2020-12-11 10:29:23 +00:00
|
|
|
if (accounts.size() == 0) {
|
|
|
|
//This can technically happen if opening the menu item races with accounts reconnecting or something
|
|
|
|
Toast.makeText(getActivity(),R.string.no_active_accounts_support_this, Toast.LENGTH_LONG).show();
|
|
|
|
} else if (accounts.size() == 1) {
|
2020-12-01 19:31:30 +00:00
|
|
|
openEasyInviteScreen(accounts.get(0));
|
|
|
|
} else {
|
|
|
|
final AtomicReference<Account> selectedAccount = new AtomicReference<>(accounts.get(0));
|
|
|
|
final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(activity);
|
|
|
|
alertDialogBuilder.setTitle(R.string.choose_account);
|
|
|
|
final String[] asStrings = Collections2.transform(accounts, a -> a.getJid().asBareJid().toEscapedString()).toArray(new String[0]);
|
|
|
|
alertDialogBuilder.setSingleChoiceItems(asStrings, 0, (dialog, which) -> selectedAccount.set(accounts.get(which)));
|
|
|
|
alertDialogBuilder.setNegativeButton(R.string.cancel, null);
|
|
|
|
alertDialogBuilder.setPositiveButton(R.string.ok, (dialog, which) -> openEasyInviteScreen(selectedAccount.get()));
|
|
|
|
alertDialogBuilder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void openEasyInviteScreen(final Account account) {
|
|
|
|
EasyOnboardingInviteActivity.launch(account, activity);
|
|
|
|
}
|
|
|
|
|
2018-02-21 22:07:53 +00:00
|
|
|
@Override
|
|
|
|
void refresh() {
|
2018-02-25 14:43:19 +00:00
|
|
|
if (this.binding == null || this.activity == null) {
|
|
|
|
Log.d(Config.LOGTAG,"ConversationsOverviewFragment.refresh() skipped updated because view binding or activity was null");
|
|
|
|
return;
|
|
|
|
}
|
2018-02-21 14:46:56 +00:00
|
|
|
this.activity.xmppConnectionService.populateWithOrderedConversations(this.conversations);
|
2018-02-22 18:49:39 +00:00
|
|
|
Conversation removed = this.swipedConversation.peek();
|
|
|
|
if (removed != null) {
|
|
|
|
if (removed.isRead()) {
|
|
|
|
this.conversations.remove(removed);
|
|
|
|
} else {
|
2018-04-06 11:49:50 +00:00
|
|
|
pendingActionHelper.execute();
|
2018-02-22 18:49:39 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-21 14:46:56 +00:00
|
|
|
this.conversationsAdapter.notifyDataSetChanged();
|
2018-02-25 17:00:27 +00:00
|
|
|
ScrollState scrollState = pendingScrollState.pop();
|
|
|
|
if (scrollState != null) {
|
|
|
|
setScrollPosition(scrollState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setScrollPosition(ScrollState scrollPosition) {
|
|
|
|
if (scrollPosition != null) {
|
2018-04-06 11:49:50 +00:00
|
|
|
LinearLayoutManager layoutManager = (LinearLayoutManager) binding.list.getLayoutManager();
|
|
|
|
layoutManager.scrollToPositionWithOffset(scrollPosition.position, scrollPosition.offset);
|
2018-02-25 17:00:27 +00:00
|
|
|
}
|
2018-02-21 14:46:56 +00:00
|
|
|
}
|
|
|
|
}
|