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-02-03 15:16:30 +01:00
|
|
|
@EnvironmentObject var client: Client
|
2023-01-06 18:16:08 +01:00
|
|
|
@Environment(\.dismiss) private var dismiss
|
2023-01-10 11:30:30 +01:00
|
|
|
|
2023-01-31 12:20:49 +01:00
|
|
|
@State var statusViewModel: StatusModel?
|
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){
|
2023-01-31 12:20:49 +01:00
|
|
|
if let accountData = applicationState.account {
|
2023-01-10 11:30:30 +01:00
|
|
|
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) {
|
2023-01-24 20:38:21 +01:00
|
|
|
UserAvatar(accountAvatar: status.account.avatar, size: .comment)
|
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-23 18:01:27 +01:00
|
|
|
MarkdownFormattedText(status.content.asMarkdown, withFontSize: 14, andWidth: contentWidth)
|
|
|
|
.environment(\.openURL, OpenURLAction { url in .handled })
|
2023-01-10 11:30:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.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 {
|
2023-02-03 15:16:30 +01:00
|
|
|
_ = try await self.client.statuses?.new(status: Mastodon.Statuses.Components(inReplyToId: self.statusViewModel?.id, text: self.text))
|
2023-01-10 20:38:02 +01:00
|
|
|
} 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
|
|
|
}
|