2017-01-23 06:19:30 +01:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* This file is a part of Tusky.
|
2017-01-23 06:19:30 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02: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 06:19:30 +01:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 02:12:31 +02:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-01-23 06:19:30 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02: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 06:19:30 +01:00
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
2017-02-27 01:14:50 +01:00
|
|
|
import android.support.design.widget.Snackbar;
|
2017-03-12 18:46:45 +01:00
|
|
|
import android.support.v4.content.ContextCompat;
|
2017-04-15 12:28:22 +02:00
|
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
2017-01-23 06:19:30 +01:00
|
|
|
import android.support.v7.widget.DividerItemDecoration;
|
|
|
|
import android.support.v7.widget.LinearLayoutManager;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
2017-03-09 00:27:37 +01:00
|
|
|
import com.keylesspalace.tusky.entity.Status;
|
|
|
|
import com.keylesspalace.tusky.entity.StatusContext;
|
2017-01-23 06:19:30 +01:00
|
|
|
|
2017-03-09 00:27:37 +01:00
|
|
|
import retrofit2.Call;
|
|
|
|
import retrofit2.Callback;
|
|
|
|
|
2017-04-15 12:28:22 +02:00
|
|
|
public class ViewThreadFragment extends SFragment implements
|
2017-04-25 13:30:57 +02:00
|
|
|
SwipeRefreshLayout.OnRefreshListener, StatusActionListener, StatusRemoveListener {
|
2017-03-15 21:38:19 +01:00
|
|
|
private static final String TAG = "ViewThreadFragment";
|
|
|
|
|
2017-04-15 12:28:22 +02:00
|
|
|
private SwipeRefreshLayout swipeRefreshLayout;
|
2017-01-23 06:19:30 +01:00
|
|
|
private RecyclerView recyclerView;
|
|
|
|
private ThreadAdapter adapter;
|
2017-03-03 01:25:35 +01:00
|
|
|
private String thisThreadsStatusId;
|
2017-01-23 06:19:30 +01:00
|
|
|
|
|
|
|
public static ViewThreadFragment newInstance(String id) {
|
|
|
|
Bundle arguments = new Bundle();
|
|
|
|
ViewThreadFragment fragment = new ViewThreadFragment();
|
|
|
|
arguments.putString("id", id);
|
|
|
|
fragment.setArguments(arguments);
|
|
|
|
return fragment;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
|
|
|
|
@Nullable Bundle savedInstanceState) {
|
|
|
|
View rootView = inflater.inflate(R.layout.fragment_view_thread, container, false);
|
|
|
|
|
|
|
|
Context context = getContext();
|
2017-04-15 12:28:22 +02:00
|
|
|
swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_layout);
|
|
|
|
swipeRefreshLayout.setOnRefreshListener(this);
|
|
|
|
|
2017-01-23 06:19:30 +01:00
|
|
|
recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
|
|
|
|
recyclerView.setHasFixedSize(true);
|
|
|
|
LinearLayoutManager layoutManager = new LinearLayoutManager(context);
|
|
|
|
recyclerView.setLayoutManager(layoutManager);
|
|
|
|
DividerItemDecoration divider = new DividerItemDecoration(
|
|
|
|
context, layoutManager.getOrientation());
|
2017-03-03 01:25:35 +01:00
|
|
|
Drawable drawable = ThemeUtils.getDrawable(context, R.attr.status_divider_drawable,
|
|
|
|
R.drawable.status_divider_dark);
|
2017-01-23 06:19:30 +01:00
|
|
|
divider.setDrawable(drawable);
|
|
|
|
recyclerView.addItemDecoration(divider);
|
2017-03-12 18:46:45 +01:00
|
|
|
recyclerView.addItemDecoration(new ConversationLineItemDecoration(context, ContextCompat.getDrawable(context, R.drawable.conversation_divider_dark)));
|
2017-01-23 06:19:30 +01:00
|
|
|
adapter = new ThreadAdapter(this);
|
|
|
|
recyclerView.setAdapter(adapter);
|
|
|
|
|
|
|
|
String id = getArguments().getString("id");
|
|
|
|
sendStatusRequest(id);
|
|
|
|
sendThreadRequest(id);
|
2017-03-03 01:25:35 +01:00
|
|
|
thisThreadsStatusId = id;
|
2017-01-23 06:19:30 +01:00
|
|
|
|
|
|
|
return rootView;
|
|
|
|
}
|
|
|
|
|
2017-02-27 01:14:50 +01:00
|
|
|
private void sendStatusRequest(final String id) {
|
2017-03-09 00:27:37 +01:00
|
|
|
MastodonAPI api = ((BaseActivity) getActivity()).mastodonAPI;
|
|
|
|
|
2017-03-15 01:34:27 +01:00
|
|
|
Call<Status> call = api.status(id);
|
|
|
|
call.enqueue(new Callback<Status>() {
|
2017-03-09 00:27:37 +01:00
|
|
|
@Override
|
|
|
|
public void onResponse(Call<Status> call, retrofit2.Response<Status> response) {
|
2017-03-14 01:49:12 +01:00
|
|
|
if (response.isSuccessful()) {
|
2017-04-15 12:28:22 +02:00
|
|
|
int position = adapter.setStatus(response.body());
|
2017-03-14 01:49:12 +01:00
|
|
|
recyclerView.scrollToPosition(position);
|
|
|
|
} else {
|
|
|
|
onThreadRequestFailure(id);
|
|
|
|
}
|
2017-03-09 00:27:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(Call<Status> call, Throwable t) {
|
|
|
|
onThreadRequestFailure(id);
|
|
|
|
}
|
|
|
|
});
|
2017-03-15 01:34:27 +01:00
|
|
|
callList.add(call);
|
2017-01-23 06:19:30 +01:00
|
|
|
}
|
|
|
|
|
2017-02-27 01:14:50 +01:00
|
|
|
private void sendThreadRequest(final String id) {
|
2017-03-09 00:27:37 +01:00
|
|
|
MastodonAPI api = ((BaseActivity) getActivity()).mastodonAPI;
|
|
|
|
|
2017-03-15 01:34:27 +01:00
|
|
|
Call<StatusContext> call = api.statusContext(id);
|
|
|
|
call.enqueue(new Callback<StatusContext>() {
|
2017-03-09 00:27:37 +01:00
|
|
|
@Override
|
|
|
|
public void onResponse(Call<StatusContext> call, retrofit2.Response<StatusContext> response) {
|
2017-03-14 01:49:12 +01:00
|
|
|
if (response.isSuccessful()) {
|
2017-04-15 12:28:22 +02:00
|
|
|
swipeRefreshLayout.setRefreshing(false);
|
2017-03-14 01:49:12 +01:00
|
|
|
StatusContext context = response.body();
|
|
|
|
|
2017-04-15 12:28:22 +02:00
|
|
|
adapter.setContext(context.ancestors, context.descendants);
|
2017-03-14 01:49:12 +01:00
|
|
|
} else {
|
|
|
|
onThreadRequestFailure(id);
|
|
|
|
}
|
2017-03-09 00:27:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(Call<StatusContext> call, Throwable t) {
|
|
|
|
onThreadRequestFailure(id);
|
|
|
|
}
|
|
|
|
});
|
2017-03-15 01:34:27 +01:00
|
|
|
callList.add(call);
|
2017-01-23 06:19:30 +01:00
|
|
|
}
|
|
|
|
|
2017-02-27 01:14:50 +01:00
|
|
|
private void onThreadRequestFailure(final String id) {
|
2017-03-15 20:27:49 +01:00
|
|
|
View view = getView();
|
2017-04-15 12:28:22 +02:00
|
|
|
swipeRefreshLayout.setRefreshing(false);
|
2017-03-15 20:27:49 +01:00
|
|
|
if (view != null) {
|
2017-04-06 09:09:49 +02:00
|
|
|
Snackbar.make(view, R.string.error_generic, Snackbar.LENGTH_LONG)
|
2017-03-15 20:27:49 +01:00
|
|
|
.setAction(R.string.action_retry, new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
sendThreadRequest(id);
|
|
|
|
sendStatusRequest(id);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.show();
|
2017-03-15 21:38:19 +01:00
|
|
|
} else {
|
|
|
|
Log.e(TAG, "Couldn't display thread fetch error message");
|
2017-03-15 20:27:49 +01:00
|
|
|
}
|
2017-01-23 06:19:30 +01:00
|
|
|
}
|
|
|
|
|
2017-04-25 13:30:57 +02:00
|
|
|
@Override
|
|
|
|
public void removePostsByUser(String accountId) {
|
|
|
|
adapter.removeAllByAccountId(accountId);
|
|
|
|
}
|
|
|
|
|
2017-04-15 12:28:22 +02:00
|
|
|
public void onRefresh() {
|
|
|
|
sendStatusRequest(thisThreadsStatusId);
|
|
|
|
sendThreadRequest(thisThreadsStatusId);
|
|
|
|
}
|
|
|
|
|
2017-04-15 19:44:29 +02:00
|
|
|
@Override
|
|
|
|
public void onSuccessfulStatus() {
|
|
|
|
onRefresh();
|
|
|
|
super.onSuccessfulStatus();
|
|
|
|
}
|
|
|
|
|
2017-01-23 06:19:30 +01:00
|
|
|
public void onReply(int position) {
|
|
|
|
super.reply(adapter.getItem(position));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onReblog(boolean reblog, int position) {
|
|
|
|
super.reblog(adapter.getItem(position), reblog, adapter, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onFavourite(boolean favourite, int position) {
|
|
|
|
super.favourite(adapter.getItem(position), favourite, adapter, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onMore(View view, int position) {
|
|
|
|
super.more(adapter.getItem(position), view, adapter, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onViewMedia(String url, Status.MediaAttachment.Type type) {
|
|
|
|
super.viewMedia(url, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onViewThread(int position) {
|
2017-03-03 01:25:35 +01:00
|
|
|
Status status = adapter.getItem(position);
|
2017-03-09 00:27:37 +01:00
|
|
|
if (thisThreadsStatusId.equals(status.id)) {
|
2017-03-03 01:25:35 +01:00
|
|
|
// If already viewing this thread, don't reopen it.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
super.viewThread(status);
|
2017-01-23 06:19:30 +01:00
|
|
|
}
|
2017-01-27 01:34:32 +01:00
|
|
|
|
|
|
|
public void onViewTag(String tag) {
|
|
|
|
super.viewTag(tag);
|
|
|
|
}
|
2017-01-28 04:33:43 +01:00
|
|
|
|
2017-03-03 01:25:35 +01:00
|
|
|
public void onViewAccount(String id) {
|
|
|
|
super.viewAccount(id);
|
2017-01-28 04:33:43 +01:00
|
|
|
}
|
2017-01-23 06:19:30 +01:00
|
|
|
}
|