RenameFileDialogFragment.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2014 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. *
  19. */
  20. package com.owncloud.android.ui.dialog;
  21. /**
  22. * Dialog to input a new name for an {@link OCFile} being renamed.
  23. *
  24. * Triggers the rename operation.
  25. */
  26. import android.app.Dialog;
  27. import android.content.DialogInterface;
  28. import android.graphics.PorterDuff;
  29. import android.os.Bundle;
  30. import android.view.LayoutInflater;
  31. import android.view.View;
  32. import android.view.Window;
  33. import android.view.WindowManager.LayoutParams;
  34. import android.widget.EditText;
  35. import android.widget.TextView;
  36. import com.owncloud.android.R;
  37. import com.owncloud.android.datamodel.OCFile;
  38. import com.owncloud.android.lib.resources.files.FileUtils;
  39. import com.owncloud.android.ui.activity.ComponentsGetter;
  40. import com.owncloud.android.utils.DisplayUtils;
  41. import com.owncloud.android.utils.ThemeUtils;
  42. import androidx.annotation.NonNull;
  43. import androidx.appcompat.app.AlertDialog;
  44. import androidx.fragment.app.DialogFragment;
  45. /**
  46. * Dialog to input a new name for a file or folder to rename.
  47. *
  48. * Triggers the rename operation when name is confirmed.
  49. */
  50. public class RenameFileDialogFragment
  51. extends DialogFragment implements DialogInterface.OnClickListener {
  52. private static final String ARG_TARGET_FILE = "TARGET_FILE";
  53. private OCFile mTargetFile;
  54. /**
  55. * Public factory method to create new RenameFileDialogFragment instances.
  56. *
  57. * @param file File to rename.
  58. * @return Dialog ready to show.
  59. */
  60. public static RenameFileDialogFragment newInstance(OCFile file) {
  61. RenameFileDialogFragment frag = new RenameFileDialogFragment();
  62. Bundle args = new Bundle();
  63. args.putParcelable(ARG_TARGET_FILE, file);
  64. frag.setArguments(args);
  65. return frag;
  66. }
  67. @Override
  68. public void onStart() {
  69. super.onStart();
  70. int color = ThemeUtils.primaryAccentColor(getContext());
  71. AlertDialog alertDialog = (AlertDialog) getDialog();
  72. alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(color);
  73. alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(color);
  74. }
  75. @NonNull
  76. @Override
  77. public Dialog onCreateDialog(Bundle savedInstanceState) {
  78. int accentColor = ThemeUtils.primaryAccentColor(getContext());
  79. mTargetFile = getArguments().getParcelable(ARG_TARGET_FILE);
  80. // Inflate the layout for the dialog
  81. LayoutInflater inflater = getActivity().getLayoutInflater();
  82. View v = inflater.inflate(R.layout.edit_box_dialog, null);
  83. // Setup layout
  84. String currentName = mTargetFile.getFileName();
  85. EditText inputText = v.findViewById(R.id.user_input);
  86. inputText.setText(currentName);
  87. ThemeUtils.themeEditText(getContext(), inputText, false);
  88. int selectionStart = 0;
  89. int extensionStart = mTargetFile.isFolder() ? -1 : currentName.lastIndexOf('.');
  90. int selectionEnd = extensionStart >= 0 ? extensionStart : currentName.length();
  91. if (selectionStart >= 0 && selectionEnd >= 0) {
  92. inputText.setSelection(
  93. Math.min(selectionStart, selectionEnd),
  94. Math.max(selectionStart, selectionEnd));
  95. }
  96. inputText.requestFocus();
  97. inputText.getBackground().setColorFilter(accentColor, PorterDuff.Mode.SRC_ATOP);
  98. // Build the dialog
  99. AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
  100. builder.setView(v)
  101. .setPositiveButton(R.string.file_rename, this)
  102. .setNegativeButton(R.string.common_cancel, this)
  103. .setTitle(ThemeUtils.getColoredTitle(getResources().getString(R.string.rename_dialog_title),
  104. accentColor));
  105. Dialog d = builder.create();
  106. Window window = d.getWindow();
  107. if (window != null) {
  108. window.setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
  109. }
  110. return d;
  111. }
  112. @Override
  113. public void onClick(DialogInterface dialog, int which) {
  114. if (which == AlertDialog.BUTTON_POSITIVE) {
  115. String newFileName =
  116. ((TextView)(getDialog().findViewById(R.id.user_input)))
  117. .getText().toString().trim();
  118. if (newFileName.length() <= 0) {
  119. DisplayUtils.showSnackMessage(getActivity(), R.string.filename_empty);
  120. return;
  121. }
  122. if (!FileUtils.isValidName(newFileName)) {
  123. DisplayUtils.showSnackMessage(getActivity(), R.string.filename_forbidden_charaters_from_server);
  124. return;
  125. }
  126. ((ComponentsGetter) getActivity()).getFileOperationsHelper().renameFile(mTargetFile, newFileName);
  127. }
  128. }
  129. }