Merge branch 'dev' into strings

pull/1023/head
Ryan ZHAO 7 months ago
commit ae3fde1e1c

@ -94,7 +94,7 @@ public enum TSImageQuality: UInt {
// [SignalAttachment hasError] will be true for non-valid attachments.
//
// TODO: Perhaps do conversion off the main thread?
public class SignalAttachment: Equatable, Hashable {
public class SignalAttachment: Equatable {
// MARK: Properties
@ -1111,20 +1111,4 @@ public class SignalAttachment: Equatable, Hashable {
lhs.isVoiceMessage == rhs.isVoiceMessage
)
}
// MARK: - Hashable
public func hash(into hasher: inout Hasher) {
dataUTI.hash(into: &hasher)
captionText.hash(into: &hasher)
linkPreviewDraft.hash(into: &hasher)
isConvertibleToTextMessage.hash(into: &hasher)
isConvertibleToContactShare.hash(into: &hasher)
isVoiceMessage.hash(into: &hasher)
dataSource.hash(into: &hasher)
cachedImage?.size.width.hash(into: &hasher)
cachedImage?.size.height.hash(into: &hasher)
cachedVideoPreview?.size.width.hash(into: &hasher)
cachedVideoPreview?.size.height.hash(into: &hasher)
}
}

@ -4,7 +4,7 @@ import Foundation
// MARK: - DataSource
public protocol DataSource: Equatable, Hashable {
public protocol DataSource: Equatable {
var data: Data { get }
var dataUrl: URL? { get }
@ -140,13 +140,6 @@ public class DataSourceValue: DataSource {
try data.write(to: URL(fileURLWithPath: path), options: .atomic)
}
public func hash(into hasher: inout Hasher) {
data.hash(into: &hasher)
sourceFilename.hash(into: &hasher)
fileExtension.hash(into: &hasher)
shouldDeleteOnDeinit.hash(into: &hasher)
}
public static func == (lhs: DataSourceValue, rhs: DataSourceValue) -> Bool {
return (
lhs.data == rhs.data &&
@ -234,12 +227,6 @@ public class DataSourcePath: DataSource {
try FileManager.default.copyItem(atPath: filePath, toPath: path)
}
public func hash(into hasher: inout Hasher) {
filePath.hash(into: &hasher)
sourceFilename.hash(into: &hasher)
shouldDeleteOnDeinit.hash(into: &hasher)
}
public static func == (lhs: DataSourcePath, rhs: DataSourcePath) -> Bool {
return (
lhs.filePath == rhs.filePath &&

@ -91,7 +91,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
set { setCurrentItem(newValue, direction: .forward, animated: false) }
}
private var cachedPages: [SignalAttachmentItem: AttachmentPrepViewController] = [:]
private var cachedPages: [UUID: AttachmentPrepViewController] = [:]
public var shouldHideControls: Bool {
guard let pageViewController: AttachmentPrepViewController = pageViewControllers?.first else {
@ -417,7 +417,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
}
private func buildPage(item: SignalAttachmentItem) -> AttachmentPrepViewController? {
if let cachedPage = cachedPages[item] {
if let cachedPage = cachedPages[item.uniqueIdentifier] {
Log.debug("[AttachmentApprovalViewController] cache hit.")
return cachedPage
}
@ -425,7 +425,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
Log.debug("[AttachmentApprovalViewController] cache miss.")
let viewController = AttachmentPrepViewController(attachmentItem: item, using: dependencies)
viewController.prepDelegate = self
cachedPages[item] = viewController
cachedPages[item.uniqueIdentifier] = viewController
return viewController
}

@ -24,12 +24,13 @@ class AddMoreRailItem: GalleryRailItem {
}
}
class SignalAttachmentItem: Hashable {
class SignalAttachmentItem: Equatable {
enum SignalAttachmentItemError: Error {
case noThumbnail
}
let uniqueIdentifier: UUID = UUID()
let attachment: SignalAttachment
// This might be nil if the attachment is not a valid image.
@ -63,12 +64,6 @@ class SignalAttachmentItem: Hashable {
return attachment.staticThumbnail()
}
// MARK: Hashable
func hash(into hasher: inout Hasher) {
attachment.hash(into: &hasher)
}
// MARK: Equatable
static func == (lhs: SignalAttachmentItem, rhs: SignalAttachmentItem) -> Bool {

Loading…
Cancel
Save