You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/home/recentbookmarks/controller/RecentBookmarksController.kt

72 lines
2.4 KiB
Kotlin

/* 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/. */
package org.mozilla.fenix.home.recentbookmarks.controller
import androidx.navigation.NavController
import mozilla.appservices.places.BookmarkRoot
import mozilla.components.concept.engine.EngineSession
import mozilla.components.concept.engine.EngineSession.LoadUrlFlags.Companion.ALLOW_JAVASCRIPT_URL
import org.mozilla.fenix.BrowserDirection
import org.mozilla.fenix.GleanMetrics.RecentBookmarks
import org.mozilla.fenix.HomeActivity
import org.mozilla.fenix.components.AppStore
import org.mozilla.fenix.components.appstate.AppAction
import org.mozilla.fenix.home.HomeFragmentDirections
import org.mozilla.fenix.home.recentbookmarks.RecentBookmark
import org.mozilla.fenix.home.recentbookmarks.interactor.RecentBookmarksInteractor
/**
* An interface that handles the view manipulation of the recently saved bookmarks on the
* Home screen.
*/
interface RecentBookmarksController {
/**
* @see [RecentBookmarksInteractor.onRecentBookmarkClicked]
*/
fun handleBookmarkClicked(bookmark: RecentBookmark)
/**
* @see [RecentBookmarksInteractor.onShowAllBookmarksClicked]
*/
fun handleShowAllBookmarksClicked()
/**
* @see [RecentBookmarksInteractor.onRecentBookmarkRemoved]
*/
fun handleBookmarkRemoved(bookmark: RecentBookmark)
}
/**
* The default implementation of [RecentBookmarksController].
*/
class DefaultRecentBookmarksController(
private val activity: HomeActivity,
private val navController: NavController,
private val appStore: AppStore,
) : RecentBookmarksController {
override fun handleBookmarkClicked(bookmark: RecentBookmark) {
activity.openToBrowserAndLoad(
searchTermOrURL = bookmark.url!!,
newTab = true,
from = BrowserDirection.FromHome,
flags = EngineSession.LoadUrlFlags.select(ALLOW_JAVASCRIPT_URL),
)
RecentBookmarks.bookmarkClicked.add()
}
override fun handleShowAllBookmarksClicked() {
RecentBookmarks.showAllBookmarks.add()
navController.navigate(
HomeFragmentDirections.actionGlobalBookmarkFragment(BookmarkRoot.Mobile.id),
)
}
override fun handleBookmarkRemoved(bookmark: RecentBookmark) {
appStore.dispatch(AppAction.RemoveRecentBookmark(bookmark))
}
}