Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EditStackDialogFragment.java « stack « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90813700579d2b0f57ab66946aa7305ad7adb443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package it.niedermann.nextcloud.deck.ui.stack;

import android.app.Dialog;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.EditText;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.fragment.app.DialogFragment;

import java.util.Objects;

import butterknife.BindView;
import butterknife.ButterKnife;
import it.niedermann.nextcloud.deck.Application;
import it.niedermann.nextcloud.deck.R;

public class EditStackDialogFragment extends DialogFragment {
    public static final Long NO_STACK_ID = -1L;
    private static final String KEY_STACK_ID = "board_id";
    private static final String KEY_OLD_TITLE = "old_title";
    private long stackId = NO_STACK_ID;
    private EditStackListener editStackListener;

    @BindView(R.id.input)
    EditText input;

    /**
     * Use newInstance()-Method
     */
    public EditStackDialogFragment() {
    }

    @Override
    public void onAttach(@NonNull Context context) {
        super.onAttach(context);
        if (context instanceof EditStackListener) {
            this.editStackListener = (EditStackListener) context;
        } else {
            throw new ClassCastException("Caller must implement " + EditStackListener.class.getCanonicalName());
        }
    }

    @NonNull
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        View view = requireActivity().getLayoutInflater().inflate(R.layout.dialog_stack_create, null);
        ButterKnife.bind(this, view);

        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), Application.getAppTheme(getContext()) ? R.style.DialogDarkTheme : R.style.ThemeOverlay_AppCompat_Dialog_Alert)
                .setView(view)
                .setNegativeButton(android.R.string.cancel, (dialog, which) -> {
                    // Do something else
                });
        if (getArguments() == null) {
            throw new IllegalArgumentException("Please add at least stack id to the arguments");
        }
        stackId = getArguments().getLong(KEY_STACK_ID);
        if (stackId == NO_STACK_ID) {
            builder.setTitle(R.string.add_column)
                    .setPositiveButton(R.string.simple_add, (dialog, which) -> editStackListener.onCreateStack(input.getText().toString()));
        } else {
            input.setText(getArguments().getString(KEY_OLD_TITLE));
            builder.setTitle(R.string.rename_column)
                    .setPositiveButton(R.string.simple_rename, (dialog, which) -> editStackListener.onUpdateStack(stackId, input.getText().toString()));
        }
        return builder.create();
    }

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        input.requestFocus();
        Objects.requireNonNull(Objects.requireNonNull(getDialog()).getWindow()).setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
        return super.onCreateView(inflater, container, savedInstanceState);
    }

    public static EditStackDialogFragment newInstance(long stackId) {
        return newInstance(stackId, null);
    }

    public static EditStackDialogFragment newInstance(long stackId, String oldTitle) {
        EditStackDialogFragment dialog = new EditStackDialogFragment();

        Bundle args = new Bundle();
        args.putLong(KEY_STACK_ID, stackId);
        args.putString(KEY_OLD_TITLE, oldTitle);
        dialog.setArguments(args);

        return dialog;
    }

    public interface EditStackListener {
        void onCreateStack(String title);

        void onUpdateStack(long stackId, String title);
    }
}