mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-26 06:54:32 +01:00
1bf4d9e398
* - *WIP* Explore tab: Tap on tab to scroll to top. * - Explore tab: Tap tab to scroll to top. * - Explore: Tap tab again to focus on search bar. - Explore: Set `.defaultMinListRowHeight` so scroll to view doesn't occupy more than 1pt height in grouped style list. - Explore: Add padding to get Explore list view to look the same. * - Explore: Minor adjust to padding. * - Messages: Add tap tab to scroll to top. * - Notifications: Add tap tab to scroll to top. * - Profile: Add tap tab to scroll to top. * Add `ScrollToView` that can be used across all views. * Move scroll-to-top constants to ScrollToView. * Format --------- Co-authored-by: Thomas Ricouard <ricouard77@gmail.com>
54 lines
1.5 KiB
Swift
54 lines
1.5 KiB
Swift
import Account
|
|
import AppAccount
|
|
import Conversations
|
|
import DesignSystem
|
|
import Env
|
|
import Models
|
|
import Network
|
|
import Shimmer
|
|
import SwiftUI
|
|
|
|
@MainActor
|
|
struct ProfileTab: View {
|
|
@Environment(AppAccountsManager.self) private var appAccount
|
|
@Environment(Theme.self) private var theme
|
|
@Environment(Client.self) private var client
|
|
@Environment(CurrentAccount.self) private var currentAccount
|
|
@State private var routerPath = RouterPath()
|
|
@State private var scrollToTopSignal: Int = 0
|
|
@Binding var popToRootTab: Tab
|
|
|
|
var body: some View {
|
|
NavigationStack(path: $routerPath.path) {
|
|
if let account = currentAccount.account {
|
|
AccountDetailView(account: account, scrollToTopSignal: $scrollToTopSignal)
|
|
.withAppRouter()
|
|
.withSheetDestinations(sheetDestinations: $routerPath.presentedSheet)
|
|
.toolbarBackground(theme.primaryBackgroundColor.opacity(0.50), for: .navigationBar)
|
|
.id(account.id)
|
|
} else {
|
|
AccountDetailView(account: .placeholder(), scrollToTopSignal: $scrollToTopSignal)
|
|
.redacted(reason: .placeholder)
|
|
.allowsHitTesting(false)
|
|
}
|
|
}
|
|
.onChange(of: $popToRootTab.wrappedValue) { _, newValue in
|
|
if newValue == .profile {
|
|
if routerPath.path.isEmpty {
|
|
scrollToTopSignal += 1
|
|
} else {
|
|
routerPath.path = []
|
|
}
|
|
}
|
|
}
|
|
.onChange(of: client.id) {
|
|
routerPath.path = []
|
|
}
|
|
.onAppear {
|
|
routerPath.client = client
|
|
}
|
|
.withSafariRouter()
|
|
.environment(routerPath)
|
|
}
|
|
}
|