Compare commits
11 Commits
castecateg
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
943430af24 | ||
|
|
76b98e8d88 | ||
|
|
f231e9a449 | ||
|
|
d2550ca82b | ||
|
|
466864377a | ||
|
|
ccc50108d3 | ||
|
|
2bd6495612 | ||
|
|
143d90b028 | ||
|
|
3bda3f0d51 | ||
|
|
b6a03e2ebf | ||
|
|
eec8867ddc |
88
.gitlab-ci.yml
Normal file
88
.gitlab-ci.yml
Normal file
@@ -0,0 +1,88 @@
|
||||
# This file is a template, and might need editing before it works on your project.
|
||||
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
||||
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
||||
# This specific template is located at:
|
||||
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android.gitlab-ci.yml
|
||||
|
||||
# Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny
|
||||
# If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template.
|
||||
|
||||
image: eclipse-temurin:17-jdk-jammy
|
||||
|
||||
variables:
|
||||
|
||||
# ANDROID_COMPILE_SDK is the version of Android you're compiling with.
|
||||
# It should match compileSdkVersion.
|
||||
ANDROID_COMPILE_SDK: "34"
|
||||
|
||||
# ANDROID_BUILD_TOOLS is the version of the Android build tools you are using.
|
||||
# It should match buildToolsVersion.
|
||||
ANDROID_BUILD_TOOLS: "33.0.2"
|
||||
|
||||
# It's what version of the command line tools we're going to download from the official site.
|
||||
# Official Site-> https://developer.android.com/studio/index.html
|
||||
# There, look down below at the cli tools only, sdk tools package is of format:
|
||||
# commandlinetools-os_type-ANDROID_SDK_TOOLS_latest.zip
|
||||
# when the script was last modified for latest compileSdkVersion, it was which is written down below
|
||||
ANDROID_SDK_TOOLS: "9477386"
|
||||
|
||||
# Packages installation before running script
|
||||
before_script:
|
||||
- apt-get --quiet update --yes
|
||||
- apt-get --quiet install --yes wget unzip
|
||||
|
||||
# Setup path as android_home for moving/exporting the downloaded sdk into it
|
||||
- export ANDROID_HOME="${PWD}/android-sdk-root"
|
||||
# Create a new directory at specified location
|
||||
- install -d $ANDROID_HOME
|
||||
# Here we are installing androidSDK tools from official source,
|
||||
# (the key thing here is the url from where you are downloading these sdk tool for command line, so please do note this url pattern there and here as well)
|
||||
# after that unzipping those tools and
|
||||
# then running a series of SDK manager commands to install necessary android SDK packages that'll allow the app to build
|
||||
- wget --no-verbose --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
|
||||
- unzip -q -d "$ANDROID_HOME/cmdline-tools" "$ANDROID_HOME/cmdline-tools.zip"
|
||||
- mv -T "$ANDROID_HOME/cmdline-tools/cmdline-tools" "$ANDROID_HOME/cmdline-tools/tools"
|
||||
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin
|
||||
|
||||
# Nothing fancy here, just checking sdkManager version
|
||||
- sdkmanager --version
|
||||
|
||||
# use yes to accept all licenses
|
||||
- yes | sdkmanager --licenses > /dev/null || true
|
||||
- sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}"
|
||||
- sdkmanager "platform-tools"
|
||||
- sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}"
|
||||
|
||||
# Not necessary, but just for surity
|
||||
- chmod +x ./gradlew
|
||||
|
||||
# Basic android and gradle stuff
|
||||
# Check linting
|
||||
lintDebug:
|
||||
interruptible: true
|
||||
stage: build
|
||||
script:
|
||||
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
||||
artifacts:
|
||||
paths:
|
||||
- app/lint/reports/lint-results-debug.html
|
||||
expose_as: "lint-report"
|
||||
when: always
|
||||
|
||||
# Make Project
|
||||
assembleDebug:
|
||||
interruptible: true
|
||||
stage: build
|
||||
script:
|
||||
- ./gradlew assembleDebug
|
||||
artifacts:
|
||||
paths:
|
||||
- app/build/outputs/
|
||||
|
||||
# Run all tests, if any fails, interrupt the pipeline(fail it)
|
||||
debugTests:
|
||||
needs: [lintDebug, assembleDebug]
|
||||
interruptible: true
|
||||
stage: test
|
||||
script:
|
||||
- ./gradlew -Pci --console=plain :app:testDebug
|
||||
5
.idea/gradle.xml
generated
5
.idea/gradle.xml
generated
@@ -4,17 +4,16 @@
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleHome" value="$USER_HOME$/andriod studio gradle/gradle-7.3" />
|
||||
<option name="gradleJvm" value="jbr-17" />
|
||||
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/app" />
|
||||
</set>
|
||||
</option>
|
||||
<option name="resolveExternalAnnotations" value="false" />
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
|
||||
3
app/.gitignore
vendored
3
app/.gitignore
vendored
@@ -1 +1,2 @@
|
||||
/build
|
||||
/build
|
||||
/google-services*
|
||||
@@ -13,11 +13,11 @@ android {
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "in.sminnovations.hposregistration"
|
||||
applicationId "in.sminnovations.hposregistration.iocl"
|
||||
minSdk 26
|
||||
targetSdk 34
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
versionCode 8
|
||||
versionName "1.0.8"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
@@ -59,6 +59,8 @@ dependencies {
|
||||
implementation 'com.google.firebase:firebase-storage-ktx'
|
||||
implementation 'com.firebaseui:firebase-ui-firestore:8.0.2'
|
||||
implementation 'com.google.android.gms:play-services-auth:20.6.0'
|
||||
implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta10'
|
||||
implementation("com.google.firebase:firebase-appdistribution-api-ktx:16.0.0-beta10")
|
||||
|
||||
// Coroutines
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
|
||||
|
||||
@@ -1,110 +1,64 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "650071678820",
|
||||
"project_id": "hpos-af3cc",
|
||||
"storage_bucket": "hpos-af3cc.appspot.com"
|
||||
"project_number": "243503501547",
|
||||
"project_id": "iocl-iisc-hpos",
|
||||
"storage_bucket": "iocl-iisc-hpos.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:650071678820:android:f1435a1c07f710036c6471",
|
||||
"mobilesdk_app_id": "1:243503501547:android:f17de652a3524d047feeae",
|
||||
"android_client_info": {
|
||||
"package_name": "com.example.hposconsentform"
|
||||
"package_name": "com.iocl_iisc.hposqc"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
]
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:650071678820:android:7569c1cad4fc99916c6471",
|
||||
"mobilesdk_app_id": "1:243503501547:android:e1bb0f338c8448dd7feeae",
|
||||
"android_client_info": {
|
||||
"package_name": "in.sminnovations.hposregistration"
|
||||
"package_name": "in.sminnovations.hposregistration.iocl"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-70kp5jvjda4r5diqch2kn4lc40p4f42g.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "in.sminnovations.hposregistration",
|
||||
"certificate_hash": "7714b9268a81d0cf0fb178b0af8dbb630f8fc70a"
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
]
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:650071678820:android:f96be19e5d43102b6c6471",
|
||||
"mobilesdk_app_id": "1:243503501547:android:18b8b33b2dc3776d7feeae",
|
||||
"android_client_info": {
|
||||
"package_name": "in.sminnovations.hpostesting"
|
||||
"package_name": "in.sminnovations.hpostesting.iocl"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-l87dnr0bdj95get0khgnvfv2an1k6ogq.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "in.sminnovations.hpostesting",
|
||||
"certificate_hash": "7714b9268a81d0cf0fb178b0af8dbb630f8fc70a"
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
]
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -7,8 +7,11 @@ import androidx.room.PrimaryKey
|
||||
data class UserData(
|
||||
@PrimaryKey
|
||||
var _id: String = "",
|
||||
var _idSearch: String = "",
|
||||
var abhaId: String = "",
|
||||
var abhaIdSearch: String = "",
|
||||
var aadharId: String = "",
|
||||
var aadharIdSearch: String = "",
|
||||
var name: String = "",
|
||||
var birthYear: String = "",
|
||||
var gender: String = "",
|
||||
|
||||
@@ -2,6 +2,10 @@ package com.example.hposregistration.ui.activities
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
import android.os.Bundle
|
||||
import android.widget.Toast
|
||||
import com.google.firebase.appdistribution.FirebaseAppDistribution
|
||||
import com.google.firebase.appdistribution.FirebaseAppDistributionException
|
||||
import com.google.firebase.crashlytics.FirebaseCrashlytics
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
import `in`.sminnovations.hposregistration.databinding.ActivityMainBinding
|
||||
|
||||
@@ -16,4 +20,44 @@ class MainActivity : AppCompatActivity() {
|
||||
setContentView(binding.root)
|
||||
|
||||
}
|
||||
|
||||
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()
|
||||
// }
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import android.os.Bundle
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.Button
|
||||
import android.widget.SearchView
|
||||
import android.widget.Toast
|
||||
import androidx.fragment.app.viewModels
|
||||
import androidx.navigation.fragment.findNavController
|
||||
@@ -18,18 +18,23 @@ import com.example.hposregistration.data.Constant
|
||||
import com.example.hposregistration.data.user.UserData
|
||||
import com.example.hposregistration.ui.viewmodels.RegistrationViewModel
|
||||
import com.firebase.ui.firestore.FirestoreRecyclerOptions
|
||||
import com.google.firebase.firestore.Query
|
||||
import com.google.firebase.firestore.ktx.firestore
|
||||
import com.google.firebase.ktx.Firebase
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
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
|
||||
@@ -41,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
|
||||
}
|
||||
@@ -56,15 +69,23 @@ class UserListFragment : BaseFragment() {
|
||||
}
|
||||
|
||||
private fun setupViews() {
|
||||
val pInfo = requireActivity().packageManager.getPackageInfo(
|
||||
requireActivity().packageName, 0
|
||||
)
|
||||
val version = pInfo.versionName
|
||||
binding.appVersion.text = version
|
||||
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
|
||||
@@ -76,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())
|
||||
}
|
||||
@@ -84,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)
|
||||
@@ -156,19 +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 query = Firebase.firestore.collection("patientData")
|
||||
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 ->
|
||||
@@ -176,6 +295,7 @@ class UserListFragment : BaseFragment() {
|
||||
binding.noList.visibility = View.GONE
|
||||
binding.rvOrder.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.emptyRegistrations.visibility = View.GONE
|
||||
if (userDataList.isEmpty()) {
|
||||
binding.noList.visibility = View.VISIBLE
|
||||
binding.rvOrder.visibility = View.GONE
|
||||
@@ -183,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
|
||||
@@ -19,11 +21,15 @@ import com.journeyapps.barcodescanner.ScanIntentResult
|
||||
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>()
|
||||
@@ -45,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
|
||||
}
|
||||
|
||||
@@ -78,22 +86,30 @@ class AbhaRegistrationFragment : BaseFragment() {
|
||||
val userName = binding.etName.text.toString()
|
||||
val aadharIdInput = binding.aadharID.text.toString()
|
||||
val centerName = binding.centerName.text.toString()
|
||||
val currentUnixTime = Instant.now().epochSecond
|
||||
|
||||
if (validateInputs(abhaIdInput, aadharIdInput, userName, centerName)) {
|
||||
userData.apply {
|
||||
name = userName
|
||||
name = userName.lowercase()
|
||||
aadharId = aadharIdInput
|
||||
abhaId = abhaIdInput
|
||||
registrationCenterName = centerName
|
||||
_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 {
|
||||
@@ -167,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 =
|
||||
|
||||
@@ -5,7 +5,6 @@ import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.Toast
|
||||
import androidx.core.view.isVisible
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.viewModels
|
||||
import androidx.navigation.fragment.findNavController
|
||||
@@ -43,25 +42,6 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
private fun init() {
|
||||
setupViewModel()
|
||||
setupSubmitButton()
|
||||
|
||||
|
||||
binding.etCategory.setOnItemClickListener { parent, view, position, id ->
|
||||
if (parent.getItemAtPosition(position).toString().equals("OTHER", ignoreCase = true)) {
|
||||
binding.tilOther.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.tilOther.visibility = View.GONE
|
||||
}
|
||||
}
|
||||
|
||||
binding.etCaste.setOnItemClickListener { parent, view, position, id ->
|
||||
if (parent.getItemAtPosition(position).toString().equals("OTHER", ignoreCase = true)) {
|
||||
binding.tilOthercaste.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.tilOthercaste.visibility = View.GONE
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private fun setupViewModel() {
|
||||
@@ -79,26 +59,24 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
when (it) {
|
||||
"Male" -> {
|
||||
male.isChecked = true
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
}
|
||||
"Female" -> {
|
||||
female.isChecked = true
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
}
|
||||
else -> {
|
||||
other.isChecked = true
|
||||
binding.tilOthergender.visibility = View.VISIBLE
|
||||
}
|
||||
}
|
||||
}
|
||||
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) }
|
||||
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) {
|
||||
@@ -115,12 +93,6 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
yes1history.isChecked = true
|
||||
}
|
||||
}
|
||||
user.category.let {
|
||||
etCategory.setText(it, false)
|
||||
}
|
||||
user.caste.let {
|
||||
etCaste.setText(it, false)
|
||||
}
|
||||
if (yes1history.isChecked) {
|
||||
if (binding.yes1history.isChecked) View.VISIBLE else View.GONE
|
||||
|
||||
@@ -139,35 +111,6 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
if (binding.no1history.isChecked) View.GONE else View.VISIBLE
|
||||
}
|
||||
|
||||
if(other.isChecked){
|
||||
user.gender.let { etOthergender.setText(it) }
|
||||
}
|
||||
|
||||
binding.male.setOnClickListener {
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
}
|
||||
|
||||
binding.female.setOnClickListener {
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
}
|
||||
|
||||
binding.other.setOnClickListener {
|
||||
binding.tilOthergender.visibility = View.VISIBLE
|
||||
}
|
||||
|
||||
if (binding.etCategory.text.toString().equals("OTHER", ignoreCase = true)) {
|
||||
binding.tilOther.visibility = View.VISIBLE
|
||||
binding.etOther.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.tilOther.visibility = View.GONE
|
||||
}
|
||||
|
||||
if (binding.etCaste.text.toString().equals("OTHER", ignoreCase = true)) {
|
||||
binding.tilOthercaste.visibility = View.VISIBLE
|
||||
binding.etOthercaste.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding.tilOthercaste.visibility = View.GONE
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -193,36 +136,29 @@ 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
|
||||
}
|
||||
|
||||
if (male.isChecked) {
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
userData.gender = "Male"
|
||||
} else if (female.isChecked) {
|
||||
binding.tilOthergender.visibility = View.GONE
|
||||
userData.gender = "Female"
|
||||
} else if(other.isChecked) {
|
||||
binding.tilOthergender.visibility = View.VISIBLE
|
||||
val genderother= binding.etOthergender.text.toString()
|
||||
userData.gender = genderother
|
||||
if (genderother.isEmpty()) {
|
||||
etOthergender.error = "Please fill the field"
|
||||
return false
|
||||
}
|
||||
} else {
|
||||
userData.gender = "Other"
|
||||
}
|
||||
|
||||
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()) {
|
||||
@@ -241,28 +177,21 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
}
|
||||
|
||||
val category = etCategory.text.toString()
|
||||
val other = etOther.text.toString()
|
||||
if (category.isEmpty()) {
|
||||
etCategory.error = "Please enter your category"
|
||||
return false
|
||||
} else if (category == "OTHER" && tilOther.isVisible) {
|
||||
userData.category = other
|
||||
} else {
|
||||
userData.category = category
|
||||
}
|
||||
|
||||
val caste = etCaste.text.toString()
|
||||
val othercaste = etOthercaste.text.toString()
|
||||
if (caste.isEmpty()) {
|
||||
etCaste.error = "Please enter your caste"
|
||||
return false
|
||||
} else if (caste == "OTHER" && tilOthercaste.isVisible) {
|
||||
userData.caste = othercaste
|
||||
} else {
|
||||
userData.caste = caste
|
||||
}
|
||||
|
||||
|
||||
val subCaste = etSubCaste.text.toString()
|
||||
if (subCaste.isNotEmpty()) {
|
||||
userData.subCaste = subCaste
|
||||
@@ -328,8 +257,6 @@ class UserDetailsRegistrationFragment : Fragment() {
|
||||
|
||||
return true
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -13,6 +13,10 @@ import com.example.hposregistration.data.user.UserData
|
||||
import com.google.firebase.storage.FirebaseStorage
|
||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||
import kotlinx.coroutines.launch
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Calendar
|
||||
import java.util.Date
|
||||
import java.util.Locale
|
||||
import javax.inject.Inject
|
||||
|
||||
@HiltViewModel
|
||||
@@ -63,6 +67,15 @@ class RegistrationViewModel @Inject constructor(
|
||||
get() = _networkStatusLiveData
|
||||
|
||||
fun insert(userData: UserData) = viewModelScope.launch {
|
||||
val currentDate = Date()
|
||||
val dateFormat = SimpleDateFormat("yyyyMMdd")
|
||||
val partition = dateFormat.format(currentDate)
|
||||
userData._idSearch = partition + userData._id
|
||||
userData.abhaIdSearch = partition + userData.abhaId
|
||||
userData.aadharIdSearch = partition + userData.aadharId
|
||||
userData.createdAt = SimpleDateFormat(
|
||||
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
|
||||
).format(Calendar.getInstance().time)
|
||||
mainRepository.insert(userData)
|
||||
}
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
style="@style/title1"
|
||||
android:visibility="gone"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
@@ -31,6 +32,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:text="@string/scan_now"
|
||||
android:visibility="gone"
|
||||
android:textColor="@color/black"
|
||||
app:backgroundTint="@color/primary_light"
|
||||
app:cornerRadius="100dp"
|
||||
@@ -45,6 +47,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginTop="24dp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/btn_scan_now">
|
||||
@@ -93,7 +96,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="24dp"
|
||||
android:text="@string/enter_abha_number_manualy"
|
||||
android:text="Enter Details to proceed\n(ABHA and Aadhar are optional)"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/seperator1" />
|
||||
|
||||
@@ -111,6 +114,7 @@
|
||||
android:id="@+id/et_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLength="24"
|
||||
android:hint="@string/person_s_name" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
@@ -168,6 +172,7 @@
|
||||
android:id="@+id/centerName"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLength="24"
|
||||
android:hint="@string/center_name"
|
||||
android:inputType="text" />
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
@@ -189,6 +194,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:text="@string/proceed"
|
||||
android:textColor="@color/white"
|
||||
app:cornerRadius="16dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -200,6 +206,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginTop="24dp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/btnProceed">
|
||||
@@ -246,6 +253,7 @@
|
||||
style="@style/title1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
android:layout_marginTop="24dp"
|
||||
android:text="@string/create_abha_id_card"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
@@ -254,6 +262,7 @@
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/btn_click_here"
|
||||
android:layout_width="wrap_content"
|
||||
android:visibility="gone"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:text="@string/click_here"
|
||||
|
||||
@@ -4,8 +4,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:padding="24dp"
|
||||
tools:context=".ui.fragments.registration.CaptureUserImageFragment">
|
||||
android:padding="24dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
|
||||
@@ -63,6 +63,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:checked="true"
|
||||
android:text="@string/male"
|
||||
android:textSize="16sp" />
|
||||
|
||||
@@ -81,29 +82,6 @@
|
||||
android:textSize="16sp" />
|
||||
</RadioGroup>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/til_othergender"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/gender">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/et_othergender"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="Enter Other"
|
||||
android:inputType="text"
|
||||
android:maxLength="10" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/til_mobile"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
@@ -113,7 +91,7 @@
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_othergender">
|
||||
app:layout_constraintTop_toBottomOf="@id/gender">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/et_mobile"
|
||||
@@ -182,74 +160,30 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/category"
|
||||
android:inputType="text"
|
||||
android:inputType="none"
|
||||
android:labelFor="@id/til_is_married"
|
||||
app:simpleItems="@array/category" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/til_other"
|
||||
android:id="@+id/til_caste"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginTop="16dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_category">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/et_other"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="Enter Other Category"
|
||||
android:inputType="text"
|
||||
android:maxLength="10" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/til_caste"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_other">
|
||||
|
||||
<AutoCompleteTextView
|
||||
android:id="@+id/et_Caste"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/caste"
|
||||
android:inputType="text"
|
||||
android:labelFor="@id/til_is_married"
|
||||
app:simpleItems="@array/caste" />
|
||||
android:hint="@string/caste" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:visibility="gone"
|
||||
android:id="@+id/til_othercaste"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_caste">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/et_othercaste"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="Enter Other Caste"
|
||||
android:inputType="text"
|
||||
android:maxLength="10" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/til_subCaste"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
@@ -259,7 +193,7 @@
|
||||
android:layout_marginTop="16dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_othercaste">
|
||||
app:layout_constraintTop_toBottomOf="@id/til_caste">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/et_subCaste"
|
||||
@@ -296,7 +230,7 @@
|
||||
android:id="@+id/et_house"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/house" />
|
||||
android:hint="Address" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
@@ -318,23 +252,25 @@
|
||||
android:hint="@string/city_town" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/til_district"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginHorizontal="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/til_city">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
<AutoCompleteTextView
|
||||
android:id="@+id/et_district"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/district" />
|
||||
android:hint="@string/district"
|
||||
android:inputType="none"
|
||||
android:labelFor="@id/til_district"
|
||||
app:simpleItems="@array/district" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
@@ -353,6 +289,7 @@
|
||||
android:id="@+id/et_state"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Karnataka"
|
||||
android:hint="@string/state" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
@@ -16,6 +16,20 @@
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/app_version"
|
||||
style="@style/title2"
|
||||
android:layout_width="57dp"
|
||||
android:layout_height="15dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:gravity="center"
|
||||
android:text="1.0.4"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.017"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
style="@style/title1"
|
||||
@@ -26,6 +40,20 @@
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/emptyRegistrations"
|
||||
style="@style/title1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="@string/empty_registrations"
|
||||
android:textColor="@color/black"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/noList"
|
||||
style="@style/title1"
|
||||
@@ -61,6 +89,15 @@
|
||||
app:layout_constraintEnd_toStartOf="@+id/uploadData"
|
||||
app:layout_constraintTop_toTopOf="@+id/tv_title" />
|
||||
|
||||
<SearchView
|
||||
android:id="@+id/searchUser"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_title"/>
|
||||
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_order"
|
||||
android:layout_width="0dp"
|
||||
@@ -69,7 +106,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_title"
|
||||
app:layout_constraintTop_toBottomOf="@+id/searchUser"
|
||||
tools:listitem="@layout/user_item_view" />
|
||||
|
||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
|
||||
@@ -56,6 +56,20 @@
|
||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
||||
app:layout_constraintTop_toBottomOf="@id/userName"
|
||||
tools:text="UserID: MohamedKaif" />
|
||||
<TextView
|
||||
android:id="@+id/timeCreated"
|
||||
style="@style/title1_1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:gravity="start"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
||||
app:layout_constraintTop_toBottomOf="@id/userId"
|
||||
tools:text="time" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/teststatus"
|
||||
@@ -69,7 +83,7 @@
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
||||
app:layout_constraintTop_toBottomOf="@id/userId"
|
||||
app:layout_constraintTop_toBottomOf="@id/timeCreated"
|
||||
tools:text="Test Status: Completed"/>
|
||||
|
||||
|
||||
|
||||
@@ -48,13 +48,14 @@
|
||||
<string name="register_user">Register User</string>
|
||||
<string name="is_user_having_any_family_history_for_sickle_cell">Is user having any family history for Sickle Cell</string>
|
||||
<string name="family_history_of_sickle_cell">Family History of Sickle Cell</string>
|
||||
<string name="mobile_number_10_digits">Mobile Number (10 digits)</string>
|
||||
<string name="mobile_number_10_digits">Mobile Number(Optional)</string>
|
||||
<string name="sub_caste">Sub Caste</string>
|
||||
<string name="capture_user_image">Capture User Image</string>
|
||||
<string name="mobile_number">Mobile Number</string>
|
||||
<string name="edit">Edit</string>
|
||||
<string name="user_details">User Details</string>
|
||||
<string name="internet_is_not_available_and_there_is_no_data_available_in_local_db">Internet is not available and there is no Data available in Local DB</string>
|
||||
<string name="empty_registrations">No registrations are available for display</string>
|
||||
<string name="user_id">User ID: %1$s</string>
|
||||
<string name="abha_number">Abha Number: %1$s</string>
|
||||
<string name="aadhar_number_details">Aadhar Number: %1$s</string>
|
||||
@@ -155,5 +156,10 @@
|
||||
<item>Female</item>
|
||||
<item>Other</item>
|
||||
</string-array>
|
||||
<string-array name="district">
|
||||
<item>Mysuru</item>
|
||||
<item>Kodagu</item>
|
||||
<item>Chamarajanagar</item>
|
||||
</string-array>
|
||||
|
||||
</resources>
|
||||
@@ -1,7 +1,7 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
plugins {
|
||||
id 'com.android.application' version '8.0.2' apply false
|
||||
id 'com.android.library' version '8.0.2' apply false
|
||||
id 'com.android.application' version '8.4.0' apply false
|
||||
id 'com.android.library' version '8.4.0' apply false
|
||||
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
||||
id 'androidx.navigation.safeargs' version '2.7.0-beta02' apply false
|
||||
id 'com.google.dagger.hilt.android' version '2.46' apply false
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
#Wed Jul 12 14:05:11 IST 2023
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
Reference in New Issue
Block a user