messenger-android

Android graphical user interfaces for GNUnet Messenger
Log | Files | Refs | README | LICENSE

LobbyCreateFragment.kt (3122B)


      1 /*
      2    This file is part of GNUnet.
      3    Copyright (C) 2021--2025 GNUnet e.V.
      4 
      5    GNUnet is free software: you can redistribute it and/or modify it
      6    under the terms of the GNU Affero General Public License as published
      7    by the Free Software Foundation, either version 3 of the License,
      8    or (at your option) any later version.
      9 
     10    GNUnet is distributed in the hope that it will be useful, but
     11    WITHOUT ANY WARRANTY; without even the implied warranty of
     12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     13    Affero General Public License for more details.
     14 
     15    You should have received a copy of the GNU Affero General Public License
     16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 
     18    SPDX-License-Identifier: AGPL3.0-or-later
     19  */
     20 /*
     21  * @author t3sserakt
     22  * @file GNUnetMessenger/app/src/main/java/org/gnunet/gnunetmessenger/ui/account/AccountAdapter.kt
     23  */
     24 
     25 package org.gnunet.gnunetmessenger.ui.account
     26 
     27 import android.os.Bundle
     28 import android.view.LayoutInflater
     29 import android.view.View
     30 import android.view.ViewGroup
     31 import android.widget.ArrayAdapter
     32 import android.widget.Button
     33 import android.widget.ProgressBar
     34 import android.widget.Spinner
     35 import androidx.fragment.app.Fragment
     36 import androidx.navigation.fragment.findNavController
     37 import org.gnunet.gnunetmessenger.MainActivity
     38 import org.gnunet.gnunetmessenger.R
     39 
     40 class LobbyCreateFragment : Fragment() {
     41 
     42     private val lifetimes = listOf("Off", "4 weeks", "1 week", "1 day", "8 hours", "5 minutes", "30 seconds")
     43 
     44     override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View {
     45         val view = inflater.inflate(R.layout.fragment_lobby_create, container, false)
     46 
     47         val spinner = view.findViewById<Spinner>(R.id.lifetime_spinner)
     48         val adapter = ArrayAdapter(requireContext(), android.R.layout.simple_spinner_item, lifetimes)
     49         val activity = activity as MainActivity
     50         val gnunetChat = activity.getGnunetChatInstance()
     51         val handle = activity.getChatHandle()
     52 
     53         adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
     54         spinner.adapter = adapter
     55 
     56         view.findViewById<Button>(R.id.btn_cancel).setOnClickListener {
     57             findNavController().popBackStack()
     58         }
     59 
     60         view.findViewById<Button>(R.id.btn_generate).setOnClickListener {
     61             val selectedLifetime = spinner.selectedItem.toString()
     62             val progressBar = view.findViewById<ProgressBar>(R.id.progress_bar)
     63             progressBar.visibility = View.VISIBLE
     64             gnunetChat.lobbyOpen(handle){ lobbyPubKey ->
     65                 progressBar.post {
     66                     progressBar.visibility = View.GONE
     67                     val action =
     68                         LobbyCreateFragmentDirections.actionLobbyCreateFragmentToLobbyDisplayFragment(
     69                             lobbyId = lobbyPubKey,
     70                             lifetime = selectedLifetime
     71                         )
     72                     findNavController().navigate(action)
     73                 }
     74             }
     75 
     76         }
     77 
     78         return view
     79     }
     80 }