copying all of the login fragments into the ftue auth domain

This commit is contained in:
Adam Brown 2021-12-09 14:42:45 +00:00
parent 16ed3f799f
commit 2541c3f6a5
2 changed files with 7 additions and 7 deletions

View File

@ -63,11 +63,11 @@ abstract class AbstractFtueAuthFragment<VB : ViewBinding> : VectorBaseFragment<V
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
viewModel.observeViewEvents { viewModel.observeViewEvents {
handleLoginViewEvents(it) handleOnboardingViewEvents(it)
} }
} }
private fun handleLoginViewEvents(viewEvents: OnboardingViewEvents) { private fun handleOnboardingViewEvents(viewEvents: OnboardingViewEvents) {
when (viewEvents) { when (viewEvents) {
is OnboardingViewEvents.Failure -> showFailure(viewEvents.throwable) is OnboardingViewEvents.Failure -> showFailure(viewEvents.throwable)
else -> else ->
@ -178,6 +178,6 @@ abstract class AbstractFtueAuthFragment<VB : ViewBinding> : VectorBaseFragment<V
// No op by default // No op by default
} }
// Reset any modification on the loginViewModel by the current fragment // Reset any modification on the viewModel by the current fragment
abstract fun resetViewModel() abstract fun resetViewModel()
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2021 New Vector Ltd * Copyright 2019 New Vector Ltd
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -30,16 +30,16 @@ import org.matrix.android.sdk.api.failure.is401
import javax.inject.Inject import javax.inject.Inject
@Parcelize @Parcelize
data class FtueAuthWaitForEmailFragmentArgument( data class LoginWaitForEmailFragmentArgument(
val email: String val email: String
) : Parcelable ) : Parcelable
/** /**
* In this screen, the user is asked to check his emails * In this screen, the user is asked to check his emails
*/ */
class FtueAuthWaitForEmailFragment @Inject constructor() : AbstractFtueAuthFragment<FragmentLoginWaitForEmailBinding>() { class LoginWaitForEmailFragment @Inject constructor() : AbstractFtueAuthFragment<FragmentLoginWaitForEmailBinding>() {
private val params: FtueAuthWaitForEmailFragmentArgument by args() private val params: LoginWaitForEmailFragmentArgument by args()
override fun getBinding(inflater: LayoutInflater, container: ViewGroup?): FragmentLoginWaitForEmailBinding { override fun getBinding(inflater: LayoutInflater, container: ViewGroup?): FragmentLoginWaitForEmailBinding {
return FragmentLoginWaitForEmailBinding.inflate(inflater, container, false) return FragmentLoginWaitForEmailBinding.inflate(inflater, container, false)