2022-12-29 17:27:15 +01:00
|
|
|
//
|
|
|
|
// https://mczachurski.dev
|
|
|
|
// Copyright © 2022 Marcin Czachurski and the repository contributors.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
import MastodonSwift
|
2023-01-02 19:12:25 +01:00
|
|
|
import AVFoundation
|
2022-12-29 17:27:15 +01:00
|
|
|
|
2023-01-06 13:05:21 +01:00
|
|
|
struct StatusView: View {
|
2023-01-04 17:56:01 +01:00
|
|
|
@EnvironmentObject var applicationState: ApplicationState
|
2023-01-05 11:55:20 +01:00
|
|
|
@State var statusId: String
|
|
|
|
|
2023-01-06 18:16:08 +01:00
|
|
|
@State private var showCompose = false
|
2023-01-05 11:55:20 +01:00
|
|
|
@State private var statusData: StatusData?
|
2022-12-29 17:27:15 +01:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
ScrollView {
|
2023-01-05 11:55:20 +01:00
|
|
|
if let statusData = self.statusData {
|
|
|
|
VStack (alignment: .leading) {
|
|
|
|
ImagesCarousel(attachments: statusData.attachments())
|
2022-12-29 17:27:15 +01:00
|
|
|
|
2023-01-05 11:55:20 +01:00
|
|
|
VStack(alignment: .leading) {
|
|
|
|
NavigationLink(destination: UserProfileView(
|
|
|
|
accountId: statusData.accountId,
|
|
|
|
accountDisplayName: statusData.accountDisplayName,
|
|
|
|
accountUserName: statusData.accountUsername)
|
|
|
|
.environmentObject(applicationState)) {
|
2023-01-05 21:08:19 +01:00
|
|
|
UsernameRow(accountAvatar: statusData.accountAvatar,
|
|
|
|
accountDisplayName: statusData.accountDisplayName,
|
|
|
|
accountUsername: statusData.accountUsername)
|
2023-01-05 11:55:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
HTMLFormattedText(statusData.content)
|
|
|
|
.padding(.leading, -4)
|
|
|
|
|
|
|
|
VStack (alignment: .leading) {
|
|
|
|
LabelIcon(iconName: "camera", value: "SONY ILCE-7M3")
|
|
|
|
LabelIcon(iconName: "camera.aperture", value: "Viltrox 24mm F1.8 E")
|
|
|
|
LabelIcon(iconName: "timelapse", value: "24.0 mm, f/1.8, 1/640s, ISO 100")
|
|
|
|
LabelIcon(iconName: "calendar", value: "2 Oct 2022")
|
2023-01-03 20:42:20 +01:00
|
|
|
}
|
2023-01-05 21:08:19 +01:00
|
|
|
.padding(.bottom, 2)
|
2023-01-06 13:05:21 +01:00
|
|
|
.foregroundColor(.lightGrayColor)
|
2023-01-05 11:55:20 +01:00
|
|
|
|
|
|
|
HStack {
|
|
|
|
Text("Uploaded")
|
|
|
|
Text(statusData.createdAt.toRelative(.isoDateTimeMilliSec))
|
|
|
|
.padding(.horizontal, -4)
|
|
|
|
if let applicationName = statusData.applicationName {
|
|
|
|
Text("via \(applicationName)")
|
|
|
|
}
|
|
|
|
}
|
2023-01-06 13:05:21 +01:00
|
|
|
.foregroundColor(.lightGrayColor)
|
2023-01-05 11:55:20 +01:00
|
|
|
.font(.footnote)
|
|
|
|
|
2023-01-07 18:43:44 +01:00
|
|
|
InteractionRow(statusId: statusData.id,
|
|
|
|
repliesCount: Int(statusData.repliesCount),
|
|
|
|
reblogged: statusData.reblogged,
|
|
|
|
reblogsCount: Int(statusData.reblogsCount),
|
|
|
|
favourited: statusData.favourited,
|
|
|
|
favouritesCount: Int(statusData.favouritesCount),
|
|
|
|
bookmarked: statusData.bookmarked) {
|
2023-01-06 18:16:08 +01:00
|
|
|
self.showCompose.toggle()
|
|
|
|
}
|
|
|
|
.padding(8)
|
2022-12-29 17:27:15 +01:00
|
|
|
}
|
2023-01-05 11:55:20 +01:00
|
|
|
.padding(8)
|
2023-01-05 21:08:19 +01:00
|
|
|
|
2023-01-06 18:16:08 +01:00
|
|
|
CommentsSection(statusId: statusData.id) { context in
|
|
|
|
self.showCompose.toggle()
|
|
|
|
}
|
2023-01-05 11:55:20 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
VStack (alignment: .leading) {
|
|
|
|
Rectangle()
|
|
|
|
.fill(Color.placeholderText)
|
|
|
|
.frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.width)
|
2023-01-05 12:33:52 +01:00
|
|
|
|
|
|
|
VStack(alignment: .leading) {
|
2023-01-05 21:08:19 +01:00
|
|
|
UsernameRow(accountDisplayName: "Verylong Displayname",
|
|
|
|
accountUsername: "@username")
|
|
|
|
|
2023-01-05 12:33:52 +01:00
|
|
|
Text("Lorem ispum text something")
|
2023-01-06 13:05:21 +01:00
|
|
|
.foregroundColor(.lightGrayColor)
|
2023-01-05 12:33:52 +01:00
|
|
|
.font(.footnote)
|
|
|
|
Text("Lorem ispum text something sdf sdfsdf sdfdsfsdfsdf")
|
2023-01-06 13:05:21 +01:00
|
|
|
.foregroundColor(.lightGrayColor)
|
2023-01-05 12:33:52 +01:00
|
|
|
.font(.footnote)
|
|
|
|
|
|
|
|
LabelIcon(iconName: "camera", value: "SONY ILCE-7M3")
|
|
|
|
LabelIcon(iconName: "camera.aperture", value: "Viltrox 24mm F1.8 E")
|
|
|
|
LabelIcon(iconName: "timelapse", value: "24.0 mm, f/1.8, 1/640s, ISO 100")
|
|
|
|
LabelIcon(iconName: "calendar", value: "2 Oct 2022")
|
|
|
|
}.padding(8)
|
2022-12-29 17:27:15 +01:00
|
|
|
}
|
2023-01-05 12:33:52 +01:00
|
|
|
.redacted(reason: .placeholder)
|
|
|
|
.animatePlaceholder(isLoading: .constant(true))
|
2022-12-29 17:27:15 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-30 18:20:54 +01:00
|
|
|
.navigationBarTitle("Details")
|
2023-01-06 18:16:08 +01:00
|
|
|
.sheet(isPresented: $showCompose, content: {
|
|
|
|
ComposeView()
|
|
|
|
})
|
2023-01-02 19:12:25 +01:00
|
|
|
.onAppear {
|
2023-01-04 17:56:01 +01:00
|
|
|
Task {
|
|
|
|
do {
|
2023-01-05 11:55:20 +01:00
|
|
|
// Get status from API.
|
|
|
|
let status = try await TimelineService.shared.getStatus(withId: self.statusId, and: self.applicationState.accountData)
|
|
|
|
|
|
|
|
if let status {
|
|
|
|
// Get status from database.
|
|
|
|
let statusDataFromDatabase = StatusDataHandler.shared.getStatusData(statusId: self.statusId)
|
|
|
|
|
|
|
|
// If we have status in database then we can update data.
|
|
|
|
if let statusDataFromDatabase {
|
|
|
|
self.statusData = try await TimelineService.shared.updateStatus(statusDataFromDatabase, basedOn: status)
|
|
|
|
} else {
|
|
|
|
self.statusData = try await status.createStatusData()
|
|
|
|
}
|
2023-01-04 17:56:01 +01:00
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
print("Error \(error.localizedDescription)")
|
|
|
|
}
|
|
|
|
}
|
2023-01-02 19:12:25 +01:00
|
|
|
}
|
2022-12-29 17:27:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-06 13:05:21 +01:00
|
|
|
struct StatusView_Previews: PreviewProvider {
|
2022-12-29 17:27:15 +01:00
|
|
|
static var previews: some View {
|
2023-01-06 13:05:21 +01:00
|
|
|
StatusView(statusId: "123")
|
2022-12-29 17:27:15 +01:00
|
|
|
}
|
|
|
|
}
|