Skip to content

Instantly share code, notes, and snippets.

@sanogueralorenzo
Created March 25, 2018 21:05
Show Gist options
  • Save sanogueralorenzo/29380486a8f4cb0eb68675681974ab48 to your computer and use it in GitHub Desktop.
Save sanogueralorenzo/29380486a8f4cb0eb68675681974ab48 to your computer and use it in GitHub Desktop.
@Singleton
class ViewModelFactory @Inject constructor(private val viewModels: MutableMap<Class<out ViewModel>, Provider<ViewModel>>) : ViewModelProvider.Factory {
override fun <T : ViewModel> create(modelClass: Class<T>): T = viewModels[modelClass]?.get() as T
}
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER)
@kotlin.annotation.Retention(AnnotationRetention.RUNTIME)
@MapKey
internal annotation class ViewModelKey(val value: KClass<out ViewModel>)
@Module
abstract class ViewModelModule {
@Binds
internal abstract fun bindViewModelFactory(factory: ViewModelFactory): ViewModelProvider.Factory
@Binds
@IntoMap
@ViewModelKey(PostListViewModel::class)
internal abstract fun postListViewModel(viewModel: PostListViewModel): ViewModel
//Add more ViewModels here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment