mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-21 15:50:59 +00:00
Reblog button
This commit is contained in:
parent
01efe1714f
commit
9b0f7e67be
4 changed files with 26 additions and 1 deletions
|
@ -6,6 +6,8 @@ import Mastodon
|
|||
|
||||
public enum StatusEndpoint {
|
||||
case status(id: Status.Id)
|
||||
case reblog(id: Status.Id)
|
||||
case unreblog(id: Status.Id)
|
||||
case favourite(id: Status.Id)
|
||||
case unfavourite(id: Status.Id)
|
||||
case bookmark(id: Status.Id)
|
||||
|
@ -70,6 +72,10 @@ extension StatusEndpoint: Endpoint {
|
|||
switch self {
|
||||
case let .status(id):
|
||||
return [id]
|
||||
case let .reblog(id):
|
||||
return [id, "reblog"]
|
||||
case let .unreblog(id):
|
||||
return [id, "unreblog"]
|
||||
case let .favourite(id):
|
||||
return [id, "favourite"]
|
||||
case let .unfavourite(id):
|
||||
|
@ -96,7 +102,7 @@ extension StatusEndpoint: Endpoint {
|
|||
switch self {
|
||||
case .status:
|
||||
return .get
|
||||
case .favourite, .unfavourite, .bookmark, .unbookmark, .post:
|
||||
case .reblog, .unreblog, .favourite, .unfavourite, .bookmark, .unbookmark, .post:
|
||||
return .post
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,6 +32,14 @@ public extension StatusService {
|
|||
contentDatabase.toggleShowAttachments(id: status.displayStatus.id)
|
||||
}
|
||||
|
||||
func toggleReblogged() -> AnyPublisher<Never, Error> {
|
||||
mastodonAPIClient.request(status.displayStatus.reblogged
|
||||
? StatusEndpoint.unreblog(id: status.displayStatus.id)
|
||||
: StatusEndpoint.reblog(id: status.displayStatus.id))
|
||||
.flatMap(contentDatabase.insert(status:))
|
||||
.eraseToAnyPublisher()
|
||||
}
|
||||
|
||||
func toggleFavorited() -> AnyPublisher<Never, Error> {
|
||||
mastodonAPIClient.request(status.displayStatus.favourited
|
||||
? StatusEndpoint.unfavourite(id: status.displayStatus.id)
|
||||
|
|
|
@ -200,6 +200,13 @@ public extension StatusViewModel {
|
|||
.eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func toggleReblogged() {
|
||||
eventsSubject.send(
|
||||
statusService.toggleReblogged()
|
||||
.map { _ in .ignorableOutput }
|
||||
.eraseToAnyPublisher())
|
||||
}
|
||||
|
||||
func toggleFavorited() {
|
||||
eventsSubject.send(
|
||||
statusService.toggleFavorited()
|
||||
|
|
|
@ -198,6 +198,10 @@ private extension StatusView {
|
|||
interactionsStackView.addArrangedSubview(favoritedByButton)
|
||||
interactionsStackView.distribution = .fillEqually
|
||||
|
||||
reblogButton.addAction(
|
||||
UIAction { [weak self] _ in self?.statusConfiguration.viewModel.toggleReblogged() },
|
||||
for: .touchUpInside)
|
||||
|
||||
favoriteButton.addAction(
|
||||
UIAction { [weak self] _ in self?.statusConfiguration.viewModel.toggleFavorited() },
|
||||
for: .touchUpInside)
|
||||
|
|
Loading…
Reference in a new issue