144 lines
5.4 KiB
Swift
144 lines
5.4 KiB
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import SwiftUI
|
|
import MastodonKit
|
|
import Drops
|
|
|
|
struct InteractionRow: View {
|
|
@EnvironmentObject var applicationState: ApplicationState
|
|
|
|
@State var statusViewModel: StatusViewModel
|
|
|
|
@State private var repliesCount = 0
|
|
@State private var reblogged = false
|
|
@State private var reblogsCount = 0
|
|
@State private var favourited = false
|
|
@State private var favouritesCount = 0
|
|
@State private var bookmarked = false
|
|
|
|
var onNewStatus: (() -> Void)?
|
|
|
|
var body: some View {
|
|
HStack (alignment: .top) {
|
|
ActionButton {
|
|
onNewStatus?()
|
|
} label: {
|
|
HStack(alignment: .center) {
|
|
Image(systemName: "message")
|
|
Text("\(repliesCount)")
|
|
.font(.caption)
|
|
}
|
|
}
|
|
|
|
Spacer()
|
|
|
|
ActionButton {
|
|
do {
|
|
let status = self.reblogged
|
|
? try await StatusService.shared.unboost(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
: try await StatusService.shared.boost(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
|
|
if let status {
|
|
self.reblogsCount = status.reblogsCount == self.reblogsCount
|
|
? status.reblogsCount + 1
|
|
: status.reblogsCount
|
|
|
|
self.reblogged = status.reblogged
|
|
}
|
|
|
|
ToastrService.shared.showSuccess("Reblogged", imageSystemName: "paperplane.fill")
|
|
} catch {
|
|
ErrorService.shared.handle(error, message: "Reblog action failed.", showToastr: true)
|
|
}
|
|
} label: {
|
|
HStack(alignment: .center) {
|
|
Image(systemName: self.reblogged ? "paperplane.fill" : "paperplane")
|
|
Text("\(self.reblogsCount)")
|
|
.font(.caption)
|
|
}
|
|
}
|
|
|
|
Spacer()
|
|
|
|
ActionButton {
|
|
do {
|
|
let status = self.favourited
|
|
? try await StatusService.shared.unfavourite(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
: try await StatusService.shared.favourite(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
|
|
if let status {
|
|
self.favouritesCount = status.favouritesCount == self.favouritesCount
|
|
? status.favouritesCount + 1
|
|
: status.favouritesCount
|
|
|
|
self.favourited = status.favourited
|
|
}
|
|
|
|
ToastrService.shared.showSuccess("Favourited", imageSystemName: "hand.thumbsup.fill")
|
|
} catch {
|
|
ErrorService.shared.handle(error, message: "Favourite action failed.", showToastr: true)
|
|
}
|
|
} label: {
|
|
HStack(alignment: .center) {
|
|
Image(systemName: self.favourited ? "hand.thumbsup.fill" : "hand.thumbsup")
|
|
Text("\(self.favouritesCount)")
|
|
.font(.caption)
|
|
}
|
|
}
|
|
|
|
Spacer()
|
|
|
|
ActionButton {
|
|
do {
|
|
_ = self.bookmarked
|
|
? try await StatusService.shared.unbookmark(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
: try await StatusService.shared.bookmark(statusId: self.statusViewModel.id, accountData: self.applicationState.accountData)
|
|
|
|
self.bookmarked.toggle()
|
|
} catch {
|
|
ErrorService.shared.handle(error, message: "Favourite action failed.", showToastr: true)
|
|
}
|
|
|
|
ToastrService.shared.showSuccess("Bookmarked", imageSystemName: "bookmark.fill")
|
|
} label: {
|
|
Image(systemName: self.bookmarked ? "bookmark.fill" : "bookmark")
|
|
}
|
|
|
|
Spacer()
|
|
|
|
ActionButton {
|
|
// TODO: Share.
|
|
ToastrService.shared.showError(subtitle: "Sending new status failed!")
|
|
} label: {
|
|
Image(systemName: "square.and.arrow.up")
|
|
}
|
|
}
|
|
.font(.title3)
|
|
.fontWeight(.bold)
|
|
.onAppear {
|
|
self.refreshCounters()
|
|
}
|
|
}
|
|
|
|
private func refreshCounters() {
|
|
self.repliesCount = self.statusViewModel.repliesCount
|
|
self.reblogged = self.statusViewModel.reblogged
|
|
self.reblogsCount = self.statusViewModel.reblogsCount
|
|
self.favourited = self.statusViewModel.favourited
|
|
self.favouritesCount = self.statusViewModel.favouritesCount
|
|
self.bookmarked = self.statusViewModel.bookmarked
|
|
}
|
|
}
|
|
|
|
struct InteractionRow_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
Text("")
|
|
// InteractionRow(status: Status(id: "", content: "", application: Application(name: "")))
|
|
// .previewLayout(.fixed(width: 300, height: 70))
|
|
}
|
|
}
|