123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /**
- * ownCloud Android client application
- *
- * @author David A. Velasco
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package com.owncloud.android.ui.dialog;
- import android.app.Dialog;
- import android.content.DialogInterface;
- import android.graphics.PorterDuff;
- import android.os.Bundle;
- import android.text.TextUtils;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.Window;
- import android.view.WindowManager.LayoutParams;
- import android.widget.EditText;
- import android.widget.TextView;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.lib.resources.files.FileUtils;
- import com.owncloud.android.ui.activity.ComponentsGetter;
- import com.owncloud.android.utils.DisplayUtils;
- import com.owncloud.android.utils.ThemeUtils;
- import androidx.annotation.NonNull;
- import androidx.appcompat.app.AlertDialog;
- import androidx.fragment.app.DialogFragment;
- /**
- * Dialog to input the name for a new folder to create.
- *
- * Triggers the folder creation when name is confirmed.
- */
- public class CreateFolderDialogFragment
- extends DialogFragment implements DialogInterface.OnClickListener {
- private static final String ARG_PARENT_FOLDER = "PARENT_FOLDER";
- public static final String CREATE_FOLDER_FRAGMENT = "CREATE_FOLDER_FRAGMENT";
- private OCFile mParentFolder;
- /**
- * Public factory method to create new CreateFolderDialogFragment instances.
- *
- * @param parentFolder Folder to create
- * @return Dialog ready to show.
- */
- public static CreateFolderDialogFragment newInstance(OCFile parentFolder) {
- CreateFolderDialogFragment frag = new CreateFolderDialogFragment();
- Bundle args = new Bundle();
- args.putParcelable(ARG_PARENT_FOLDER, parentFolder);
- frag.setArguments(args);
- return frag;
- }
- @Override
- public void onStart() {
- super.onStart();
- int color = ThemeUtils.primaryAccentColor(getContext());
- AlertDialog alertDialog = (AlertDialog) getDialog();
- alertDialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(color);
- alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(color);
- }
- @NonNull
- @Override
- public Dialog onCreateDialog(Bundle savedInstanceState) {
- int accentColor = ThemeUtils.primaryAccentColor(getContext());
- mParentFolder = getArguments().getParcelable(ARG_PARENT_FOLDER);
- // Inflate the layout for the dialog
- LayoutInflater inflater = getActivity().getLayoutInflater();
- View v = inflater.inflate(R.layout.edit_box_dialog, null);
- // Setup layout
- EditText inputText = v.findViewById(R.id.user_input);
- inputText.setText("");
- inputText.requestFocus();
- inputText.getBackground().setColorFilter(accentColor, PorterDuff.Mode.SRC_ATOP);
- inputText.setHighlightColor(ThemeUtils.primaryColor(getActivity()));
- // Build the dialog
- AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
- builder.setView(v)
- .setPositiveButton(R.string.folder_confirm_create, this)
- .setNegativeButton(R.string.common_cancel, this)
- .setTitle(R.string.uploader_info_dirname);
- AlertDialog d = builder.create();
- Window window = d.getWindow();
- if (window != null) {
- window.setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);
- }
- return d;
- }
- @Override
- public void onClick(DialogInterface dialog, int which) {
- if (which == AlertDialog.BUTTON_POSITIVE) {
- String newFolderName =
- ((TextView)(getDialog().findViewById(R.id.user_input)))
- .getText().toString().trim();
- if (TextUtils.isEmpty(newFolderName)) {
- DisplayUtils.showSnackMessage(getActivity(), R.string.filename_empty);
- return;
- }
- if (!FileUtils.isValidName(newFolderName)) {
- DisplayUtils.showSnackMessage(getActivity(), R.string.filename_forbidden_charaters_from_server);
- return;
- }
- String path = mParentFolder.getDecryptedRemotePath() + newFolderName + OCFile.PATH_SEPARATOR;
- ((ComponentsGetter) getActivity()).getFileOperationsHelper().createFolder(path);
- }
- }
- }
|