mastodon-app-ufficiale-ipho.../Mastodon/Diffiable/Item/ComposeStatusItem.swift

70 lines
2.6 KiB
Swift
Raw Normal View History

2021-03-11 08:41:27 +01:00
//
// ComposeStatusItem.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-11.
//
import Foundation
import Combine
2021-03-11 08:41:27 +01:00
import CoreData
2021-03-23 11:47:21 +01:00
/// Note: update Equatable when change case
2021-03-11 08:41:27 +01:00
enum ComposeStatusItem {
2021-03-16 04:23:19 +01:00
case replyTo(statusObjectID: NSManagedObjectID)
case input(replyToStatusObjectID: NSManagedObjectID?, attribute: ComposeStatusAttribute)
2021-06-29 10:41:58 +02:00
case attachment(attachmentAttribute: ComposeStatusAttachmentAttribute)
case pollOption(pollOptionAttributes: [ComposeStatusPollItem.PollOptionAttribute], pollExpiresOptionAttribute: ComposeStatusPollItem.PollExpiresOptionAttribute)
2021-03-11 08:41:27 +01:00
}
extension ComposeStatusItem: Hashable { }
extension ComposeStatusItem {
2021-03-16 04:23:19 +01:00
final class ComposeStatusAttribute: Equatable, Hashable {
private let id = UUID()
let avatarURL = CurrentValueSubject<URL?, Never>(nil)
let displayName = CurrentValueSubject<String?, Never>(nil)
let emojiDict = CurrentValueSubject<MastodonStatusContent.EmojiDict, Never>([:])
let username = CurrentValueSubject<String?, Never>(nil)
let composeContent = CurrentValueSubject<String?, Never>(nil)
let isContentWarningComposing = CurrentValueSubject<Bool, Never>(false)
let contentWarningContent = CurrentValueSubject<String, Never>("")
2021-03-16 04:23:19 +01:00
static func == (lhs: ComposeStatusAttribute, rhs: ComposeStatusAttribute) -> Bool {
return lhs.avatarURL.value == rhs.avatarURL.value &&
lhs.displayName.value == rhs.displayName.value &&
lhs.emojiDict.value == rhs.emojiDict.value &&
lhs.username.value == rhs.username.value &&
lhs.composeContent.value == rhs.composeContent.value &&
lhs.isContentWarningComposing.value == rhs.isContentWarningComposing.value &&
lhs.contentWarningContent.value == rhs.contentWarningContent.value
}
func hash(into hasher: inout Hasher) {
hasher.combine(id)
}
}
}
2021-03-23 11:47:21 +01:00
extension ComposeStatusItem {
2021-06-29 10:41:58 +02:00
final class ComposeStatusAttachmentAttribute: Hashable {
2021-03-23 11:47:21 +01:00
private let id = UUID()
2021-06-29 10:41:58 +02:00
var attachmentServices: [MastodonAttachmentService]
2021-06-29 10:41:58 +02:00
init(attachmentServices: [MastodonAttachmentService]) {
self.attachmentServices = attachmentServices
}
2021-06-29 10:41:58 +02:00
static func == (lhs: ComposeStatusAttachmentAttribute, rhs: ComposeStatusAttachmentAttribute) -> Bool {
return lhs.attachmentServices == rhs.attachmentServices
}
2021-06-29 10:41:58 +02:00
func hash(into hasher: inout Hasher) {
hasher.combine(id)
}
}
}