Bubble/Threaded/Components/TabsView.swift

157 lines
4.1 KiB
Swift
Raw Normal View History

2023-12-29 11:17:37 +01:00
//Made by Lumaa
import SwiftUI
struct TabsView: View {
@Binding var selectedTab: TabDestination
2024-02-15 22:42:26 +01:00
var postButton: () -> Void = {}
var tapAction: () -> Void = {}
var retapAction: () -> Void = {}
2023-12-29 11:17:37 +01:00
var body: some View {
HStack(alignment: .center) {
Button {
2024-02-15 22:42:26 +01:00
if selectedTab == .timeline {
retapAction()
} else {
selectedTab = .timeline
tapAction()
}
2023-12-29 11:17:37 +01:00
} label: {
if selectedTab == .timeline {
2023-12-29 11:17:37 +01:00
Tabs.timeline.imageFill
} else {
Tabs.timeline.image
}
}
.buttonStyle(NoTapAnimationStyle())
Spacer()
Button {
2024-02-15 22:42:26 +01:00
if selectedTab == .search {
retapAction()
} else {
selectedTab = .search
tapAction()
}
2023-12-29 11:17:37 +01:00
} label: {
if selectedTab == .search {
2023-12-29 11:17:37 +01:00
Tabs.search.imageFill
} else {
Tabs.search.image
}
}
.buttonStyle(NoTapAnimationStyle())
Spacer()
Button {
postButton()
2023-12-29 11:17:37 +01:00
} label: {
Tabs.post.image
}
.buttonStyle(NoTapAnimationStyle())
Spacer()
Button {
2024-02-15 22:42:26 +01:00
if selectedTab == .activity {
retapAction()
} else {
selectedTab = .activity
tapAction()
}
2023-12-29 11:17:37 +01:00
} label: {
if selectedTab == .activity {
2023-12-29 11:17:37 +01:00
Tabs.activity.imageFill
} else {
Tabs.activity.image
}
}
.buttonStyle(NoTapAnimationStyle())
Spacer()
Button {
2024-02-15 22:42:26 +01:00
if selectedTab == .profile {
retapAction()
} else {
selectedTab = .profile
tapAction()
}
2023-12-29 11:17:37 +01:00
} label: {
if selectedTab == .profile {
2023-12-29 11:17:37 +01:00
Tabs.profile.imageFill
} else {
Tabs.profile.image
}
}
.buttonStyle(NoTapAnimationStyle())
}
.padding(.horizontal, 30)
.background(Color.appBackground)
}
}
enum Tabs {
case timeline
case search
case post
case activity
case profile
@ViewBuilder
var image: some View {
switch self {
case .timeline:
Image(systemName: "house")
.tabBarify()
case .search:
Image(systemName: "magnifyingglass")
.tabBarify()
case .post:
Image(systemName: "square.and.pencil")
.tabBarify()
case .activity:
Image(systemName: "heart")
.tabBarify()
case .profile:
Image(systemName: "person")
.tabBarify()
}
}
@ViewBuilder
var imageFill: some View {
switch self {
case .timeline:
Image(systemName: "house.fill")
.tabBarify(false)
case .search:
Image(systemName: "magnifyingglass")
.tabBarify(false)
case .post:
Image(systemName: "square.and.pencil")
.tabBarify(false)
case .activity:
Image(systemName: "heart.fill")
.tabBarify(false)
case .profile:
Image(systemName: "person.fill")
.tabBarify(false)
}
}
}
extension Image {
func tabBarify(_ neutral: Bool = true) -> some View {
self
.font(.title)
2023-12-29 11:17:37 +01:00
.opacity(neutral ? 0.3 : 1)
}
}