For #11376 - Reverse tabs list order (#16245)

upstream-sync
Codrut Topliceanu 4 years ago committed by GitHub
parent ae407a7367
commit f3edce5f16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -193,13 +193,11 @@ class TabTrayView(
tabsAdapter.tabTrayInteractor = interactor
tabsAdapter.onTabsUpdated = {
if (view.context.settings().gridTabView) {
concatAdapter.addAdapter(collectionsButtonAdapter)
concatAdapter.addAdapter(syncedTabsController.adapter)
concatAdapter.addAdapter(collectionsButtonAdapter)
} else {
// Put the 'Add to collections' button after the tabs have loaded.
concatAdapter.addAdapter(0, collectionsButtonAdapter)
// Put the Synced Tabs adapter at the end.
concatAdapter.addAdapter(syncedTabsController.adapter)
concatAdapter.addAdapter(collectionsButtonAdapter)
}
if (hasAccessibilityEnabled) {
@ -442,10 +440,7 @@ class TabTrayView(
private fun setupListTabView() {
view.tabsTray.apply {
layoutManager = LinearLayoutManager(container.context).apply {
reverseLayout = true
stackFromEnd = true
}
layoutManager = LinearLayoutManager(container.context)
}
}
@ -730,19 +725,11 @@ class TabTrayView(
view.context.components.core.store.state.normalTabs
}
val selectedBrowserTabIndex = if (sessionId != null) {
return if (sessionId != null) {
tabs.indexOfFirst { it.id == sessionId }
} else {
tabs.indexOfFirst { it.id == view.context.components.core.store.state.selectedTabId }
}
// We offset the tab index by the number of items in the other adapters.
// We add the offset, because the layoutManager is initialized with `reverseLayout`.
return if (view.context.settings().listTabView) {
selectedBrowserTabIndex + collectionsButtonAdapter.itemCount + syncedTabsController.adapter.itemCount
} else {
selectedBrowserTabIndex
}
}
companion object {

Loading…
Cancel
Save