latest version of app 1.0.8
This commit is contained in:
@@ -41,8 +41,9 @@ class UserListOfflineAdapter(private val view: View) : RecyclerView.Adapter<User
|
||||
override fun onBindViewHolder(holder: CompanyViewHolder, position: Int) {
|
||||
val userList = differ.currentList[position]
|
||||
holder.binding.apply {
|
||||
userName.text = userList.name
|
||||
userId.text = userList._id
|
||||
userName.text = "Name: ${userList.name}"
|
||||
userId.text = "Sample ID: ${userList._id}"
|
||||
timeCreated.text = "Time Created: ${userList.createdAt}"
|
||||
Glide.with(view).load(userList.userImageURL).into(userImage)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,7 +28,8 @@ class UserListOnlineAdapter(options: FirestoreRecyclerOptions<UserData>, private
|
||||
override fun onBindViewHolder(holder: OrderItemViewHolder, position: Int, model: UserData) {
|
||||
holder.binding.apply {
|
||||
userName.text = "Name: ${model.name}"
|
||||
userId.text = "User ID: ${model._id}"
|
||||
userId.text = "Sample ID: ${model._id}"
|
||||
timeCreated.text = "Time Created: ${model.createdAt}"
|
||||
Glide.with(view).load(model.userImageURL).into(userImage)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,6 +22,9 @@ object Constant {
|
||||
const val USER_ID = "usernameId"
|
||||
|
||||
val STATICID = listOf(
|
||||
"SMIMYSURU",
|
||||
"SMIKODAGU",
|
||||
"SMICHAMARAJA",
|
||||
"SMIREG1",
|
||||
"SMIREG2",
|
||||
"SMIREG3",
|
||||
|
||||
@@ -24,40 +24,40 @@ class MainActivity : AppCompatActivity() {
|
||||
override fun onResume() {
|
||||
super.onResume()
|
||||
|
||||
val firebaseAppDistribution = FirebaseAppDistribution.getInstance()
|
||||
firebaseAppDistribution.updateIfNewReleaseAvailable()
|
||||
.addOnProgressListener { updateProgress ->
|
||||
|
||||
if (updateProgress.apkBytesDownloaded > 0) {
|
||||
Toast.makeText(
|
||||
this,
|
||||
"${updateProgress.updateStatus}. ${updateProgress.apkBytesDownloaded / 1048576} /${updateProgress.apkFileTotalBytes / 1048576} MB",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
}
|
||||
.addOnFailureListener { e ->
|
||||
// (Optional) Handle errors.
|
||||
if (e is FirebaseAppDistributionException) {
|
||||
when (e.errorCode) {
|
||||
FirebaseAppDistributionException.Status.NOT_IMPLEMENTED -> {
|
||||
// SDK did nothing. This is expected when building for Play.
|
||||
}
|
||||
|
||||
else -> {
|
||||
// Handle other errors.
|
||||
Toast.makeText(
|
||||
this,
|
||||
"AppDistribution error, status: ${e.errorCode}",
|
||||
Toast.LENGTH_SHORT
|
||||
).show()
|
||||
}
|
||||
}
|
||||
FirebaseCrashlytics.getInstance().recordException(e)
|
||||
}
|
||||
}
|
||||
.addOnSuccessListener {
|
||||
// Toast.makeText(this, "App Update: Success!", Toast.LENGTH_SHORT).show()
|
||||
}
|
||||
// val firebaseAppDistribution = FirebaseAppDistribution.getInstance()
|
||||
// firebaseAppDistribution.updateIfNewReleaseAvailable()
|
||||
// .addOnProgressListener { updateProgress ->
|
||||
//
|
||||
// if (updateProgress.apkBytesDownloaded > 0) {
|
||||
// Toast.makeText(
|
||||
// this,
|
||||
// "${updateProgress.updateStatus}. ${updateProgress.apkBytesDownloaded / 1048576} /${updateProgress.apkFileTotalBytes / 1048576} MB",
|
||||
// Toast.LENGTH_SHORT
|
||||
// ).show()
|
||||
// }
|
||||
// }
|
||||
// .addOnFailureListener { e ->
|
||||
// // (Optional) Handle errors.
|
||||
// if (e is FirebaseAppDistributionException) {
|
||||
// when (e.errorCode) {
|
||||
// FirebaseAppDistributionException.Status.NOT_IMPLEMENTED -> {
|
||||
// // SDK did nothing. This is expected when building for Play.
|
||||
// }
|
||||
//
|
||||
// else -> {
|
||||
// // Handle other errors.
|
||||
// Toast.makeText(
|
||||
// this,
|
||||
// "AppDistribution error, status: ${e.errorCode}",
|
||||
// Toast.LENGTH_SHORT
|
||||
// ).show()
|
||||
// }
|
||||
// }
|
||||
// FirebaseCrashlytics.getInstance().recordException(e)
|
||||
// }
|
||||
// }
|
||||
// .addOnSuccessListener {
|
||||
//// Toast.makeText(this, "App Update: Success!", Toast.LENGTH_SHORT).show()
|
||||
// }
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,7 @@ import android.os.Bundle
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.SearchView
|
||||
import android.widget.Toast
|
||||
import androidx.fragment.app.viewModels
|
||||
import androidx.navigation.fragment.findNavController
|
||||
@@ -25,13 +26,15 @@ import `in`.sminnovations.hposregistration.R
|
||||
import `in`.sminnovations.hposregistration.databinding.FragmentUserListBinding
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Date
|
||||
import java.util.Locale
|
||||
|
||||
@AndroidEntryPoint
|
||||
class UserListFragment : BaseFragment() {
|
||||
|
||||
private lateinit var userId:String
|
||||
private var district:String ="Mysuru"
|
||||
private var _binding: FragmentUserListBinding? = null
|
||||
private val binding get() = _binding!!
|
||||
|
||||
private lateinit var offlineAdapter:UserListOfflineAdapter
|
||||
private val viewModel by viewModels<RegistrationViewModel>()
|
||||
|
||||
private var isOnline = false
|
||||
@@ -43,6 +46,14 @@ class UserListFragment : BaseFragment() {
|
||||
): View {
|
||||
_binding = FragmentUserListBinding.inflate(inflater, container, false)
|
||||
sharedPreference = requireContext().getSharedPreferences("PREFERENCE_NAME", Context.MODE_PRIVATE)
|
||||
userId = sharedPreference.getString(Constant.USER_ID, "").toString()
|
||||
if(userId=="SMIMYSURU"){
|
||||
district = "Mysuru"
|
||||
}else if(userId=="SMIKODAGU"){
|
||||
district = "Kodagu"
|
||||
}else if(userId=="SMICHAMARAJA"){
|
||||
district = "Chamarajanagar"
|
||||
}
|
||||
setupViews()
|
||||
return binding.root
|
||||
}
|
||||
@@ -66,12 +77,15 @@ class UserListFragment : BaseFragment() {
|
||||
binding.btnRegisterUser.setOnClickListener {
|
||||
findNavController().navigate(R.id.action_userListFragment_to_registrationFragment)
|
||||
}
|
||||
|
||||
binding.btnLogout.setOnClickListener {
|
||||
logoutUser(requireContext())
|
||||
}
|
||||
}
|
||||
|
||||
private fun init() {
|
||||
binding.searchUser.isIconified = false
|
||||
|
||||
viewModel.networkStatusLiveData.observe(viewLifecycleOwner) { isNetworkAvailable ->
|
||||
if (isNetworkAvailable) {
|
||||
isOnline = isNetworkAvailable
|
||||
@@ -83,6 +97,28 @@ class UserListFragment : BaseFragment() {
|
||||
}
|
||||
}
|
||||
|
||||
binding.searchUser.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
||||
override fun onQueryTextSubmit(query: String?): Boolean {
|
||||
// Perform the final search
|
||||
if(isOnline){
|
||||
fetchFromServer(query)
|
||||
}else{
|
||||
filterList(query)
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
override fun onQueryTextChange(newText: String?): Boolean {
|
||||
// Perform search as the user types
|
||||
if(isOnline){
|
||||
fetchFromServer(newText)
|
||||
}else{
|
||||
filterList(newText)
|
||||
}
|
||||
return true
|
||||
}
|
||||
})
|
||||
|
||||
binding.uploadData.setOnClickListener {
|
||||
showUploadDialog(requireContext())
|
||||
}
|
||||
@@ -91,6 +127,12 @@ class UserListFragment : BaseFragment() {
|
||||
deteleIncompleteRegistration(userDataList)
|
||||
}
|
||||
}
|
||||
private fun filterList(query: String?) {
|
||||
val filteredList = viewModel.allUserData.value?.filter { userData ->
|
||||
userData.name.contains(query ?: "", ignoreCase = true)
|
||||
}
|
||||
offlineAdapter.differ.submitList(filteredList)
|
||||
}
|
||||
|
||||
private fun logoutUser(context: Context) {
|
||||
val builder = AlertDialog.Builder(context)
|
||||
@@ -163,29 +205,89 @@ class UserListFragment : BaseFragment() {
|
||||
}
|
||||
}
|
||||
}
|
||||
// private fun fetchFromServer(searchTerm: String? = null) {
|
||||
// binding.noList.visibility = View.GONE
|
||||
// binding.rvOrder.visibility = View.VISIBLE
|
||||
// val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
// val currentDate = Date()
|
||||
// val today = dateFormat.format(currentDate)
|
||||
//
|
||||
// // Base query to fetch patient data created today
|
||||
// var query = Firebase.firestore.collection("patientData")
|
||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
||||
// .orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
//
|
||||
// // If a search term is provided, add it to the query
|
||||
// if (!searchTerm.isNullOrEmpty()) {
|
||||
// query = query.whereEqualTo("aadharId", searchTerm)
|
||||
// }
|
||||
//
|
||||
// query.get().addOnSuccessListener {
|
||||
// if (it.documents.isEmpty() && isOnline) {
|
||||
// binding.emptyRegistrations.visibility = View.VISIBLE
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// val recyclerViewOptions =
|
||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
// .build()
|
||||
// val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
||||
// binding.rvOrder.adapter = adapter
|
||||
// adapter.startListening()
|
||||
// }
|
||||
private fun fetchFromServer(searchTerm: String? = null) {
|
||||
binding.noList.visibility = View.GONE
|
||||
binding.rvOrder.visibility = View.VISIBLE
|
||||
val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
val currentDate = Date()
|
||||
val today = dateFormat.format(currentDate)
|
||||
|
||||
private fun fetchFromServer() {
|
||||
binding.noList.visibility = View.GONE
|
||||
binding.rvOrder.visibility = View.VISIBLE
|
||||
val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
val currentDate = Date()
|
||||
val today = dateFormat.format(currentDate)
|
||||
val query = Firebase.firestore.collection("patientData")
|
||||
.whereGreaterThanOrEqualTo("createdAt", today)
|
||||
.orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
query.get().addOnSuccessListener {
|
||||
if (it.documents.isEmpty() && isOnline) {
|
||||
binding.emptyRegistrations.visibility = View.VISIBLE
|
||||
}
|
||||
}
|
||||
val recyclerViewOptions =
|
||||
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
.build()
|
||||
val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
||||
binding.rvOrder.adapter = adapter
|
||||
adapter.startListening()
|
||||
// Base query to fetch patient data created today and from the specified district
|
||||
var query = Firebase.firestore.collection("patientData")
|
||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
||||
.whereEqualTo("district", district)
|
||||
.orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
|
||||
// If a search term is provided, add it to the query
|
||||
if (!searchTerm.isNullOrEmpty()) {
|
||||
query = query.whereEqualTo("_id", searchTerm)
|
||||
}
|
||||
|
||||
query.get().addOnSuccessListener {
|
||||
if (it.documents.isEmpty() && isOnline) {
|
||||
binding.emptyRegistrations.visibility = View.VISIBLE
|
||||
}
|
||||
}
|
||||
|
||||
val recyclerViewOptions =
|
||||
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
.build()
|
||||
val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
||||
binding.rvOrder.adapter = adapter
|
||||
adapter.startListening()
|
||||
}
|
||||
// private fun fetchFromServer() {
|
||||
// binding.noList.visibility = View.GONE
|
||||
// binding.rvOrder.visibility = View.VISIBLE
|
||||
// val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||
// val currentDate = Date()
|
||||
// val today = dateFormat.format(currentDate)
|
||||
// val query = Firebase.firestore.collection("patientData")
|
||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
||||
// .orderBy("createdAt", Query.Direction.DESCENDING)
|
||||
// query.get().addOnSuccessListener {
|
||||
// if (it.documents.isEmpty() && isOnline) {
|
||||
// binding.emptyRegistrations.visibility = View.VISIBLE
|
||||
// }
|
||||
// }
|
||||
// val recyclerViewOptions =
|
||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||
// .build()
|
||||
// val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
||||
// binding.rvOrder.adapter = adapter
|
||||
// adapter.startListening()
|
||||
// }
|
||||
|
||||
private fun fetchFromLocalDB() {
|
||||
binding.uploadData.visibility = View.GONE
|
||||
viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
||||
@@ -201,9 +303,9 @@ class UserListFragment : BaseFragment() {
|
||||
binding.noList.visibility = View.GONE
|
||||
binding.rvOrder.visibility = View.VISIBLE
|
||||
deteleIncompleteRegistration(userDataList)
|
||||
val adapter = UserListOfflineAdapter(binding.root)
|
||||
adapter.differ.submitList(userDataList)
|
||||
binding.rvOrder.adapter = adapter
|
||||
offlineAdapter = UserListOfflineAdapter(binding.root)
|
||||
offlineAdapter.differ.submitList(userDataList)
|
||||
binding.rvOrder.adapter = offlineAdapter
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.example.hposregistration.ui.fragments.registration
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.os.Bundle
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
@@ -20,11 +22,14 @@ import dagger.hilt.android.AndroidEntryPoint
|
||||
import `in`.sminnovations.hposregistration.databinding.FragmentAbhaRegistrationBinding
|
||||
import org.json.JSONObject
|
||||
import java.time.Instant
|
||||
import java.util.Random
|
||||
|
||||
@AndroidEntryPoint
|
||||
class AbhaRegistrationFragment : BaseFragment() {
|
||||
|
||||
private var _binding: FragmentAbhaRegistrationBinding? = null
|
||||
private lateinit var sharedPreference: SharedPreferences
|
||||
|
||||
private val binding get() = _binding!!
|
||||
|
||||
private val viewModel by viewModels<RegistrationViewModel>()
|
||||
@@ -46,6 +51,8 @@ class AbhaRegistrationFragment : BaseFragment() {
|
||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||
): View {
|
||||
_binding = FragmentAbhaRegistrationBinding.inflate(inflater, container, false)
|
||||
sharedPreference =
|
||||
requireContext().getSharedPreferences("PREFERENCE_NAME", Context.MODE_PRIVATE)
|
||||
return binding.root
|
||||
}
|
||||
|
||||
@@ -83,20 +90,26 @@ class AbhaRegistrationFragment : BaseFragment() {
|
||||
|
||||
if (validateInputs(abhaIdInput, aadharIdInput, userName, centerName)) {
|
||||
userData.apply {
|
||||
name = userName
|
||||
name = userName.lowercase()
|
||||
aadharId = aadharIdInput
|
||||
abhaId = abhaIdInput
|
||||
registrationCenterName = centerName
|
||||
_id = centerName.substring(0, 3).uppercase() + currentUnixTime.toString()
|
||||
// _id = aadharId + userName.substring(0, 3).uppercase() + centerName.substring(0, 3).uppercase()
|
||||
// _id = centerName.substring(0, 3).uppercase() + name.substring(0, 4) +
|
||||
_id = userName.substring(0, 3).uppercase() + generateFourDigitNumber() +centerName.substring(0, 3).uppercase()
|
||||
}
|
||||
|
||||
viewModel.insert(userData)
|
||||
|
||||
Toast.makeText(requireActivity(),"ID"+userData._id,Toast.LENGTH_SHORT).show()
|
||||
navigateToUserDetailsFragment(userData._id)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
private fun generateFourDigitNumber(): String {
|
||||
val random = Random()
|
||||
val number: Int = 1000 + random.nextInt(9000) // Ensures a 4-digit number
|
||||
return number.toString()
|
||||
}
|
||||
|
||||
private fun processScannedData(contents: String) {
|
||||
try {
|
||||
@@ -170,14 +183,14 @@ class AbhaRegistrationFragment : BaseFragment() {
|
||||
abhaId: String, aadharId: String, userName: String, centerName: String
|
||||
): Boolean {
|
||||
with(binding) {
|
||||
if (!checkAbhaIDNumber(abhaId)) {
|
||||
etAbhaId.error = "Invalid Abha ID"
|
||||
return false
|
||||
}
|
||||
if (!checkAadharIDNumber(aadharId)) {
|
||||
aadharID.error = "Invalid Aadhar ID"
|
||||
return false
|
||||
}
|
||||
// if (!checkAbhaIDNumber(abhaId)) {
|
||||
// etAbhaId.error = "Invalid Abha ID"
|
||||
// return false
|
||||
// }
|
||||
// if (!checkAadharIDNumber(aadharId)) {
|
||||
// aadharID.error = "Invalid Aadhar ID"
|
||||
// return false
|
||||
// }
|
||||
if (!checkUserName(userName)) {
|
||||
etName.error = "Name field can't be empty or less than 3 characters"
|
||||
return false
|
||||
|
||||
@@ -111,7 +111,7 @@ class ReviewDetailsRegistrationFragment : BaseFragment() {
|
||||
requireContext().getString(R.string.abha_number, userData.abhaId)
|
||||
binding.tvAadharId.text =
|
||||
requireContext().getString(R.string.aadhar_number_details, userData.aadharId)
|
||||
binding.tvUserName.text = requireContext().getString(R.string.user_name, userData.name)
|
||||
binding.tvUserName.text = requireContext().getString(R.string.user_name, userData.name.lowercase())
|
||||
binding.tvBirthYear.text =
|
||||
requireContext().getString(R.string.birth_year_details, userData.birthYear)
|
||||
binding.tvGender.text =
|
||||
|
||||
@@ -71,13 +71,12 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
user.phoneNumber.let { etMobile.setText(it) }
|
||||
user.careOf.let { etCareof.setText(it) }
|
||||
user.maritalStatus.let { etIsMarried.setText(it, false) }
|
||||
user.caste.let { etCaste.setText(it, false) }
|
||||
user.caste.let { etCaste.setText(it) }
|
||||
user.category.let { etCategory.setText(it, false) }
|
||||
user.subCaste.let { etSubCaste.setText(it) }
|
||||
user.house.let { etHouse.setText(it) }
|
||||
user.city.let { etCity.setText(it) }
|
||||
user.district.let { etDistrict.setText(it) }
|
||||
user.state.let { etState.setText(it) }
|
||||
user.district.let { etDistrict.setText(it, false) }
|
||||
user.pinCode.let { etPincode.setText(it) }
|
||||
user.isUnderMedication.let {
|
||||
if (it != null) {
|
||||
@@ -137,8 +136,8 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
private fun verifyUserDetails(): Boolean {
|
||||
with(binding) {
|
||||
val yob = etYob.text.toString()
|
||||
if (yob.isEmpty() || yob.toInt() <= 1900 || yob.toInt() > 2023) {
|
||||
etYob.error = "Please enter a valid birth year between 1900 and 2023"
|
||||
if (yob.isEmpty() || yob.toInt() <= 1900 || yob.toInt() > 2020) {
|
||||
etYob.error = "Please enter a valid birth year between 1900 and 2020"
|
||||
return false
|
||||
} else {
|
||||
userData.birthYear = yob
|
||||
@@ -153,12 +152,13 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
}
|
||||
|
||||
val mobile = etMobile.text.toString()
|
||||
if (mobile.isEmpty() || mobile.length != 10) {
|
||||
etMobile.error = "Please enter a valid 10-digit mobile number"
|
||||
return false
|
||||
} else {
|
||||
userData.phoneNumber = mobile
|
||||
}
|
||||
userData.phoneNumber = mobile
|
||||
// if (mobile.isEmpty() || mobile.length != 10) {
|
||||
// etMobile.error = "Please enter a valid 10-digit mobile number"
|
||||
// return false
|
||||
// } else {
|
||||
// userData.phoneNumber = mobile
|
||||
// }
|
||||
|
||||
val careOf = etCareof.text.toString()
|
||||
if (careOf.isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user