MultipleAccountsDialog.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * @author Chris Narkiewicz <hello@ezaquarii.com>
  7. *
  8. * Copyright (C) 2019 Tobias Kaminsky
  9. * Copyright (C) 2019 Nextcloud GmbH
  10. * Copyright (C) 2020 Chris Narkiewicz <hello@ezaquarii.com>
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as published by
  14. * the Free Software Foundation, either version 3 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  24. *
  25. */
  26. package com.owncloud.android.ui.dialog;
  27. import android.annotation.SuppressLint;
  28. import android.app.Activity;
  29. import android.app.Dialog;
  30. import android.os.Bundle;
  31. import android.view.LayoutInflater;
  32. import android.view.View;
  33. import android.view.Window;
  34. import android.view.WindowManager;
  35. import com.nextcloud.client.account.User;
  36. import com.nextcloud.client.account.UserAccountManager;
  37. import com.nextcloud.client.di.Injectable;
  38. import com.owncloud.android.R;
  39. import com.owncloud.android.ui.activity.ReceiveExternalFilesActivity;
  40. import com.owncloud.android.ui.adapter.UserListAdapter;
  41. import com.owncloud.android.ui.adapter.UserListItem;
  42. import java.util.ArrayList;
  43. import java.util.List;
  44. import javax.inject.Inject;
  45. import androidx.annotation.NonNull;
  46. import androidx.appcompat.app.AlertDialog;
  47. import androidx.fragment.app.DialogFragment;
  48. import androidx.recyclerview.widget.LinearLayoutManager;
  49. import androidx.recyclerview.widget.RecyclerView;
  50. import butterknife.BindView;
  51. import butterknife.ButterKnife;
  52. public class MultipleAccountsDialog extends DialogFragment implements Injectable, UserListAdapter.ClickListener {
  53. @BindView(R.id.list)
  54. RecyclerView listView;
  55. @Inject UserAccountManager accountManager;
  56. @NonNull
  57. @Override
  58. public Dialog onCreateDialog(Bundle savedInstanceState) {
  59. Activity activity = getActivity();
  60. if (activity == null) {
  61. throw new IllegalArgumentException("Activity may not be null");
  62. }
  63. // Inflate the layout for the dialog
  64. LayoutInflater inflater = activity.getLayoutInflater();
  65. @SuppressLint("InflateParams") View view = inflater.inflate(R.layout.multiple_accounts, null);
  66. ButterKnife.bind(this, view);
  67. final ReceiveExternalFilesActivity parent = (ReceiveExternalFilesActivity) getActivity();
  68. AlertDialog.Builder builder = new AlertDialog.Builder(parent);
  69. UserListAdapter adapter = new UserListAdapter(parent,
  70. accountManager,
  71. getAccountListItems(),
  72. this,
  73. false,
  74. false);
  75. listView.setHasFixedSize(true);
  76. listView.setLayoutManager(new LinearLayoutManager(activity));
  77. listView.setAdapter(adapter);
  78. builder.setView(view).setTitle(R.string.common_choose_account);
  79. Dialog dialog = builder.create();
  80. Window window = dialog.getWindow();
  81. if (window != null) {
  82. window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
  83. }
  84. return dialog;
  85. }
  86. /**
  87. * creates the account list items list including the add-account action in case
  88. * multiaccount_support is enabled.
  89. *
  90. * @return list of account list items
  91. */
  92. private List<UserListItem> getAccountListItems() {
  93. List<User> users = accountManager.getAllUsers();
  94. List<UserListItem> adapterUserList = new ArrayList<>(users.size());
  95. for (User user : users) {
  96. adapterUserList.add(new UserListItem(user));
  97. }
  98. return adapterUserList;
  99. }
  100. @Override
  101. public void onOptionItemClicked(User user, View view) {
  102. // By default, access account if option is clicked
  103. onAccountClicked(user);
  104. }
  105. @Override
  106. public void onAccountClicked(User user) {
  107. final ReceiveExternalFilesActivity parentActivity = (ReceiveExternalFilesActivity) getActivity();
  108. if (parentActivity != null) {
  109. parentActivity.changeAccount(user.toPlatformAccount());
  110. }
  111. dismiss();
  112. }
  113. }