debugs
This commit is contained in:
parent
30127c6fc0
commit
78e5ed4494
11
app/src/main/java/ru/myitschool/work/data/user/CodeDto.kt
Normal file
11
app/src/main/java/ru/myitschool/work/data/user/CodeDto.kt
Normal file
@ -0,0 +1,11 @@
|
||||
package ru.myitschool.work.data.user
|
||||
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable;
|
||||
|
||||
@Serializable
|
||||
data class CodeDto(
|
||||
|
||||
@SerialName("value")
|
||||
val value : String
|
||||
)
|
@ -5,6 +5,7 @@ import io.ktor.client.call.body
|
||||
import io.ktor.client.request.get
|
||||
import io.ktor.client.request.header
|
||||
import io.ktor.client.request.patch
|
||||
import io.ktor.client.request.setBody
|
||||
import io.ktor.client.statement.bodyAsText
|
||||
import io.ktor.http.HttpHeaders
|
||||
import io.ktor.http.HttpStatusCode
|
||||
@ -50,9 +51,10 @@ class UserNetworkDataSource {
|
||||
}
|
||||
suspend fun enter(value : String, login : String): Result<Boolean> = withContext(Dispatchers.IO) {
|
||||
runCatching {
|
||||
val result = client.patch("$SERVER_ADDRESS/api/open") {
|
||||
val result = client.patch("$SERVER_ADDRESS/api/$login/open") {
|
||||
header(HttpHeaders.Authorization, token)
|
||||
|
||||
header(HttpHeaders.ContentType, "application/json")
|
||||
setBody(CodeDto(value))
|
||||
}
|
||||
Log.d("result", "${result.status}")
|
||||
if (result.status != HttpStatusCode.OK) {
|
||||
|
@ -36,6 +36,8 @@ class ProfileFragment : Fragment(R.layout.fragment_profile) {
|
||||
}
|
||||
viewBinding.qrScan.setOnClickListener{
|
||||
findNavController().navigate(R.id.action_fragment_profile_to_fragment_qr)
|
||||
|
||||
|
||||
}
|
||||
val adapter = EntranceAdapter()
|
||||
viewBinding.recyclerView.adapter = adapter
|
||||
|
@ -20,10 +20,10 @@ class QrResultFragment : Fragment(R.layout.fragment_qr_result) {
|
||||
private val viewModel by viewModels<QrResultViewModel> { QrResultViewModel.Factory }
|
||||
|
||||
|
||||
|
||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||
_viewBinding = FragmentQrResultBinding.bind(view)
|
||||
super.onViewCreated(view, savedInstanceState)
|
||||
|
||||
parentFragmentManager.setFragmentResultListener(
|
||||
QrScanDestination.REQUEST_KEY, viewLifecycleOwner
|
||||
) {
|
||||
|
@ -122,10 +122,13 @@ class QrScanFragment : Fragment(R.layout.fragment_qr_scan) {
|
||||
QrScanDestination.REQUEST_KEY,
|
||||
bundle
|
||||
)
|
||||
findNavControllerOrNull()
|
||||
?.previousBackStackEntry
|
||||
?.savedStateHandle
|
||||
?.set(QrScanDestination.REQUEST_KEY, bundle)
|
||||
if (!bundle.isEmpty) {
|
||||
findNavController().navigate(R.id.action_fragment_qr_to_fragment_qr_result)
|
||||
}
|
||||
// findNavControllerOrNull()
|
||||
// ?.previousBackStackEntry
|
||||
// ?.savedStateHandle
|
||||
// ?.set(QrScanDestination.REQUEST_KEY, bundle)
|
||||
}
|
||||
|
||||
private fun findNavControllerOrNull(): NavController? {
|
||||
|
Loading…
x
Reference in New Issue
Block a user