mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-16 23:42:49 +01:00
b1f46ed830
* Migrate History screen database call to SQLDelight - Move all migrations to SQLDelight - Move all tables to SQLDelight Co-authored-by: inorichi <3521738+inorichi@users.noreply.github.com> * Changes from review comments * Add adapters to database * Remove logging of database version in App * Change query name for paging source queries * Update migrations * Make SQLite Callback handle migration - To ensure it updates the database * Use SQLDelight Schema version for Callback database version Co-authored-by: inorichi <3521738+inorichi@users.noreply.github.com>
27 lines
1.1 KiB
Kotlin
27 lines
1.1 KiB
Kotlin
package eu.kanade.domain
|
|
|
|
import eu.kanade.data.history.HistoryRepositoryImpl
|
|
import eu.kanade.domain.history.interactor.DeleteHistoryTable
|
|
import eu.kanade.domain.history.interactor.GetHistory
|
|
import eu.kanade.domain.history.interactor.GetNextChapterForManga
|
|
import eu.kanade.domain.history.interactor.RemoveHistoryById
|
|
import eu.kanade.domain.history.interactor.RemoveHistoryByMangaId
|
|
import eu.kanade.domain.history.repository.HistoryRepository
|
|
import uy.kohesive.injekt.api.InjektModule
|
|
import uy.kohesive.injekt.api.InjektRegistrar
|
|
import uy.kohesive.injekt.api.addFactory
|
|
import uy.kohesive.injekt.api.addSingletonFactory
|
|
import uy.kohesive.injekt.api.get
|
|
|
|
class DomainModule : InjektModule {
|
|
|
|
override fun InjektRegistrar.registerInjectables() {
|
|
addSingletonFactory<HistoryRepository> { HistoryRepositoryImpl(get()) }
|
|
addFactory { DeleteHistoryTable(get()) }
|
|
addFactory { GetHistory(get()) }
|
|
addFactory { GetNextChapterForManga(get()) }
|
|
addFactory { RemoveHistoryById(get()) }
|
|
addFactory { RemoveHistoryByMangaId(get()) }
|
|
}
|
|
}
|