2018-03-28 04:47:00 +11:00
|
|
|
/* Copyright 2018 charlag
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.di
|
|
|
|
|
|
|
|
import com.keylesspalace.tusky.TuskyApplication
|
|
|
|
import dagger.BindsInstance
|
|
|
|
import dagger.Component
|
2018-09-01 04:35:30 +10:00
|
|
|
import dagger.android.support.AndroidSupportInjectionModule
|
2018-03-28 04:47:00 +11:00
|
|
|
import javax.inject.Singleton
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by charlag on 3/21/18.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Singleton
|
|
|
|
@Component(modules = [
|
|
|
|
AppModule::class,
|
|
|
|
NetworkModule::class,
|
2018-09-01 04:35:30 +10:00
|
|
|
AndroidSupportInjectionModule::class,
|
2018-04-14 06:37:21 +10:00
|
|
|
ActivitiesModule::class,
|
2018-04-23 01:20:01 +10:00
|
|
|
ServicesModule::class,
|
2018-06-18 21:26:18 +10:00
|
|
|
BroadcastReceiverModule::class,
|
Caching toots (#809)
* Initial timeline cache implementation
* Fix build/DI errors for caching
* Rename timeline entities tables. Add migration. Add DB scheme file.
* Fix uniqueness problem, change offline strategy, improve mapping
* Try to merge in new statuses, fix bottom loading, fix saving spans.
* Fix reblogs IDs, fix inserting elements from top
* Send one more request to get latest timeline statuses
* Give Timeline placeholders string id. Rewrite Either in Kotlin
* Initial placeholder implementation for caching
* Fix crash on removing overlap statuses
* Migrate counters to long
* Remove unused counters. Add minimal TimelineDAOTest
* Fix bug with placeholder ID
* Update cache in response to events. Refactor TimelineCases
* Fix crash, reduce number of placeholders
* Fix crash, fix filtering, improve placeholder handling
* Fix migration, add 8-9 migration test
* Fix initial timeline update, remove more placeholders
* Add cleanup for old statuses
* Fix cleanup
* Delete ExampleInstrumentedTest
* Improve timeline UX regarding caching
* Fix typos
* Fix initial timeline update
* Cleanup/fix initial timeline update
* Workaround for weird behavior of first post on initial tl update.
* Change counter types back to int
* Clear timeline cache on logout
* Fix loading when timeline is completely empty
* Fix androidx migration issues
* Fix tests
* Apply caching feedback
* Save account emojis to cache
* Fix warnings and bugs
2019-01-15 08:05:08 +11:00
|
|
|
ViewModelModule::class,
|
|
|
|
RepositoryModule::class
|
2018-03-28 04:47:00 +11:00
|
|
|
])
|
|
|
|
interface AppComponent {
|
|
|
|
@Component.Builder
|
|
|
|
interface Builder {
|
|
|
|
@BindsInstance
|
|
|
|
fun application(tuskyApp: TuskyApplication): Builder
|
|
|
|
|
|
|
|
fun build(): AppComponent
|
|
|
|
}
|
|
|
|
|
|
|
|
fun inject(app: TuskyApplication)
|
|
|
|
}
|