123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- * Nextcloud Android client application
- *
- * @author Andy Scherzinger
- * @author Chris Narkiewicz <hello@ezaquarii.com>
- *
- * Copyright (C) 2018 Andy Scherzinger
- * Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or any later version.
- *
- * This program 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 AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.utils;
- import android.content.res.Resources;
- import android.view.Menu;
- import com.nextcloud.client.account.User;
- import com.owncloud.android.R;
- import com.owncloud.android.lib.resources.status.OCCapability;
- import androidx.annotation.Nullable;
- /**
- * A helper class for drawer menu related operations.
- */
- public final class DrawerMenuUtil {
- private DrawerMenuUtil() {
- }
- public static void filterSearchMenuItems(Menu menu,
- User user,
- Resources resources) {
- if (user.isAnonymous()) {
- filterMenuItems(menu, R.id.nav_gallery, R.id.nav_favorites);
- }
- if (!resources.getBoolean(R.bool.recently_modified_enabled)) {
- menu.removeItem(R.id.nav_recently_modified);
- }
- }
- public static void filterTrashbinMenuItem(Menu menu, @Nullable OCCapability capability) {
- if (capability != null && capability.getFilesUndelete().isFalse() ||
- capability != null && capability.getFilesUndelete().isUnknown()) {
- filterMenuItems(menu, R.id.nav_trashbin);
- }
- }
- public static void filterActivityMenuItem(Menu menu, @Nullable OCCapability capability) {
- if (capability != null && capability.getActivity().isFalse()) {
- filterMenuItems(menu, R.id.nav_activity);
- }
- }
- public static void filterAssistantMenuItem(Menu menu, @Nullable OCCapability capability, Resources resources) {
- if (capability != null && !capability.getAssistant().isTrue() && resources.getBoolean(R.bool.is_branded_client)) {
- filterMenuItems(menu, R.id.nav_assistant);
- }
- }
- public static void filterGroupfoldersMenuItem(Menu menu, @Nullable OCCapability capability) {
- if (capability != null && !capability.getGroupfolders().isTrue()) {
- filterMenuItems(menu, R.id.nav_groupfolders);
- }
- }
- public static void removeMenuItem(Menu menu, int id, boolean remove) {
- if (remove) {
- menu.removeItem(id);
- }
- }
- public static void setupHomeMenuItem(Menu menu, Resources resources) {
- if (resources.getBoolean(R.bool.use_home) && menu.findItem(R.id.nav_all_files) != null) {
- menu.findItem(R.id.nav_all_files).setTitle(resources.getString(R.string.drawer_item_home));
- menu.findItem(R.id.nav_all_files).setIcon(R.drawable.ic_home);
- }
- }
- private static void filterMenuItems(Menu menu, int... menuIds) {
- if (menuIds != null) {
- for (int menuId : menuIds) {
- menu.removeItem(menuId);
- }
- }
- }
- }
|