]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/db/AccountAutocompleteAdapter.java
Room-based profile management
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / db / AccountAutocompleteAdapter.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.db;
19
20 import android.content.Context;
21 import android.widget.ArrayAdapter;
22 import android.widget.Filter;
23
24 import androidx.annotation.NonNull;
25
26 import net.ktnx.mobileledger.dao.AccountDAO;
27 import net.ktnx.mobileledger.utils.Logger;
28
29 import java.util.ArrayList;
30 import java.util.List;
31
32 public class AccountAutocompleteAdapter extends ArrayAdapter<String> {
33     private final AccountFilter filter = new AccountFilter();
34     private final AccountDAO dao = DB.get()
35                                      .getAccountDAO();
36     private long profileId;
37     public AccountAutocompleteAdapter(Context context) {
38         super(context, android.R.layout.simple_dropdown_item_1line, new ArrayList<>());
39     }
40     public AccountAutocompleteAdapter(Context context, @NonNull Profile profile) {
41         this(context);
42         profileId = profile.getId();
43     }
44     public void setProfileId(long profileId) {
45         this.profileId = profileId;
46     }
47     @NonNull
48     @Override
49     public Filter getFilter() {
50         return filter;
51     }
52     //    @NonNull
53 //    @Override
54 //    public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
55 //        View view = convertView;
56 //        if (view == null) {
57 //            view = LayoutInflater.from(parent.getContext())
58 //                                 .inflate(android.R.layout.simple_dropdown_item_1line, parent,
59 //                                         false);
60 //        }
61 //        Account item = getItem(position);
62 //        ((TextView) view.findViewById(android.R.id.text1)).setText(item.getName());
63 //        return view;
64 //    }
65     class AccountFilter extends Filter {
66         @Override
67         protected FilterResults performFiltering(CharSequence constraint) {
68             FilterResults results = new FilterResults();
69             if (constraint == null) {
70                 results.count = 0;
71                 return results;
72             }
73
74             Logger.debug("acc", String.format("Looking for account '%s'", constraint));
75             final List<String> matches = AccountDAO.unbox((profileId == 0) ? dao.lookupByNameSync(
76                     String.valueOf(constraint)
77                           .toUpperCase()) : dao.lookupInProfileByNameSync(profileId,
78                     String.valueOf(constraint)
79                           .toUpperCase()));
80             results.values = matches;
81             results.count = matches.size();
82
83             return results;
84         }
85         @Override
86         @SuppressWarnings("unchecked")
87         protected void publishResults(CharSequence constraint, FilterResults results) {
88             if (results.values == null) {
89                 notifyDataSetInvalidated();
90             }
91             else {
92                 setNotifyOnChange(false);
93                 clear();
94                 addAll((List<String>) results.values);
95                 notifyDataSetChanged();
96             }
97         }
98     }
99 }