]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/templates/TemplateViewHolder.java
manipulation of templates via pop-up menu, add template duplication
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / templates / TemplateViewHolder.java
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui.templates;
19
20 import androidx.annotation.NonNull;
21 import androidx.appcompat.app.AlertDialog;
22 import androidx.recyclerview.widget.RecyclerView;
23
24 import net.ktnx.mobileledger.R;
25 import net.ktnx.mobileledger.databinding.TemplateListTemplateItemBinding;
26 import net.ktnx.mobileledger.db.TemplateHeader;
27
28 class TemplateViewHolder extends RecyclerView.ViewHolder {
29     final TemplateListTemplateItemBinding b;
30     public TemplateViewHolder(@NonNull TemplateListTemplateItemBinding binding) {
31         super(binding.getRoot());
32         b = binding;
33     }
34     public void bindToItem(TemplateHeader item) {
35         b.templateName.setText(item.getName());
36         b.templateName.setOnClickListener(
37                 v -> ((TemplatesActivity) v.getContext()).onEditTemplate(item.getId()));
38         b.templateName.setOnLongClickListener((v) -> {
39             TemplatesActivity activity = (TemplatesActivity) v.getContext();
40             AlertDialog.Builder builder = new AlertDialog.Builder(activity);
41             final String templateName = item.getName();
42             builder.setTitle(templateName);
43             builder.setItems(R.array.templates_ctx_menu, (dialog, which) -> {
44                 if (which == 0) { // edit
45                     activity.onEditTemplate(item.getId());
46                 }
47                 else if (which == 1) { // duplicate
48                     activity.onDuplicateTemplate(item.getId());
49                 }
50                 else if (which == 2) { // delete
51                     activity.onDeleteTemplate(item.getId());
52                 }
53                 else {
54                     throw new RuntimeException(String.format("Unknown menu item id (%d)", which));
55                 }
56                 dialog.dismiss();
57             });
58             builder.show();
59             return true;
60         });
61     }
62 }