1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/components/Components.kt

84 lines
2.8 KiB
Kotlin
Raw Normal View History

2019-01-24 22:07:52 +01:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2019-01-24 22:07:52 +01:00
package org.mozilla.fenix.components
import android.content.Context
import mozilla.components.feature.addons.AddonManager
import mozilla.components.feature.addons.amo.AddonCollectionProvider
import mozilla.components.feature.addons.update.AddonUpdater
import mozilla.components.feature.addons.update.DefaultAddonUpdater
import mozilla.components.feature.tabs.TabsUseCases
import mozilla.components.lib.publicsuffixlist.PublicSuffixList
2020-01-15 06:59:08 +01:00
import mozilla.components.support.migration.state.MigrationStore
import org.mozilla.fenix.browser.browsingmode.DefaultBrowsingModeManager
import org.mozilla.fenix.test.Mockable
2019-09-18 20:23:32 +02:00
import org.mozilla.fenix.utils.ClipboardHandler
import java.util.concurrent.TimeUnit
private const val DAY_IN_MINUTES = 24 * 60L
/**
* Provides access to all components.
*/
@Mockable
class Components(private val context: Context) {
val backgroundServices by lazy {
BackgroundServices(
context,
analytics.crashReporter,
core.historyStorage,
core.bookmarksStorage,
core.syncablePasswordsStorage,
2019-11-14 17:23:15 +01:00
core.getSecureAbove22Preferences()
)
}
val services by lazy { Services(context, backgroundServices.accountManager) }
val core by lazy { Core(context) }
val search by lazy { Search(context) }
val useCases by lazy {
UseCases(
context,
core.sessionManager,
core.store,
core.engine.settings,
search.searchEngineManager,
2019-11-07 20:30:03 +01:00
core.webAppShortcutManager
)
}
2019-09-18 20:23:32 +02:00
val intentProcessors by lazy {
IntentProcessors(
context,
core.sessionManager,
useCases.sessionUseCases,
useCases.searchUseCases,
core.client,
2020-01-15 06:59:08 +01:00
core.customTabsStore,
migrationStore,
core.webAppManifestStorage
)
2019-09-18 20:23:32 +02:00
}
val addonCollectionProvider by lazy {
AddonCollectionProvider(context, core.client, maxCacheAgeInMinutes = DAY_IN_MINUTES)
}
val addonUpdater by lazy {
DefaultAddonUpdater(context, AddonUpdater.Frequency(1, TimeUnit.DAYS))
}
val addonManager by lazy {
AddonManager(core.store, core.engine, addonCollectionProvider, addonUpdater)
}
val browsingModeManager by lazy { DefaultBrowsingModeManager() }
val tabsUseCases: TabsUseCases by lazy { TabsUseCases(core.sessionManager) }
val analytics by lazy { Analytics(context) }
val publicSuffixList by lazy { PublicSuffixList(context) }
2019-09-18 20:23:32 +02:00
val clipboardHandler by lazy { ClipboardHandler(context) }
2020-01-15 06:59:08 +01:00
val migrationStore by lazy { MigrationStore() }
}