From a83893afa086f0050c825144fa818024db4df056 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 1 Apr 2026 23:25:54 -0500 Subject: feat: add Look Up screen and restrict management actions to owners Implements: https://todo.sr.ht/~ccleberg/Hutch/4 --- Hutch/Views/Lookup/UserProfileView.swift | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Hutch/Views/Lookup/UserProfileView.swift (limited to 'Hutch/Views/Lookup/UserProfileView.swift') diff --git a/Hutch/Views/Lookup/UserProfileView.swift b/Hutch/Views/Lookup/UserProfileView.swift new file mode 100644 index 0000000..3fcbb2f --- /dev/null +++ b/Hutch/Views/Lookup/UserProfileView.swift @@ -0,0 +1,52 @@ +import SwiftUI + +struct UserProfileView: View { + let user: User + + @Environment(AppState.self) private var appState + + var body: some View { + List { + if let avatarURL = user.avatar.flatMap(URL.init(string:)) { + Section { + HStack { + Spacer() + AsyncImage(url: avatarURL) { phase in + switch phase { + case .success(let image): + image + .resizable() + .scaledToFill() + case .failure, .empty: + Image(systemName: "person.crop.circle.fill") + .resizable() + .scaledToFit() + .foregroundStyle(.secondary) + .padding(20) + @unknown default: + EmptyView() + } + } + .frame(width: 96, height: 96) + .clipShape(Circle()) + .overlay { + Circle() + .stroke(Color.secondary.opacity(0.2), lineWidth: 1) + } + Spacer() + } + .listRowBackground(Color.clear) + } + } + + Section { + LabeledContent("Username", value: user.username) + LabeledContent("Canonical Name", value: user.canonicalName) + LabeledContent("Email", value: user.email) + } + } + .listStyle(.insetGrouped) + .navigationTitle(user.canonicalName) + .navigationBarTitleDisplayMode(.inline) + } +} -- cgit v1.2.3