]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionFragment.java
avoid deprecated usage of viewModelProviders
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / activity / NewTransactionFragment.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.activity;
19
20 import android.content.Context;
21 import android.os.Bundle;
22 import android.renderscript.RSInvalidStateException;
23 import android.view.LayoutInflater;
24 import android.view.Menu;
25 import android.view.MenuInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
28
29 import androidx.annotation.NonNull;
30 import androidx.annotation.Nullable;
31 import androidx.fragment.app.Fragment;
32 import androidx.fragment.app.FragmentActivity;
33 import androidx.lifecycle.ViewModelProvider;
34 import androidx.recyclerview.widget.ItemTouchHelper;
35 import androidx.recyclerview.widget.LinearLayoutManager;
36 import androidx.recyclerview.widget.RecyclerView;
37
38 import com.google.android.material.floatingactionbutton.FloatingActionButton;
39 import com.google.android.material.snackbar.Snackbar;
40
41 import net.ktnx.mobileledger.R;
42 import net.ktnx.mobileledger.model.Data;
43 import net.ktnx.mobileledger.model.LedgerTransaction;
44 import net.ktnx.mobileledger.model.LedgerTransactionAccount;
45 import net.ktnx.mobileledger.model.MobileLedgerProfile;
46 import net.ktnx.mobileledger.utils.Logger;
47 import net.ktnx.mobileledger.utils.Misc;
48
49 import org.jetbrains.annotations.NotNull;
50
51 import java.util.Date;
52
53 /**
54  * A simple {@link Fragment} subclass.
55  * Activities that contain this fragment must implement the
56  * {@link OnNewTransactionFragmentInteractionListener} interface
57  * to handle interaction events.
58  */
59 public class NewTransactionFragment extends Fragment {
60     private NewTransactionItemsAdapter listAdapter;
61     private NewTransactionModel viewModel;
62     private RecyclerView list;
63     private FloatingActionButton fab;
64     private OnNewTransactionFragmentInteractionListener mListener;
65     private MobileLedgerProfile mProfile;
66     public NewTransactionFragment() {
67         // Required empty public constructor
68         setHasOptionsMenu(true);
69     }
70     @Override
71     public void onCreateOptionsMenu(@NonNull Menu menu, @NonNull MenuInflater inflater) {
72         super.onCreateOptionsMenu(menu, inflater);
73         inflater.inflate(R.menu.new_transaction_fragment, menu);
74         menu.findItem(R.id.action_reset_new_transaction_activity)
75             .setOnMenuItemClickListener(item -> {
76                 listAdapter.reset();
77                 return true;
78             });
79     }
80     @Override
81     public View onCreateView(LayoutInflater inflater, ViewGroup container,
82                              Bundle savedInstanceState) {
83         // Inflate the layout for this fragment
84         return inflater.inflate(R.layout.fragment_new_transaction, container, false);
85     }
86
87     @Override
88     public void onActivityCreated(@Nullable Bundle savedInstanceState) {
89         super.onActivityCreated(savedInstanceState);
90         FragmentActivity activity = getActivity();
91         if (activity == null)
92             throw new RSInvalidStateException(
93                     "getActivity() returned null within onActivityCreated()");
94
95         list = activity.findViewById(R.id.new_transaction_accounts);
96         viewModel = new ViewModelProvider(activity).get(NewTransactionModel.class);
97         mProfile = Data.profile.getValue();
98         listAdapter = new NewTransactionItemsAdapter(viewModel, mProfile);
99         list.setAdapter(listAdapter);
100         list.setLayoutManager(new LinearLayoutManager(activity));
101         Data.profile.observe(this, profile -> {
102             mProfile = profile;
103             listAdapter.setProfile(profile);
104         });
105         listAdapter.notifyDataSetChanged();
106         new ItemTouchHelper(new ItemTouchHelper.Callback() {
107             @Override
108             public int getMovementFlags(@NonNull RecyclerView recyclerView,
109                                         @NonNull RecyclerView.ViewHolder viewHolder) {
110                 int flags = makeFlag(ItemTouchHelper.ACTION_STATE_IDLE, ItemTouchHelper.END);
111                 // the top item is always there (date and description)
112                 if (viewHolder.getAdapterPosition() > 0) {
113                     if (viewModel.getAccountCount() > 2) {
114                         flags |= makeFlag(ItemTouchHelper.ACTION_STATE_SWIPE,
115                                 ItemTouchHelper.START | ItemTouchHelper.END);
116                     }
117                 }
118
119                 return flags;
120             }
121             @Override
122             public boolean onMove(@NonNull RecyclerView recyclerView,
123                                   @NonNull RecyclerView.ViewHolder viewHolder,
124                                   @NonNull RecyclerView.ViewHolder target) {
125                 return false;
126             }
127             @Override
128             public void onSwiped(@NonNull RecyclerView.ViewHolder viewHolder, int direction) {
129                 if (viewModel.getAccountCount() == 2)
130                     Snackbar.make(list, R.string.msg_at_least_two_accounts_are_required,
131                             Snackbar.LENGTH_LONG)
132                             .setAction("Action", null)
133                             .show();
134                 else {
135                     int pos = viewHolder.getAdapterPosition();
136                     viewModel.removeItem(pos - 1);
137                     listAdapter.notifyItemRemoved(pos);
138                     viewModel.sendCountNotifications(); // needed after items re-arrangement
139                     viewModel.checkTransactionSubmittable(listAdapter);
140                 }
141             }
142         }).attachToRecyclerView(list);
143
144         viewModel.isSubmittable()
145                  .observe(this, isSubmittable -> {
146                      if (isSubmittable) {
147                          if (fab != null) {
148                              fab.show();
149                              fab.setEnabled(true);
150                          }
151                      }
152                      else {
153                          if (fab != null) {
154                              fab.hide();
155                          }
156                      }
157                  });
158         viewModel.checkTransactionSubmittable(listAdapter);
159
160         fab = activity.findViewById(R.id.fab);
161         fab.setOnClickListener(v -> onFabPressed());
162
163         boolean keep = false;
164
165         Bundle args = getArguments();
166         if (args != null) {
167             String error = args.getString("error");
168             if (error != null) {
169                 // TODO display error
170                 Logger.debug("new-trans-f", String.format("Got error: %s", error));
171                 Snackbar.make(list, error, Snackbar.LENGTH_LONG)
172                         .show();
173                 keep = true;
174             }
175         }
176
177         int focused = 0;
178         if (savedInstanceState != null) {
179             keep |= savedInstanceState.getBoolean("keep", true);
180             focused = savedInstanceState.getInt("focused", 0);
181         }
182
183         if (!keep)
184             viewModel.reset();
185         else {
186             viewModel.setFocusedItem(focused);
187         }
188     }
189     @Override
190     public void onSaveInstanceState(@NonNull Bundle outState) {
191         super.onSaveInstanceState(outState);
192         outState.putBoolean("keep", true);
193         final int focusedItem = viewModel.getFocusedItem();
194         outState.putInt("focused", focusedItem);
195     }
196     private void onFabPressed() {
197         fab.setEnabled(false);
198         Misc.hideSoftKeyboard(this);
199         if (mListener != null) {
200             Date date = viewModel.getDate();
201             LedgerTransaction tr =
202                     new LedgerTransaction(null, date, viewModel.getDescription(), mProfile);
203
204             LedgerTransactionAccount emptyAmountAccount = null;
205             float emptyAmountAccountBalance = 0;
206             for (int i = 0; i < viewModel.getAccountCount(); i++) {
207                 LedgerTransactionAccount acc =
208                         new LedgerTransactionAccount(viewModel.getAccount(i));
209                 if (acc.getAccountName()
210                        .trim()
211                        .isEmpty())
212                     continue;
213
214                 if (acc.isAmountSet()) {
215                     emptyAmountAccountBalance += acc.getAmount();
216                 }
217                 else {
218                     emptyAmountAccount = acc;
219                 }
220
221                 tr.addAccount(acc);
222             }
223
224             if (emptyAmountAccount != null)
225                 emptyAmountAccount.setAmount(-emptyAmountAccountBalance);
226
227             mListener.onTransactionSave(tr);
228         }
229     }
230
231     @Override
232     public void onAttach(@NotNull Context context) {
233         super.onAttach(context);
234         if (context instanceof OnNewTransactionFragmentInteractionListener) {
235             mListener = (OnNewTransactionFragmentInteractionListener) context;
236         }
237         else {
238             throw new RuntimeException(
239                     context.toString() + " must implement OnFragmentInteractionListener");
240         }
241     }
242
243     @Override
244     public void onDetach() {
245         super.onDetach();
246         mListener = null;
247     }
248
249     /**
250      * This interface must be implemented by activities that contain this
251      * fragment to allow an interaction in this fragment to be communicated
252      * to the activity and potentially other fragments contained in that
253      * activity.
254      * <p>
255      * See the Android Training lesson <a href=
256      * "http://developer.android.com/training/basics/fragments/communicating.html"
257      * >Communicating with Other Fragments</a> for more information.
258      */
259     public interface OnNewTransactionFragmentInteractionListener {
260         void onTransactionSave(LedgerTransaction tr);
261     }
262 }