From 2398d0fb201b53b2e41bf9d549b293b6b93e2c45 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Wed, 26 Oct 2022 10:17:26 -0300 Subject: [wallet] Remove old anastasis prototype --- .../ui/identity/ChangeLocationFragment.kt | 68 ----------- .../gnu/anastasis/ui/identity/IdentityFragment.kt | 124 --------------------- .../org/gnu/anastasis/ui/identity/Locations.kt | 29 ----- 3 files changed, 221 deletions(-) delete mode 100644 anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/ChangeLocationFragment.kt delete mode 100644 anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/IdentityFragment.kt delete mode 100644 anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/Locations.kt (limited to 'anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity') diff --git a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/ChangeLocationFragment.kt b/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/ChangeLocationFragment.kt deleted file mode 100644 index 00eec11..0000000 --- a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/ChangeLocationFragment.kt +++ /dev/null @@ -1,68 +0,0 @@ -/* - * This file is part of GNU Taler - * (C) 2020 Taler Systems S.A. - * - * GNU Taler is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 3, or (at your option) any later version. - * - * GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with - * GNU Taler; see the file COPYING. If not, see - */ - -package org.gnu.anastasis.ui.identity - -import android.os.Bundle -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import androidx.fragment.app.Fragment -import androidx.fragment.app.activityViewModels -import androidx.navigation.fragment.findNavController -import org.gnu.anastasis.ui.MainViewModel -import org.gnu.anastasis.ui.R -import org.gnu.anastasis.ui.databinding.FragmentChangeLocationBinding - -class ChangeLocationFragment : Fragment() { - - private val viewModel: MainViewModel by activityViewModels() - - private var _binding: FragmentChangeLocationBinding? = null - - // This property is only valid between onCreateView and - // onDestroyView. - private val binding get() = _binding!! - - override fun onCreateView( - inflater: LayoutInflater, container: ViewGroup?, - savedInstanceState: Bundle? - ): View? { - return inflater.inflate(R.layout.fragment_change_location, container, false) - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - binding.switzerlandView.setOnClickListener { - changeCountry(LOCATIONS[0]) - } - binding.germanyView.setOnClickListener { - changeCountry(LOCATIONS[1]) - } - binding.usaView.setOnClickListener { - changeCountry(LOCATIONS[2]) - } - binding.indiaView.setOnClickListener { - changeCountry(LOCATIONS[3]) - } - } - - private fun changeCountry(location: Location) { - viewModel.currentCountry.value = location - findNavController().popBackStack() - } - -} diff --git a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/IdentityFragment.kt b/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/IdentityFragment.kt deleted file mode 100644 index 73ae629..0000000 --- a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/IdentityFragment.kt +++ /dev/null @@ -1,124 +0,0 @@ -/* - * This file is part of GNU Taler - * (C) 2020 Taler Systems S.A. - * - * GNU Taler is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 3, or (at your option) any later version. - * - * GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with - * GNU Taler; see the file COPYING. If not, see - */ - -package org.gnu.anastasis.ui.identity - -import android.annotation.SuppressLint -import android.app.DatePickerDialog -import android.os.Build.VERSION.SDK_INT -import android.os.Bundle -import android.telephony.TelephonyManager -import android.text.format.DateFormat.getDateFormat -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import android.widget.Toast -import android.widget.Toast.LENGTH_LONG -import androidx.core.content.getSystemService -import androidx.fragment.app.Fragment -import androidx.fragment.app.activityViewModels -import androidx.navigation.fragment.findNavController -import org.gnu.anastasis.ui.MainViewModel -import org.gnu.anastasis.ui.R -import org.gnu.anastasis.ui.databinding.FragmentIdentityBinding -import java.util.Calendar -import java.util.Date -import java.util.Locale -import java.util.concurrent.TimeUnit.DAYS - -private const val MIN_AGE = 18 - -class AnastasisIdentityFragment : Fragment() { - - private val model: MainViewModel by activityViewModels() - - private var _binding: FragmentIdentityBinding? = null - - // This property is only valid between onCreateView and - // onDestroyView. - private val binding get() = _binding!! - - override fun onCreateView( - inflater: LayoutInflater, container: ViewGroup?, - savedInstanceState: Bundle?, - ): View? { - _binding = FragmentIdentityBinding.inflate(inflater, container, false) - val view = binding.root - return view - } - - override fun onDestroyView() { - super.onDestroyView() - _binding = null - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - - model.currentCountry.observe(viewLifecycleOwner, { country -> - binding.countryView.text = country.name - if (binding.stub != null) { - binding.stub.layoutResource = country.layoutRes - binding.stub.inflate() - } - }) - binding.changeCountryView.setOnClickListener { - findNavController().navigate(R.id.action_nav_anastasis_identity_to_nav_change_location) - } - binding.birthDateInput.editText?.setOnClickListener { - if (SDK_INT >= 24) { - val picker = DatePickerDialog(requireContext()) - picker.datePicker.maxDate = - System.currentTimeMillis() - DAYS.toMillis(365) * MIN_AGE - picker.setOnDateSetListener { _, year, month, dayOfMonth -> - val calender = Calendar.getInstance().apply { - set(year, month, dayOfMonth) - } - val date = Date(calender.timeInMillis) - val dateStr = getDateFormat(requireContext()).format(date) - binding.birthDateInput.editText?.setText(dateStr) - } - picker.show() - } else { - Toast.makeText(requireContext(), "Needs newer phone", LENGTH_LONG).show() - } - } - binding.createIdentifierButton.setOnClickListener { - findNavController().navigate(R.id.action_nav_anastasis_intro_to_nav_anastasis_authentication) - } - } - - @Suppress("unused") - private fun getCountryName(): String { - val tm = requireContext().getSystemService()!! - val countryIso = if (tm.networkCountryIso.isNullOrEmpty()) { - if (tm.simCountryIso.isNullOrEmpty()) { - if (Locale.getDefault().country.isNullOrEmpty()) "unknown" - else Locale.getDefault().country - } else tm.simCountryIso - } else tm.networkCountryIso - var countryName = countryIso - for (locale in Locale.getAvailableLocales()) { - @SuppressLint("DefaultLocale") - if (locale.country.toLowerCase() == countryIso) { - countryName = locale.displayCountry - break - } - } - return countryName - } - -} diff --git a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/Locations.kt b/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/Locations.kt deleted file mode 100644 index 13658d2..0000000 --- a/anastasis-ui/src/main/java/org/gnu/anastasis/ui/identity/Locations.kt +++ /dev/null @@ -1,29 +0,0 @@ -/* - * This file is part of GNU Taler - * (C) 2020 Taler Systems S.A. - * - * GNU Taler is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 3, or (at your option) any later version. - * - * GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with - * GNU Taler; see the file COPYING. If not, see - */ - -package org.gnu.anastasis.ui.identity - -import androidx.annotation.LayoutRes -import org.gnu.anastasis.ui.R - -data class Location(val name: String, @LayoutRes val layoutRes: Int) - -val LOCATIONS = listOf( - Location("Switzerland", R.layout.country_switzerland), - Location("Germany", R.layout.country_germany), - Location("Unites States", R.layout.country_usa), - Location("India", R.layout.country_india) -) -- cgit v1.2.3