]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/CurrencySelectorFragment.java
use requireContext instead of Objects.requireNonNull
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / CurrencySelectorFragment.java
1 /*
2  * Copyright © 2019 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;
19
20 import android.app.Dialog;
21 import android.content.Context;
22 import android.os.Bundle;
23 import android.view.View;
24 import android.widget.RadioButton;
25 import android.widget.RadioGroup;
26 import android.widget.Switch;
27 import android.widget.TextView;
28
29 import androidx.annotation.NonNull;
30 import androidx.annotation.Nullable;
31 import androidx.appcompat.app.AppCompatDialogFragment;
32 import androidx.lifecycle.ViewModelProvider;
33 import androidx.recyclerview.widget.GridLayoutManager;
34 import androidx.recyclerview.widget.LinearLayoutManager;
35 import androidx.recyclerview.widget.RecyclerView;
36
37 import net.ktnx.mobileledger.App;
38 import net.ktnx.mobileledger.R;
39 import net.ktnx.mobileledger.model.Currency;
40 import net.ktnx.mobileledger.model.Data;
41 import net.ktnx.mobileledger.model.MobileLedgerProfile;
42
43 import java.util.ArrayList;
44 import java.util.List;
45 import java.util.Objects;
46 import java.util.concurrent.CopyOnWriteArrayList;
47
48 /**
49  * A fragment representing a list of Items.
50  * <p/>
51  * Activities containing this fragment MUST implement the {@link OnCurrencySelectedListener}
52  * interface.
53  */
54 public class CurrencySelectorFragment extends AppCompatDialogFragment
55         implements OnCurrencySelectedListener, OnCurrencyLongClickListener {
56
57     public static final int DEFAULT_COLUMN_COUNT = 2;
58     public static final String ARG_COLUMN_COUNT = "column-count";
59     public static final String ARG_SHOW_PARAMS = "show-params";
60     public static final boolean DEFAULT_SHOW_PARAMS = true;
61     private int mColumnCount = DEFAULT_COLUMN_COUNT;
62     private CurrencySelectorModel model;
63     private boolean deferredShowPositionAndPadding;
64     private OnCurrencySelectedListener onCurrencySelectedListener;
65
66     /**
67      * Mandatory empty constructor for the fragment manager to instantiate the
68      * fragment (e.g. upon screen orientation changes).
69      */
70     public CurrencySelectorFragment() {
71     }
72     @SuppressWarnings("unused")
73     public static CurrencySelectorFragment newInstance() {
74         return newInstance(DEFAULT_COLUMN_COUNT, DEFAULT_SHOW_PARAMS);
75     }
76     public static CurrencySelectorFragment newInstance(int columnCount, boolean showParams) {
77         CurrencySelectorFragment fragment = new CurrencySelectorFragment();
78         Bundle args = new Bundle();
79         args.putInt(ARG_COLUMN_COUNT, columnCount);
80         args.putBoolean(ARG_SHOW_PARAMS, showParams);
81         fragment.setArguments(args);
82         return fragment;
83     }
84     @Override
85     public void onCreate(Bundle savedInstanceState) {
86         super.onCreate(savedInstanceState);
87
88         if (getArguments() != null) {
89             mColumnCount = getArguments().getInt(ARG_COLUMN_COUNT, DEFAULT_COLUMN_COUNT);
90         }
91     }
92     @NonNull
93     @Override
94     public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
95         Context context = requireContext();
96         Dialog csd = new Dialog(context);
97         csd.setContentView(R.layout.fragment_currency_selector_list);
98         csd.setTitle(R.string.choose_currency_label);
99
100         RecyclerView recyclerView = csd.findViewById(R.id.list);
101
102         if (mColumnCount <= 1) {
103             recyclerView.setLayoutManager(new LinearLayoutManager(context));
104         }
105         else {
106             recyclerView.setLayoutManager(new GridLayoutManager(context, mColumnCount));
107         }
108         model = new ViewModelProvider(this).get(CurrencySelectorModel.class);
109         if (onCurrencySelectedListener != null)
110             model.setOnCurrencySelectedListener(onCurrencySelectedListener);
111         MobileLedgerProfile profile = Objects.requireNonNull(Data.profile.getValue());
112
113         model.currencies.setValue(new CopyOnWriteArrayList<>(profile.getCurrencies()));
114         CurrencySelectorRecyclerViewAdapter adapter = new CurrencySelectorRecyclerViewAdapter();
115         model.currencies.observe(this, list -> adapter.submitList(list));
116
117         recyclerView.setAdapter(adapter);
118         adapter.setCurrencySelectedListener(this);
119         adapter.setCurrencyLongClickListener(this);
120
121         final TextView tvNewCurrName = csd.findViewById(R.id.new_currency_name);
122         final TextView tvNoCurrBtn = csd.findViewById(R.id.btn_no_currency);
123         final TextView tvAddCurrOkBtn = csd.findViewById(R.id.btn_add_currency);
124         final TextView tvAddCurrBtn = csd.findViewById(R.id.btn_add_new);
125
126         tvNewCurrName.setVisibility(View.GONE);
127         tvAddCurrOkBtn.setVisibility(View.GONE);
128         tvNoCurrBtn.setVisibility(View.VISIBLE);
129         tvAddCurrBtn.setVisibility(View.VISIBLE);
130
131         tvAddCurrBtn.setOnClickListener(v -> {
132             tvNewCurrName.setVisibility(View.VISIBLE);
133             tvAddCurrOkBtn.setVisibility(View.VISIBLE);
134
135             tvNoCurrBtn.setVisibility(View.GONE);
136             tvAddCurrBtn.setVisibility(View.GONE);
137
138             tvNewCurrName.setText(null);
139             tvNewCurrName.requestFocus();
140             net.ktnx.mobileledger.utils.Misc.showSoftKeyboard(this);
141         });
142
143         tvAddCurrOkBtn.setOnClickListener(v -> {
144
145
146             String currName = String.valueOf(tvNewCurrName.getText());
147             if (!currName.isEmpty()) {
148                 List<Currency> list = new ArrayList<>(model.currencies.getValue());
149                 // FIXME hardcoded position and gap setting
150                 list.add(new Currency(profile, String.valueOf(tvNewCurrName.getText()),
151                         Currency.Position.after, false));
152                 model.currencies.setValue(list);
153             }
154
155             tvNewCurrName.setVisibility(View.GONE);
156             tvAddCurrOkBtn.setVisibility(View.GONE);
157
158             tvNoCurrBtn.setVisibility(View.VISIBLE);
159             tvAddCurrBtn.setVisibility(View.VISIBLE);
160         });
161
162         tvNoCurrBtn.setOnClickListener(v -> {
163             adapter.notifyCurrencySelected(null);
164             dismiss();
165         });
166
167         RadioButton rbPositionLeft = csd.findViewById(R.id.currency_position_left);
168         RadioButton rbPositionRight = csd.findViewById(R.id.currency_position_right);
169
170         if (Data.currencySymbolPosition.getValue() == Currency.Position.before)
171             rbPositionLeft.toggle();
172         else
173             rbPositionRight.toggle();
174
175         RadioGroup rgPosition = csd.findViewById(R.id.position_radio_group);
176         rgPosition.setOnCheckedChangeListener((group, checkedId) -> {
177             if (checkedId == R.id.currency_position_left)
178                 Data.currencySymbolPosition.setValue(Currency.Position.before);
179             else
180                 Data.currencySymbolPosition.setValue(Currency.Position.after);
181         });
182
183         Switch gap = csd.findViewById(R.id.currency_gap);
184
185         gap.setChecked(Data.currencyGap.getValue());
186
187         gap.setOnCheckedChangeListener((v, checked) -> {
188             Data.currencyGap.setValue(checked);
189         });
190
191         model.observePositionAndPaddingVisible(this, visible -> {
192             csd.findViewById(R.id.params_panel)
193                .setVisibility(visible ? View.VISIBLE : View.GONE);
194         });
195
196         if ((savedInstanceState != null) ? savedInstanceState.getBoolean(ARG_SHOW_PARAMS,
197                 DEFAULT_SHOW_PARAMS) : DEFAULT_SHOW_PARAMS)
198             model.showPositionAndPadding();
199         else
200             model.hidePositionAndPadding();
201
202         return csd;
203     }
204     public void setOnCurrencySelectedListener(OnCurrencySelectedListener listener) {
205         onCurrencySelectedListener = listener;
206
207         if (model != null)
208             model.setOnCurrencySelectedListener(listener);
209     }
210     public void resetOnCurrencySelectedListener() {
211         model.resetOnCurrencySelectedListener();
212     }
213     @Override
214     public void onCurrencySelected(Currency item) {
215         model.triggerOnCurrencySelectedListener(item);
216
217         dismiss();
218     }
219
220     @Override
221     public void onCurrencyLongClick(Currency item) {
222         ArrayList<Currency> list = new ArrayList<>(model.currencies.getValue());
223         App.getDatabase()
224            .execSQL("delete from currencies where id=?", new Object[]{item.getId()});
225         list.remove(item);
226         model.currencies.setValue(list);
227     }
228     public void showPositionAndPadding() {
229         deferredShowPositionAndPadding = true;
230     }
231     public void hidePositionAndPadding() {
232         deferredShowPositionAndPadding = false;
233     }
234 }