Swiftformat .

This commit is contained in:
Thomas Ricouard 2024-03-11 09:05:52 +01:00
parent fd3d9fc2bc
commit 058500f91e
13 changed files with 27 additions and 32 deletions

View file

@ -322,7 +322,7 @@ struct AccountDetailHeaderView: View {
.foregroundColor(.accentColor)
}
}
@ViewBuilder
private func makeNoteView(_ note: String) -> some View {
VStack(alignment: .leading, spacing: 4) {

View file

@ -371,7 +371,7 @@ public struct AccountDetailView: View {
}
extension View {
@MainActor
@MainActor
func applyAccountDetailsRowStyle(theme: Theme) -> some View {
listRowInsets(.init())
.listRowSeparator(.hidden)

View file

@ -49,8 +49,8 @@ public struct ConversationsListView: View {
}
} else if conversations.isEmpty, !viewModel.isLoadingFirstPage, !viewModel.isError {
PlaceholderView(iconName: "tray",
title: "conversations.empty.title",
message: "conversations.empty.message")
title: "conversations.empty.title",
message: "conversations.empty.message")
} else if viewModel.isError {
ErrorView(title: "conversations.error.title",
message: "conversations.error.message",

View file

@ -52,7 +52,7 @@ import UIKit
try? await Task.sleep(for: .seconds(0.1))
for delegate in observedSceneDelegate {
#if os(visionOS)
let newWidth = delegate.window?.bounds.size.width ?? 0
let newWidth = delegate.window?.bounds.size.width ?? 0
if delegate.windowWidth != newWidth {
delegate.windowWidth = newWidth
}

View file

@ -2,7 +2,7 @@ import Combine
import SwiftUI
@MainActor
@Observable
@Observable
public final class Theme {
final class ThemeStorage {
enum ThemeKey: String {

View file

@ -46,7 +46,5 @@ public struct ErrorView: View {
#Preview {
ErrorView(title: "Error",
message: "Error loading. Please try again",
buttonTitle: "Retry") {
}
buttonTitle: "Retry") {}
}

View file

@ -52,13 +52,10 @@ public struct NextPageView: View {
}
}
#Preview {
List {
Text("Item 1")
NextPageView {
}
NextPageView {}
}
.listStyle(.plain)
}

View file

@ -1,15 +1,15 @@
import SwiftUI
import Network
import SwiftUI
@MainActor
public extension View {
func withPreviewsEnv() -> some View{
func withPreviewsEnv() -> some View {
environment(RouterPath())
.environment(Client(server: ""))
.environment(CurrentAccount.shared)
.environment(UserPreferences.shared)
.environment(CurrentInstance.shared)
.environment(PushNotificationsService.shared)
.environment(QuickLook.shared)
.environment(Client(server: ""))
.environment(CurrentAccount.shared)
.environment(UserPreferences.shared)
.environment(CurrentInstance.shared)
.environment(PushNotificationsService.shared)
.environment(QuickLook.shared)
}
}

View file

@ -42,11 +42,11 @@ public enum SheetDestination: Identifiable, Hashable {
public static func == (lhs: SheetDestination, rhs: SheetDestination) -> Bool {
lhs.id == rhs.id
}
public func hash(into hasher: inout Hasher) {
hasher.combine(id)
}
case newStatusEditor(visibility: Models.Visibility)
case editStatusEditor(status: Status)
case replyToStatusEditor(status: Status)

View file

@ -33,8 +33,8 @@ public struct ExploreView: View {
if let results = viewModel.results[viewModel.searchQuery] {
if results.isEmpty, !viewModel.isSearching {
PlaceholderView(iconName: "magnifyingglass",
title: "explore.search.empty.title",
message: "explore.search.empty.message")
title: "explore.search.empty.title",
message: "explore.search.empty.message")
.listRowBackground(theme.secondaryBackgroundColor)
.listRowSeparator(.hidden)
} else {
@ -54,8 +54,8 @@ public struct ExploreView: View {
}
} else if viewModel.allSectionsEmpty {
PlaceholderView(iconName: "magnifyingglass",
title: "explore.search.title",
message: "explore.search.message-\(client.server)")
title: "explore.search.title",
message: "explore.search.message-\(client.server)")
#if !os(visionOS)
.listRowBackground(theme.secondaryBackgroundColor)
#endif

View file

@ -145,7 +145,7 @@ public final class Account: Codable, Identifiable, Hashable, Sendable, Equatable
bot = try container.decode(Bool.self, forKey: .bot)
discoverable = try container.decodeIfPresent(Bool.self, forKey: .discoverable)
moved = try container.decodeIfPresent(Account.self, forKey: .moved)
if let displayName, !displayName.isEmpty {
cachedDisplayName = .init(stringValue: displayName)
} else {

View file

@ -154,8 +154,8 @@ public struct NotificationsListView: View {
case let .display(notifications, nextPageState):
if notifications.isEmpty {
PlaceholderView(iconName: "bell.slash",
title: "notifications.empty.title",
message: "notifications.empty.message")
title: "notifications.empty.title",
message: "notifications.empty.message")
#if !os(visionOS)
.listRowBackground(theme.primaryBackgroundColor)
#endif

View file

@ -1,6 +1,6 @@
import DesignSystem
import SwiftUI
import Env
import SwiftUI
@MainActor
public struct TimelineContentFilterView: View {
@ -32,7 +32,7 @@ public struct TimelineContentFilterView: View {
#if !os(visionOS)
.listRowBackground(theme.primaryBackgroundColor)
#endif
Section {
if currentInstance.isFiltersSupported {
Button {