mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-13 23:20:29 +03:00
#1214 - Support Trending Links
This commit is contained in:
parent
293a811392
commit
a79121a8dd
9 changed files with 550 additions and 5 deletions
|
@ -33,6 +33,7 @@ import app.fedilab.android.R;
|
|||
import app.fedilab.android.databinding.ActivityTrendsBinding;
|
||||
import app.fedilab.android.mastodon.client.entities.app.Timeline;
|
||||
import app.fedilab.android.mastodon.helper.Helper;
|
||||
import app.fedilab.android.mastodon.ui.fragment.timeline.FragmentMastodonLink;
|
||||
import app.fedilab.android.mastodon.ui.fragment.timeline.FragmentMastodonTag;
|
||||
import app.fedilab.android.mastodon.ui.fragment.timeline.FragmentMastodonTimeline;
|
||||
|
||||
|
@ -56,6 +57,7 @@ public class TrendsActivity extends BaseBarActivity {
|
|||
|
||||
binding.searchTabLayout.addTab(binding.searchTabLayout.newTab().setText(getString(R.string.tags)));
|
||||
binding.searchTabLayout.addTab(binding.searchTabLayout.newTab().setText(getString(R.string.toots)));
|
||||
binding.searchTabLayout.addTab(binding.searchTabLayout.newTab().setText(getString(R.string.links)));
|
||||
binding.searchTabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
|
||||
@Override
|
||||
public void onTabSelected(TabLayout.Tab tab) {
|
||||
|
@ -75,6 +77,8 @@ public class TrendsActivity extends BaseBarActivity {
|
|||
fragmentMastodonTimeline.scrollToTop();
|
||||
} else if (fragment instanceof FragmentMastodonTag fragmentMastodonTag) {
|
||||
fragmentMastodonTag.scrollToTop();
|
||||
}else if (fragment instanceof FragmentMastodonLink fragmentMastodonLink) {
|
||||
fragmentMastodonLink.scrollToTop();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -129,11 +133,17 @@ public class TrendsActivity extends BaseBarActivity {
|
|||
bundle.putSerializable(Helper.ARG_TIMELINE_TYPE, Timeline.TimeLineEnum.TREND_TAG);
|
||||
fragmentMastodonTag.setArguments(bundle);
|
||||
return fragmentMastodonTag;
|
||||
} else if(position == 1) {
|
||||
FragmentMastodonTimeline fragmentMastodonTimeline = new FragmentMastodonTimeline();
|
||||
bundle.putSerializable(Helper.ARG_TIMELINE_TYPE, Timeline.TimeLineEnum.TREND_MESSAGE);
|
||||
fragmentMastodonTimeline.setArguments(bundle);
|
||||
return fragmentMastodonTimeline;
|
||||
} else {
|
||||
FragmentMastodonLink fragmentMastodonLink = new FragmentMastodonLink();
|
||||
bundle.putSerializable(Helper.ARG_TIMELINE_TYPE, Timeline.TimeLineEnum.TREND_LINK);
|
||||
fragmentMastodonLink.setArguments(bundle);
|
||||
return fragmentMastodonLink;
|
||||
}
|
||||
FragmentMastodonTimeline fragmentMastodonTimeline = new FragmentMastodonTimeline();
|
||||
bundle.putSerializable(Helper.ARG_TIMELINE_TYPE, Timeline.TimeLineEnum.TREND_MESSAGE);
|
||||
fragmentMastodonTimeline.setArguments(bundle);
|
||||
return fragmentMastodonTimeline;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -142,7 +152,7 @@ public class TrendsActivity extends BaseBarActivity {
|
|||
|
||||
@Override
|
||||
public int getCount() {
|
||||
return 2;
|
||||
return 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@ import java.util.List;
|
|||
|
||||
import app.fedilab.android.mastodon.client.entities.api.Account;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Conversation;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Link;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Marker;
|
||||
import app.fedilab.android.mastodon.client.entities.api.MastodonList;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Status;
|
||||
|
@ -80,6 +81,11 @@ public interface MastodonTimelinesService {
|
|||
@Query("offset") Integer offset,
|
||||
@Query("limit") Integer limit);
|
||||
|
||||
@GET("trends/links")
|
||||
Call<List<Link>> getLinkTrends(@Header("Authorization") String token,
|
||||
@Query("offset") Integer offset,
|
||||
@Query("limit") Integer limit);
|
||||
|
||||
//Public Tags timelines
|
||||
@GET("timelines/tag/{hashtag}")
|
||||
Call<List<Status>> getHashTag(
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
package app.fedilab.android.mastodon.client.entities.api;
|
||||
/* Copyright 2025 Thomas Schneider
|
||||
*
|
||||
* This file is a part of Fedilab
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Fedilab 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 Fedilab; if not,
|
||||
* see <http://www.gnu.org/licenses>. */
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class Link implements Serializable {
|
||||
@SerializedName("url")
|
||||
public String url;
|
||||
@SerializedName("title")
|
||||
public String title;
|
||||
@SerializedName("description")
|
||||
public String description;
|
||||
@SerializedName("type")
|
||||
public String type;
|
||||
@SerializedName("author_name")
|
||||
public String author_name;
|
||||
@SerializedName("author_url")
|
||||
public String author_url;
|
||||
@SerializedName("provider_name")
|
||||
public String provider_name;
|
||||
@SerializedName("provider_url")
|
||||
public String provider_url;
|
||||
@SerializedName("html")
|
||||
public String html;
|
||||
@SerializedName("width")
|
||||
public int width;
|
||||
@SerializedName("height")
|
||||
public int height;
|
||||
@SerializedName("image")
|
||||
public String image;
|
||||
@SerializedName("embed_url")
|
||||
public String embed_url;
|
||||
@SerializedName("blurhash")
|
||||
public String blurhash;
|
||||
@SerializedName("history")
|
||||
public List<History> history;
|
||||
}
|
|
@ -378,6 +378,8 @@ public class Timeline {
|
|||
REMOTE("REMOTE"),
|
||||
@SerializedName("TREND_TAG")
|
||||
TREND_TAG("TREND_TAG"),
|
||||
@SerializedName("TREND_LINK")
|
||||
TREND_LINK("TREND_LINK"),
|
||||
@SerializedName("TREND_MESSAGE")
|
||||
TREND_MESSAGE("TREND_MESSAGE"),
|
||||
@SerializedName("ACCOUNT_SUGGESTION")
|
||||
|
|
|
@ -0,0 +1,181 @@
|
|||
package app.fedilab.android.mastodon.ui.drawer;
|
||||
/* Copyright 2025 Thomas Schneider
|
||||
*
|
||||
* This file is a part of Fedilab
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Fedilab 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 Fedilab; if not,
|
||||
* see <http://www.gnu.org/licenses>. */
|
||||
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.core.app.ActivityOptionsCompat;
|
||||
import androidx.preference.PreferenceManager;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
|
||||
import com.bumptech.glide.Glide;
|
||||
import com.bumptech.glide.load.resource.bitmap.CenterCrop;
|
||||
import com.bumptech.glide.load.resource.bitmap.CenterInside;
|
||||
import com.bumptech.glide.load.resource.bitmap.RoundedCorners;
|
||||
import com.bumptech.glide.request.RequestOptions;
|
||||
import com.github.mikephil.charting.components.Description;
|
||||
import com.github.mikephil.charting.components.YAxis;
|
||||
import com.github.mikephil.charting.data.Entry;
|
||||
import com.github.mikephil.charting.data.LineData;
|
||||
import com.github.mikephil.charting.data.LineDataSet;
|
||||
import com.github.mikephil.charting.interfaces.datasets.ILineDataSet;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import app.fedilab.android.R;
|
||||
import app.fedilab.android.databinding.DrawerLinkBinding;
|
||||
import app.fedilab.android.mastodon.activities.MediaActivity;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Attachment;
|
||||
import app.fedilab.android.mastodon.client.entities.api.History;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Link;
|
||||
import app.fedilab.android.mastodon.client.entities.app.CachedBundle;
|
||||
import app.fedilab.android.mastodon.helper.Helper;
|
||||
|
||||
public class LinkAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
private final List<Link> linkList;
|
||||
private Context context;
|
||||
|
||||
public LinkAdapter(List<Link> linkList) {
|
||||
this.linkList = linkList;
|
||||
}
|
||||
|
||||
public int getCount() {
|
||||
return linkList.size();
|
||||
}
|
||||
|
||||
public Link getItem(int position) {
|
||||
return linkList.get(position);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||
context = parent.getContext();
|
||||
DrawerLinkBinding itemBinding = DrawerLinkBinding.inflate(LayoutInflater.from(parent.getContext()), parent, false);
|
||||
return new LinkViewHolder(itemBinding);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
|
||||
Link link = linkList.get(position);
|
||||
LinkViewHolder linkViewHolder = (LinkViewHolder) viewHolder;
|
||||
linkViewHolder.binding.linkTitle.setText(link.title);
|
||||
linkViewHolder.binding.linkDescription.setText(link.description);
|
||||
linkViewHolder.binding.linkAuthor.setText(link.provider_name);
|
||||
|
||||
if(link.author_url != null && link.author_url.startsWith("http")) {
|
||||
linkViewHolder.binding.linkAuthor.setText(link.provider_name + " (" +link.author_name + ")");
|
||||
linkViewHolder.binding.linkAuthor.setOnClickListener(v->{
|
||||
Helper.openBrowser(context, link.author_url);
|
||||
});
|
||||
}
|
||||
|
||||
if(link.image != null) {
|
||||
Glide.with(context).load(link.image) .apply(new RequestOptions().transform(new CenterInside(), new RoundedCorners(10))).into(linkViewHolder.binding.linkImage);
|
||||
linkViewHolder.binding.linkImage.setVisibility(View.VISIBLE);
|
||||
linkViewHolder.binding.linkImage.setOnClickListener(v->{
|
||||
Intent intent = new Intent(context, MediaActivity.class);
|
||||
Bundle args = new Bundle();
|
||||
Attachment attachment = new Attachment();
|
||||
attachment.preview_url = link.image;
|
||||
attachment.url = link.image;
|
||||
attachment.remote_url = link.image;
|
||||
attachment.type = "image";
|
||||
ArrayList<Attachment> attachments = new ArrayList<>();
|
||||
attachments.add(attachment);
|
||||
args.putSerializable(Helper.ARG_MEDIA_ARRAY, attachments);
|
||||
args.putInt(Helper.ARG_MEDIA_POSITION, 1);
|
||||
new CachedBundle(context).insertBundle(args, Helper.getCurrentAccount(context), bundleId -> {
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putLong(Helper.ARG_INTENT_ID, bundleId);
|
||||
intent.putExtras(bundle);
|
||||
ActivityOptionsCompat options = ActivityOptionsCompat
|
||||
.makeSceneTransitionAnimation(((Activity)context), linkViewHolder.binding.linkImage, attachment.url);
|
||||
// start the new activity
|
||||
context.startActivity(intent, options.toBundle());
|
||||
});
|
||||
});
|
||||
} else {
|
||||
linkViewHolder.binding.linkImage.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
if (sharedpreferences.getBoolean(context.getString(R.string.SET_CARDVIEW), false)) {
|
||||
linkViewHolder.binding.cardviewContainer.setCardElevation(Helper.convertDpToPixel(5, context));
|
||||
linkViewHolder.binding.dividerCard.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
List<Entry> trendsEntry = new ArrayList<>();
|
||||
|
||||
List<History> historyList = link.history;
|
||||
|
||||
|
||||
|
||||
if (historyList != null) {
|
||||
for (History history : historyList) {
|
||||
trendsEntry.add(0, new Entry(Float.parseFloat(history.day), Float.parseFloat(history.uses)));
|
||||
}
|
||||
}
|
||||
|
||||
LineDataSet dataTrending = new LineDataSet(trendsEntry, context.getString(R.string.trending));
|
||||
dataTrending.setDrawValues(false);
|
||||
dataTrending.setDrawFilled(true);
|
||||
dataTrending.setDrawCircles(false);
|
||||
dataTrending.setDrawCircleHole(false);
|
||||
linkViewHolder.binding.chart.getAxis(YAxis.AxisDependency.LEFT).setEnabled(false);
|
||||
linkViewHolder.binding.chart.getAxis(YAxis.AxisDependency.RIGHT).setEnabled(false);
|
||||
linkViewHolder.binding.chart.getXAxis().setEnabled(false);
|
||||
linkViewHolder.binding.chart.getLegend().setEnabled(false);
|
||||
linkViewHolder.binding.chart.setTouchEnabled(false);
|
||||
dataTrending.setMode(LineDataSet.Mode.CUBIC_BEZIER);
|
||||
Description description = linkViewHolder.binding.chart.getDescription();
|
||||
description.setEnabled(false);
|
||||
List<ILineDataSet> dataSets = new ArrayList<>();
|
||||
|
||||
|
||||
dataSets.add(dataTrending);
|
||||
|
||||
LineData data = new LineData(dataSets);
|
||||
linkViewHolder.binding.chart.setData(data);
|
||||
linkViewHolder.binding.chart.invalidate();
|
||||
|
||||
linkViewHolder.binding.getRoot().setOnClickListener(v -> Helper.openBrowser(context, link.url));
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getItemCount() {
|
||||
return linkList.size();
|
||||
}
|
||||
|
||||
|
||||
public static class LinkViewHolder extends RecyclerView.ViewHolder {
|
||||
DrawerLinkBinding binding;
|
||||
|
||||
LinkViewHolder(DrawerLinkBinding itemView) {
|
||||
super(itemView.getRoot());
|
||||
binding = itemView;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,178 @@
|
|||
package app.fedilab.android.mastodon.ui.fragment.timeline;
|
||||
/* Copyright 2025 Thomas Schneider
|
||||
*
|
||||
* This file is a part of Fedilab
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Fedilab 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 Fedilab; if not,
|
||||
* see <http://www.gnu.org/licenses>. */
|
||||
|
||||
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.fragment.app.Fragment;
|
||||
import androidx.lifecycle.ViewModelProvider;
|
||||
import androidx.preference.PreferenceManager;
|
||||
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import app.fedilab.android.BaseMainActivity;
|
||||
import app.fedilab.android.R;
|
||||
import app.fedilab.android.databinding.FragmentPaginationBinding;
|
||||
import app.fedilab.android.mastodon.activities.SearchResultTabActivity;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Link;
|
||||
import app.fedilab.android.mastodon.helper.MastodonHelper;
|
||||
import app.fedilab.android.mastodon.ui.drawer.LinkAdapter;
|
||||
import app.fedilab.android.mastodon.viewmodel.mastodon.TimelinesVM;
|
||||
|
||||
|
||||
public class FragmentMastodonLink extends Fragment {
|
||||
|
||||
|
||||
private FragmentPaginationBinding binding;
|
||||
private LinkAdapter linkAdapter;
|
||||
private Integer offset;
|
||||
private boolean flagLoading;
|
||||
private List<Link> linkList;
|
||||
|
||||
public View onCreateView(@NonNull LayoutInflater inflater,
|
||||
ViewGroup container, Bundle savedInstanceState) {
|
||||
|
||||
binding = FragmentPaginationBinding.inflate(inflater, container, false);
|
||||
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
|
||||
boolean displayScrollBar = sharedpreferences.getBoolean(getString(R.string.SET_TIMELINE_SCROLLBAR), false);
|
||||
binding.recyclerView.setVerticalScrollBarEnabled(displayScrollBar);
|
||||
return binding.getRoot();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
||||
super.onViewCreated(view, savedInstanceState);
|
||||
binding.loader.setVisibility(View.VISIBLE);
|
||||
binding.recyclerView.setVisibility(View.GONE);
|
||||
offset = 0;
|
||||
flagLoading = false;
|
||||
binding.swipeContainer.setRefreshing(false);
|
||||
binding.swipeContainer.setEnabled(false);
|
||||
router();
|
||||
}
|
||||
|
||||
/**
|
||||
* Router for timelines
|
||||
*/
|
||||
private void router() {
|
||||
TimelinesVM timelinesVM = new ViewModelProvider(FragmentMastodonLink.this).get(TimelinesVM.class);
|
||||
timelinesVM.getLinksTrends(BaseMainActivity.currentToken, BaseMainActivity.currentInstance, offset, MastodonHelper.SEARCH_PER_CALL)
|
||||
.observe(getViewLifecycleOwner(), links -> {
|
||||
if (links != null && offset == 0) {
|
||||
initializeLinkCommonView(links);
|
||||
} else if (links != null) {
|
||||
dealWithPaginationTag(links);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public void scrollToTop() {
|
||||
binding.recyclerView.setAdapter(linkAdapter);
|
||||
}
|
||||
|
||||
private void dealWithPaginationTag(final List<Link> links) {
|
||||
if (binding == null || !isAdded() || getActivity() == null) {
|
||||
return;
|
||||
}
|
||||
if (links == null || links.isEmpty()) {
|
||||
flagLoading = true;
|
||||
binding.loadingNextElements.setVisibility(View.GONE);
|
||||
return;
|
||||
}
|
||||
offset += MastodonHelper.SEARCH_PER_CALL;
|
||||
binding.swipeContainer.setRefreshing(false);
|
||||
binding.loadingNextElements.setVisibility(View.GONE);
|
||||
flagLoading = false;
|
||||
int start = linkList.size();
|
||||
linkList.addAll(links);
|
||||
linkAdapter.notifyItemRangeInserted(start, links.size());
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the view for links
|
||||
*
|
||||
* @param links List of {@link Link}
|
||||
*/
|
||||
private void initializeLinkCommonView(final List<Link> links) {
|
||||
if (binding == null || !isAdded() || getActivity() == null) {
|
||||
return;
|
||||
}
|
||||
linkList = new ArrayList<>();
|
||||
binding.loader.setVisibility(View.GONE);
|
||||
binding.noAction.setVisibility(View.GONE);
|
||||
binding.swipeContainer.setRefreshing(false);
|
||||
binding.swipeContainer.setOnRefreshListener(() -> {
|
||||
binding.swipeContainer.setRefreshing(true);
|
||||
router();
|
||||
});
|
||||
if (links == null || links.isEmpty()) {
|
||||
if (requireActivity() instanceof SearchResultTabActivity) {
|
||||
((SearchResultTabActivity) requireActivity()).tagEmpty = true;
|
||||
if (((SearchResultTabActivity) requireActivity()).accountEmpty != null) {
|
||||
if (((SearchResultTabActivity) requireActivity()).accountEmpty) {
|
||||
((SearchResultTabActivity) requireActivity()).moveToMessage();
|
||||
} else {
|
||||
((SearchResultTabActivity) requireActivity()).moveToAccount();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
binding.recyclerView.setVisibility(View.GONE);
|
||||
binding.noAction.setVisibility(View.VISIBLE);
|
||||
binding.noActionText.setText(R.string.no_tags);
|
||||
return;
|
||||
}
|
||||
offset += MastodonHelper.SEARCH_PER_CALL;
|
||||
binding.recyclerView.setVisibility(View.VISIBLE);
|
||||
binding.noAction.setVisibility(View.GONE);
|
||||
linkList.addAll(links);
|
||||
linkAdapter = new LinkAdapter(linkList);
|
||||
LinearLayoutManager mLayoutManager = new LinearLayoutManager(requireActivity());
|
||||
binding.recyclerView.setLayoutManager(mLayoutManager);
|
||||
binding.recyclerView.setAdapter(linkAdapter);
|
||||
binding.recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
|
||||
@Override
|
||||
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
|
||||
|
||||
int firstVisibleItem = mLayoutManager.findFirstVisibleItemPosition();
|
||||
if (dy > 0) {
|
||||
int visibleItemCount = mLayoutManager.getChildCount();
|
||||
int totalItemCount = mLayoutManager.getItemCount();
|
||||
|
||||
if (firstVisibleItem + visibleItemCount == totalItemCount) {
|
||||
if (!flagLoading) {
|
||||
flagLoading = true;
|
||||
binding.loadingNextElements.setVisibility(View.VISIBLE);
|
||||
router();
|
||||
}
|
||||
} else {
|
||||
binding.loadingNextElements.setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
|
@ -49,6 +49,7 @@ import app.fedilab.android.mastodon.client.endpoints.MastodonTimelinesService;
|
|||
import app.fedilab.android.mastodon.client.entities.api.Account;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Conversation;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Conversations;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Link;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Marker;
|
||||
import app.fedilab.android.mastodon.client.entities.api.MastodonList;
|
||||
import app.fedilab.android.mastodon.client.entities.api.Pagination;
|
||||
|
@ -95,6 +96,7 @@ public class TimelinesVM extends AndroidViewModel {
|
|||
private MutableLiveData<Marker> markerMutableLiveData;
|
||||
private MutableLiveData<List<Status>> statusListMutableLiveData;
|
||||
private MutableLiveData<List<Tag>> tagListMutableLiveData;
|
||||
private MutableLiveData<List<Link>> linkListMutableLiveData;
|
||||
|
||||
public TimelinesVM(@NonNull Application application) {
|
||||
super(application);
|
||||
|
@ -244,6 +246,30 @@ public class TimelinesVM extends AndroidViewModel {
|
|||
return tagListMutableLiveData;
|
||||
}
|
||||
|
||||
public LiveData<List<Link>> getLinksTrends(String token, @NonNull String instance, Integer offset, Integer limit) {
|
||||
MastodonTimelinesService mastodonTimelinesService = init(instance);
|
||||
linkListMutableLiveData = new MutableLiveData<>();
|
||||
new Thread(() -> {
|
||||
Call<List<Link>> publicTlCall = mastodonTimelinesService.getLinkTrends(token, offset, limit);
|
||||
List<Link> linkList = null;
|
||||
if (publicTlCall != null) {
|
||||
try {
|
||||
Response<List<Link>> publicTlResponse = publicTlCall.execute();
|
||||
if (publicTlResponse.isSuccessful()) {
|
||||
linkList = publicTlResponse.body();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||
List<Link> finalLinkList = linkList;
|
||||
Runnable myRunnable = () -> linkListMutableLiveData.setValue(finalLinkList);
|
||||
mainHandler.post(myRunnable);
|
||||
}).start();
|
||||
return linkListMutableLiveData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Public timeline for Nitter
|
||||
*
|
||||
|
|
88
app/src/main/res/layouts/mastodon/layout/drawer_link.xml
Normal file
88
app/src/main/res/layouts/mastodon/layout/drawer_link.xml
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
Copyright 2025 Thomas Schneider
|
||||
|
||||
This file is a part of Fedilab
|
||||
|
||||
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.
|
||||
|
||||
Fedilab 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 Fedilab; if not,
|
||||
see <http://www.gnu.org/licenses>.
|
||||
-->
|
||||
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/cardview_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="@dimen/card_margin"
|
||||
android:layout_marginTop="@dimen/card_margin"
|
||||
android:clipChildren="false"
|
||||
android:clipToPadding="false"
|
||||
app:cardElevation="0dp"
|
||||
app:strokeWidth="0dp">
|
||||
|
||||
<View
|
||||
android:id="@+id/divider_card"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1px"
|
||||
android:background="?colorOutline" />
|
||||
|
||||
<androidx.appcompat.widget.LinearLayoutCompat
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:paddingStart="@dimen/fab_margin"
|
||||
android:paddingTop="5dp"
|
||||
android:paddingEnd="@dimen/fab_margin">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/link_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<TextView
|
||||
android:layout_marginTop="10dp"
|
||||
android:id="@+id/link_description"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/count"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:textSize="25sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/link_image"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:contentDescription="@string/link_image" />
|
||||
|
||||
<androidx.appcompat.widget.LinearLayoutCompat
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
<TextView
|
||||
android:id="@+id/link_author"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical" />
|
||||
<com.github.mikephil.charting.charts.LineChart
|
||||
android:id="@+id/chart"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="50dp" />
|
||||
</androidx.appcompat.widget.LinearLayoutCompat>
|
||||
|
||||
|
||||
</androidx.appcompat.widget.LinearLayoutCompat>
|
||||
</com.google.android.material.card.MaterialCardView>
|
|
@ -19,6 +19,7 @@
|
|||
<string name="email">Email</string>
|
||||
<string name="accounts">Accounts</string>
|
||||
<string name="toots">Messages</string>
|
||||
<string name="links">Links</string>
|
||||
<string name="tags">Tags</string>
|
||||
<string name="save">Save</string>
|
||||
<string name="instance">Instance</string>
|
||||
|
@ -1383,6 +1384,7 @@
|
|||
<string name="set_push_notifications_delay">Set the delay between each new fetch</string>
|
||||
<string name="refresh_every">Fetch notifications every:</string>
|
||||
<string name="type_of_notifications_delay_title">Notifications fetch time</string>
|
||||
<string name="link_image">Image attached to the link</string>
|
||||
<string-array name="photo_editor_emoji" translatable="false">
|
||||
<!-- Smiles -->
|
||||
<item>u+1f604</item>
|
||||
|
|
Loading…
Reference in a new issue