]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfileDetailActivity.java
d389dd8ab9a52cd55e4e56eb610b1ca2ab77524c
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / profiles / ProfileDetailActivity.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.profiles;
19
20 import android.content.Context;
21 import android.content.Intent;
22 import android.os.Bundle;
23 import android.view.Menu;
24 import android.view.MenuItem;
25
26 import androidx.annotation.Nullable;
27 import androidx.appcompat.app.ActionBar;
28 import androidx.appcompat.widget.Toolbar;
29 import androidx.lifecycle.ViewModelProvider;
30
31 import com.google.android.material.appbar.CollapsingToolbarLayout;
32
33 import net.ktnx.mobileledger.R;
34 import net.ktnx.mobileledger.db.DB;
35 import net.ktnx.mobileledger.db.Profile;
36 import net.ktnx.mobileledger.model.Data;
37 import net.ktnx.mobileledger.ui.activity.CrashReportingActivity;
38 import net.ktnx.mobileledger.utils.Colors;
39
40 import org.jetbrains.annotations.NotNull;
41
42 import static net.ktnx.mobileledger.utils.Logger.debug;
43
44 /**
45  * An activity representing a single Profile detail screen. This
46  * activity is only used on narrow width devices. On tablet-size devices,
47  * item details are presented side-by-side with a list of items
48  * in a ProfileListActivity (not really).
49  */
50 public class ProfileDetailActivity extends CrashReportingActivity {
51     private ProfileDetailFragment mFragment;
52     public static void start(Context context, @Nullable Profile profile) {
53         Intent starter = new Intent(context, ProfileDetailActivity.class);
54         if (profile != null) {
55             starter.putExtra(ProfileDetailFragment.ARG_ITEM_ID, profile.getId());
56             starter.putExtra(ProfileDetailFragment.ARG_ITEM_ID, profile.getTheme());
57         }
58         context.startActivity(starter);
59     }
60     @NotNull
61     private ProfileDetailModel getModel() {
62         return new ViewModelProvider(this).get(ProfileDetailModel.class);
63     }
64     @Override
65     protected void onCreate(Bundle savedInstanceState) {
66         final long id = getIntent().getLongExtra(ProfileDetailFragment.ARG_ITEM_ID, -1);
67
68         if (id == -1)
69             throw new RuntimeException("Invalid or missing profile ID");
70
71         DB.get()
72           .getProfileDAO()
73           .getById(id)
74           .observe(this, this::setProfile);
75
76         int themeHue = getIntent().getIntExtra(ProfileDetailFragment.ARG_HUE, -1);
77
78         super.onCreate(savedInstanceState);
79         if (themeHue == -1) {
80             themeHue = Colors.getNewProfileThemeHue(Data.profiles.getValue());
81         }
82         Colors.setupTheme(this, themeHue);
83         final ProfileDetailModel model = getModel();
84         model.initialThemeHue = themeHue;
85         model.setThemeId(themeHue);
86         setContentView(R.layout.activity_profile_detail);
87         Toolbar toolbar = findViewById(R.id.detail_toolbar);
88         setSupportActionBar(toolbar);
89
90
91         // Show the Up button in the action bar.
92         ActionBar actionBar = getSupportActionBar();
93         if (actionBar != null) {
94             actionBar.setDisplayHomeAsUpEnabled(true);
95         }
96
97         // savedInstanceState is non-null when there is fragment state
98         // saved from previous configurations of this activity
99         // (e.g. when rotating the screen from portrait to landscape).
100         // In this case, the fragment will automatically be re-added
101         // to its container so we don't need to manually add it.
102         // For more information, see the Fragments API guide at:
103         //
104         // http://developer.android.com/guide/components/fragments.html
105         //
106         if (savedInstanceState == null) {
107             // Create the detail fragment and add it to the activity
108             // using a fragment transaction.
109             Bundle arguments = new Bundle();
110             arguments.putInt(ProfileDetailFragment.ARG_HUE, themeHue);
111             mFragment = new ProfileDetailFragment();
112             mFragment.setArguments(arguments);
113             getSupportFragmentManager().beginTransaction()
114                                        .add(R.id.profile_detail_container, mFragment)
115                                        .commit();
116         }
117     }
118     private void setProfile(Profile profile) {
119         ProfileDetailModel model = new ViewModelProvider(this).get(ProfileDetailModel.class);
120         CollapsingToolbarLayout appBarLayout = findViewById(R.id.toolbar_layout);
121         if (appBarLayout != null) {
122             if (profile != null)
123                 appBarLayout.setTitle(profile.getName());
124             else
125                 appBarLayout.setTitle(getResources().getString(R.string.new_profile_title));
126         }
127         model.setValuesFromProfile(profile);
128     }
129     @Override
130     public boolean onCreateOptionsMenu(Menu menu) {
131         super.onCreateOptionsMenu(menu);
132         debug("profiles", "[activity] Creating profile details options menu");
133         if (mFragment != null)
134             mFragment.onCreateOptionsMenu(menu, getMenuInflater());
135
136         return true;
137     }
138     @Override
139     public boolean onOptionsItemSelected(MenuItem item) {
140         if (item.getItemId() == android.R.id.home) {
141             finish();
142             return true;
143         }
144         return super.onOptionsItemSelected(item);
145     }
146 }