|
@@ -19,6 +19,8 @@ import com.khmer9.cflivemain.screen.login.LoginActivity
|
|
import com.mazenrashed.printooth.Printooth
|
|
import com.mazenrashed.printooth.Printooth
|
|
import com.mazenrashed.printooth.ui.ScanningActivity
|
|
import com.mazenrashed.printooth.ui.ScanningActivity
|
|
import kotlinx.android.synthetic.main.fragment_setting.*
|
|
import kotlinx.android.synthetic.main.fragment_setting.*
|
|
|
|
+import java.util.*
|
|
|
|
+import kotlin.concurrent.timerTask
|
|
|
|
|
|
/**
|
|
/**
|
|
* A simple [Fragment] subclass as the second destination in the navigation.
|
|
* A simple [Fragment] subclass as the second destination in the navigation.
|
|
@@ -130,23 +132,20 @@ class SettingFragment : BaseFragment(R.layout.fragment_setting) {
|
|
v_logout.setOnClickListener {
|
|
v_logout.setOnClickListener {
|
|
if (!sharePref.getIsMute()) betTouch.start()
|
|
if (!sharePref.getIsMute()) betTouch.start()
|
|
it.btnClick().subscribe {
|
|
it.btnClick().subscribe {
|
|
- sharePref.logout()
|
|
|
|
-
|
|
|
|
- val intent = Intent(requireContext(), LoginActivity::class.java)
|
|
|
|
- startActivity(intent)
|
|
|
|
- requireActivity().finishAffinity()
|
|
|
|
-
|
|
|
|
|
|
+ settingViewModel.logout()
|
|
|
|
+
|
|
|
|
+ Timer().schedule(timerTask {
|
|
|
|
+ sharePref.logout()
|
|
|
|
+ val intent = Intent(requireContext(), LoginActivity::class.java)
|
|
|
|
+ startActivity(intent)
|
|
|
|
+ requireActivity().finishAffinity()
|
|
|
|
+ }, 2000)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
private fun getResult(state: UpdatePwdViewState) {
|
|
private fun getResult(state: UpdatePwdViewState) {
|
|
-
|
|
|
|
- // if (state.isProgress){
|
|
|
|
- // Toast.makeText(requireContext(), "Loading", Toast.LENGTH_LONG).show()
|
|
|
|
-
|
|
|
|
- //}
|
|
|
|
if (state.isUpdateSuccess) {
|
|
if (state.isUpdateSuccess) {
|
|
//Toast.makeText(requireContext(), "Update Sucess", Toast.LENGTH_LONG).show()
|
|
//Toast.makeText(requireContext(), "Update Sucess", Toast.LENGTH_LONG).show()
|
|
val intent = Intent(requireContext(), LoginActivity::class.java)
|
|
val intent = Intent(requireContext(), LoginActivity::class.java)
|