AccountRemovalConfirmationDialog.java 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * Copyright (C) 2020 Tobias Kaminsky
  7. * Copyright (C) 2020 Nextcloud GmbH
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android.ui.dialog;
  23. import android.app.Dialog;
  24. import android.os.Bundle;
  25. import com.nextcloud.client.account.User;
  26. import com.nextcloud.client.di.Injectable;
  27. import com.nextcloud.client.jobs.BackgroundJobManager;
  28. import com.owncloud.android.R;
  29. import com.owncloud.android.utils.ThemeUtils;
  30. import javax.inject.Inject;
  31. import androidx.annotation.NonNull;
  32. import androidx.annotation.Nullable;
  33. import androidx.appcompat.app.AlertDialog;
  34. import androidx.fragment.app.DialogFragment;
  35. public class AccountRemovalConfirmationDialog extends DialogFragment implements Injectable {
  36. private static final String KEY_USER = "USER";
  37. @Inject BackgroundJobManager backgroundJobManager;
  38. private User user;
  39. public static AccountRemovalConfirmationDialog newInstance(User user) {
  40. Bundle bundle = new Bundle();
  41. bundle.putParcelable(KEY_USER, user);
  42. AccountRemovalConfirmationDialog dialog = new AccountRemovalConfirmationDialog();
  43. dialog.setArguments(bundle);
  44. return dialog;
  45. }
  46. @Override
  47. public void onCreate(@Nullable Bundle savedInstanceState) {
  48. super.onCreate(savedInstanceState);
  49. user = getArguments().getParcelable(KEY_USER);
  50. }
  51. @Override
  52. public void onStart() {
  53. super.onStart();
  54. int color = ThemeUtils.primaryAccentColor(getActivity());
  55. AlertDialog alertDialog = (AlertDialog) getDialog();
  56. alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(color);
  57. alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(color);
  58. }
  59. @NonNull
  60. @Override
  61. public Dialog onCreateDialog(Bundle savedInstanceState) {
  62. return new AlertDialog.Builder(requireActivity(), R.style.Theme_ownCloud_Dialog)
  63. .setTitle(R.string.delete_account)
  64. .setMessage(getResources().getString(R.string.delete_account_warning, user.getAccountName()))
  65. .setIcon(R.drawable.ic_warning)
  66. .setPositiveButton(R.string.common_ok,
  67. (dialogInterface, i) -> backgroundJobManager.startAccountRemovalJob(user.getAccountName(),
  68. false))
  69. .setNegativeButton(R.string.common_cancel, null)
  70. .create();
  71. }
  72. }