// // ComposeStatusItem.swift // Mastodon // // Created by MainasuK Cirno on 2021-3-11. // import Foundation import Combine import CoreData enum ComposeStatusItem { case replyTo(statusObjectID: NSManagedObjectID) case input(replyToStatusObjectID: NSManagedObjectID?, attribute: ComposeStatusAttribute) } extension ComposeStatusItem: Hashable { } extension ComposeStatusItem { final class ComposeStatusAttribute: Equatable, Hashable { private let id = UUID() let avatarURL = CurrentValueSubject(nil) let displayName = CurrentValueSubject(nil) let username = CurrentValueSubject(nil) let composeContent = CurrentValueSubject(nil) static func == (lhs: ComposeStatusAttribute, rhs: ComposeStatusAttribute) -> Bool { return lhs.avatarURL.value == rhs.avatarURL.value && lhs.displayName.value == rhs.displayName.value && lhs.username.value == rhs.username.value && lhs.composeContent.value == rhs.composeContent.value } func hash(into hasher: inout Hasher) { hasher.combine(id) } } }