feat: add option to hide channel tabs
This commit is contained in:
parent
c3d1e75a8f
commit
bb062f07f9
7 changed files with 127 additions and 4 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package org.schabi.newpipe.fragments.list.channel;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
|
@ -13,6 +14,7 @@ import android.view.ViewGroup;
|
|||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.preference.PreferenceManager;
|
||||
|
||||
import org.schabi.newpipe.R;
|
||||
import org.schabi.newpipe.database.subscription.NotificationMode;
|
||||
|
|
@ -27,6 +29,7 @@ import org.schabi.newpipe.fragments.BaseStateFragment;
|
|||
import org.schabi.newpipe.fragments.detail.TabAdapter;
|
||||
import org.schabi.newpipe.local.feed.notifications.NotificationHelper;
|
||||
import org.schabi.newpipe.local.subscription.SubscriptionManager;
|
||||
import org.schabi.newpipe.util.ChannelTabs;
|
||||
import org.schabi.newpipe.util.Constants;
|
||||
import org.schabi.newpipe.util.ExtractorHelper;
|
||||
import org.schabi.newpipe.util.NavigationHelper;
|
||||
|
|
@ -268,13 +271,22 @@ public class ChannelFragment extends BaseStateFragment<ChannelInfo> {
|
|||
tabAdapter.addFragment(
|
||||
ChannelVideosFragment.getInstance(currentInfo), "Videos");
|
||||
|
||||
final Context context = getContext();
|
||||
final SharedPreferences preferences = PreferenceManager
|
||||
.getDefaultSharedPreferences(context);
|
||||
|
||||
for (final ChannelTabHandler tab : currentInfo.getTabs()) {
|
||||
tabAdapter.addFragment(
|
||||
ChannelTabFragment.getInstance(serviceId, tab), tab.getTab().name());
|
||||
if (ChannelTabs.showChannelTab(context, preferences, tab.getTab())) {
|
||||
tabAdapter.addFragment(
|
||||
ChannelTabFragment.getInstance(serviceId, tab),
|
||||
context.getString(ChannelTabs.getTranslationKey(tab.getTab())));
|
||||
}
|
||||
}
|
||||
|
||||
final String description = currentInfo.getDescription();
|
||||
if (description != null && !description.isEmpty()) {
|
||||
if (description != null && !description.isEmpty() &&
|
||||
ChannelTabs.showChannelTab(
|
||||
context, preferences, R.string.show_channel_tabs_info)) {
|
||||
tabAdapter.addFragment(
|
||||
ChannelInfoFragment.getInstance(currentInfo), "Info");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ public class ChannelInfoFragment extends BaseFragment {
|
|||
|
||||
private void setupMetadata(final LayoutInflater inflater,
|
||||
final LinearLayout layout) {
|
||||
Context context = getActivity();
|
||||
Context context = getContext();
|
||||
|
||||
if (channelInfo.getSubscriberCount() != UNKNOWN_SUBSCRIBER_COUNT) {
|
||||
addMetadataItem(inflater, layout, R.string.metadata_subscribers,
|
||||
|
|
|
|||
65
app/src/main/java/org/schabi/newpipe/util/ChannelTabs.java
Normal file
65
app/src/main/java/org/schabi/newpipe/util/ChannelTabs.java
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
package org.schabi.newpipe.util;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
|
||||
import androidx.annotation.StringRes;
|
||||
|
||||
import org.schabi.newpipe.R;
|
||||
import org.schabi.newpipe.extractor.linkhandler.ChannelTabHandler.Tab;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
public class ChannelTabs {
|
||||
@StringRes
|
||||
private static int getShowTabKey(final Tab tab) {
|
||||
switch (tab) {
|
||||
case Playlists:
|
||||
return R.string.show_channel_tabs_playlists;
|
||||
case Livestreams:
|
||||
return R.string.show_channel_tabs_livestreams;
|
||||
case Shorts:
|
||||
return R.string.show_channel_tabs_shorts;
|
||||
case Channels:
|
||||
return R.string.show_channel_tabs_channels;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@StringRes
|
||||
public static int getTranslationKey(final Tab tab) {
|
||||
switch (tab) {
|
||||
case Playlists:
|
||||
return R.string.channel_tab_playlists;
|
||||
case Livestreams:
|
||||
return R.string.channel_tab_livestreams;
|
||||
case Shorts:
|
||||
return R.string.channel_tab_shorts;
|
||||
case Channels:
|
||||
return R.string.channel_tab_channels;
|
||||
}
|
||||
return R.string.unknown_content;
|
||||
}
|
||||
|
||||
public static boolean showChannelTab(final Context context,
|
||||
final SharedPreferences sharedPreferences,
|
||||
@StringRes final int key) {
|
||||
final Set<String> enabledTabs = sharedPreferences.getStringSet(
|
||||
context.getString(R.string.show_channel_tabs_key), null);
|
||||
if (enabledTabs == null) {
|
||||
return true; // default to true
|
||||
} else {
|
||||
return enabledTabs.contains(context.getString(key));
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean showChannelTab(final Context context,
|
||||
final SharedPreferences sharedPreferences,
|
||||
final Tab tab) {
|
||||
final int key = ChannelTabs.getShowTabKey(tab);
|
||||
if (key == -1) {
|
||||
return false;
|
||||
}
|
||||
return showChannelTab(context, sharedPreferences, key);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue