Last active
March 25, 2018 19:08
-
-
Save Aidanvii7/beaa50be39f1f4e2441d521fa35e13e9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.arch.lifecycle.ViewModel | |
import android.arch.lifecycle.ViewModelProvider | |
import android.arch.lifecycle.ViewModelProviders | |
import android.support.v4.app.Fragment | |
import android.support.v4.app.FragmentActivity | |
/** | |
* Implementation of [ViewModelProvider.Factory] that takes care of the slightly awkward generic method [ViewModelProvider.Factory.create] | |
* | |
* It removes the need for the client to manually handle the given ViewModel [Class] in an if else clause or switch statement, or perform type casting when returning. | |
* | |
* Example: | |
* | |
* Suppose you have a [ViewModel] with a non-default constructor, where the [TypedFactory] for [MyViewModel] is declared inside such as: | |
* ``` | |
* class MyViewModel(val someData: String) : ViewModel() { | |
* class Factory() : ViewModelFactory.TypedFactory<MyViewModel> { | |
* override fun create() = MyViewModel("hello world") | |
* } | |
* } | |
* ``` | |
* To create a [ViewModelFactory] with this [TypedFactory]: | |
* ``` | |
* val factory = ViewModelFactory.Builder() | |
* .addTypedFactory(MyViewModel.Factory()) | |
* .build() | |
* ``` | |
*/ | |
class ViewModelFactory private constructor( | |
private val classFactoryMap: Map<Class<out ViewModel>, TypedFactory<*>> | |
) : ViewModelProvider.Factory { | |
interface TypedFactory<out T : ViewModel> { | |
fun create(): T | |
} | |
class Builder() { | |
val typedFactories = mutableMapOf<Class<out ViewModel>, TypedFactory<*>>() | |
fun build() = ViewModelFactory(typedFactories.toMap()) | |
} | |
@Suppress("UNCHECKED_CAST") | |
override fun <T : ViewModel> create(viewModelClass: Class<T>): T { | |
return classFactoryMap[viewModelClass]?.create() as? T | |
?: throwNoFactoryInstalled(viewModelClass) | |
} | |
private fun throwNoFactoryInstalled(viewModelClass: Class<*>): Nothing = | |
throw UnsupportedOperationException("No view-model factory installed for class: $viewModelClass") | |
} | |
inline fun <reified T : ViewModel> ViewModelFactory.Builder.addTypedFactory(factory: ViewModelFactory.TypedFactory<T>) = this.apply { | |
typedFactories.put(T::class.java, factory) | |
} | |
fun FragmentActivity.viewModelProvider(factory: ViewModelProvider.Factory? = null): ViewModelProvider = | |
if (factory != null) ViewModelProviders.of(this, factory) else ViewModelProviders.of(this) | |
fun Fragment.viewModelProvider(factory: ViewModelProvider.Factory? = null): ViewModelProvider = | |
if (factory != null) ViewModelProviders.of(this, factory) else ViewModelProviders.of(this) | |
inline fun <reified T : ViewModel> ViewModelProvider.get() = get(T::class.java) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment