Impressia/Vernissage/Views/ComposeView.swift

112 lines
4.1 KiB
Swift
Raw Normal View History

2023-01-06 18:16:08 +01:00
//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
// Licensed under the MIT License.
//
import SwiftUI
2023-01-10 11:30:30 +01:00
import MastodonKit
2023-01-06 18:16:08 +01:00
struct ComposeView: View {
2023-01-10 20:38:02 +01:00
enum FocusField: Hashable {
case content
}
2023-01-10 11:30:30 +01:00
@EnvironmentObject var applicationState: ApplicationState
2023-01-06 18:16:08 +01:00
@Environment(\.dismiss) private var dismiss
2023-01-10 11:30:30 +01:00
2023-01-10 20:38:02 +01:00
@Binding var statusViewModel: StatusViewModel?
2023-01-14 08:52:51 +01:00
@State private var text = String.empty()
2023-01-10 20:38:02 +01:00
@FocusState private var focusedField: FocusField?
2023-01-10 11:30:30 +01:00
private let contentWidth = Int(UIScreen.main.bounds.width) - 50
2023-01-06 18:16:08 +01:00
var body: some View {
NavigationView {
2023-01-10 11:30:30 +01:00
ScrollView {
VStack (alignment: .leading){
if let accountData = applicationState.accountData {
HStack {
UsernameRow(
2023-01-18 18:41:42 +01:00
accountId: accountData.id,
2023-01-10 11:30:30 +01:00
accountAvatar: accountData.avatar,
accountDisplayName: accountData.displayName,
2023-01-18 18:41:42 +01:00
accountUsername: accountData.username)
2023-01-10 11:30:30 +01:00
Spacer()
}
.padding(8)
}
2023-01-10 20:38:02 +01:00
2023-01-10 11:30:30 +01:00
TextField("Type what's on your mind", text: $text)
.padding(8)
2023-01-10 20:38:02 +01:00
.focused($focusedField, equals: .content)
.task {
self.focusedField = .content
}
if let status = self.statusViewModel {
2023-01-18 18:41:42 +01:00
HStack (alignment: .top) {
UserAvatar(accountId: status.account.id, accountAvatar: status.account.avatar, width: 32, height: 32)
2023-01-10 11:30:30 +01:00
VStack (alignment: .leading, spacing: 0) {
HStack (alignment: .top) {
2023-01-18 18:41:42 +01:00
Text(statusViewModel?.account.displayNameWithoutEmojis ?? "")
2023-01-10 11:30:30 +01:00
.foregroundColor(.mainTextColor)
.font(.footnote)
.fontWeight(.bold)
2023-01-10 20:38:02 +01:00
2023-01-10 11:30:30 +01:00
Spacer()
}
2023-01-10 20:38:02 +01:00
2023-01-10 11:30:30 +01:00
HTMLFormattedText(status.content, withFontSize: 14, andWidth: contentWidth)
.padding(.top, -4)
.padding(.leading, -4)
}
}
.padding(8)
.background(Color.selectedRowColor)
}
2023-01-10 20:38:02 +01:00
2023-01-10 11:30:30 +01:00
Spacer()
}
2023-01-06 18:16:08 +01:00
}
2023-01-10 11:30:30 +01:00
.frame(alignment: .topLeading)
2023-01-06 18:16:08 +01:00
.toolbar {
ToolbarItem(placement: .primaryAction) {
Button {
2023-01-10 20:38:02 +01:00
Task {
await self.publishStatus()
dismiss()
2023-01-15 12:41:55 +01:00
ToastrService.shared.showSuccess("Status published", imageSystemName: "message.fill")
2023-01-10 20:38:02 +01:00
}
2023-01-06 18:16:08 +01:00
} label: {
Text("Publish")
.foregroundColor(.white)
}
2023-01-10 20:38:02 +01:00
.disabled(self.text.isEmpty)
2023-01-06 18:16:08 +01:00
.buttonStyle(.borderedProminent)
.tint(.accentColor)
}
ToolbarItem(placement: .cancellationAction) {
Button("Cancel", role: .cancel) {
dismiss()
}
}
}
.navigationBarTitle(Text("Compose"), displayMode: .inline)
}
}
2023-01-10 11:30:30 +01:00
2023-01-10 20:38:02 +01:00
private func publishStatus() async {
do {
_ = try await StatusService.shared.new(
status: Mastodon.Statuses.Components(inReplyToId: self.statusViewModel?.id, text: self.text),
accountData: self.applicationState.accountData)
} catch {
2023-01-15 12:41:55 +01:00
ErrorService.shared.handle(error, message: "Error during post status.", showToastr: true)
2023-01-10 20:38:02 +01:00
}
}
2023-01-06 18:16:08 +01:00
}