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-10 11:30:30 +01:00
|
|
|
@State private var text = ""
|
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(
|
|
|
|
accountAvatar: accountData.avatar,
|
|
|
|
accountDisplayName: accountData.displayName,
|
|
|
|
accountUsername: accountData.username,
|
|
|
|
cachedAvatar: CacheAvatarService.shared.getImage(for: accountData.id))
|
|
|
|
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-10 11:30:30 +01:00
|
|
|
HStack (alignment: .top) {
|
|
|
|
|
2023-01-10 20:38:02 +01:00
|
|
|
AsyncImage(url: status.account.avatar) { image in
|
2023-01-10 11:30:30 +01:00
|
|
|
image
|
|
|
|
.resizable()
|
|
|
|
.clipShape(Circle())
|
|
|
|
.aspectRatio(contentMode: .fit)
|
|
|
|
} placeholder: {
|
|
|
|
Image(systemName: "person.circle")
|
|
|
|
.resizable()
|
|
|
|
.foregroundColor(.mainTextColor)
|
|
|
|
}
|
|
|
|
.frame(width: 32.0, height: 32.0)
|
|
|
|
|
|
|
|
VStack (alignment: .leading, spacing: 0) {
|
|
|
|
HStack (alignment: .top) {
|
2023-01-10 20:38:02 +01:00
|
|
|
Text(self.getUserName(statusViewModel: status))
|
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-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 {
|
|
|
|
print("Error \(error.localizedDescription)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private func getUserName(statusViewModel: StatusViewModel) -> String {
|
|
|
|
return self.statusViewModel?.account.displayName ?? self.statusViewModel?.account.acct ?? self.statusViewModel?.account.username ?? ""
|
2023-01-10 11:30:30 +01:00
|
|
|
}
|
2023-01-06 18:16:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct ComposeView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2023-01-10 20:38:02 +01:00
|
|
|
Text("")
|
|
|
|
// ComposeView(status: .constant(Status(id: "", content: "", application: Application(name: ""))))
|
2023-01-06 18:16:08 +01:00
|
|
|
}
|
|
|
|
}
|