From 0b645626d177dcb3686794b86cf6a0633972f3a4 Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Thu, 8 Apr 2021 10:01:53 +1000 Subject: [PATCH] Make media placeholder view look nicer --- .../Content Views/MediaPlaceholderView.swift | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift b/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift index 59f3dab37..5f989a33e 100644 --- a/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift +++ b/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift @@ -24,9 +24,15 @@ final class MediaPlaceholderView : UIView { } private func setUpViewHierarchy() { + let (iconName, attachmentDescription): (String, String) = { + guard let contentType = viewItem.attachmentPointer?.contentType else { return ("actionsheet_document_black", "file") } // Should never occur + if MIMETypeUtil.isAudio(contentType) { return ("Microphone", "audio") } + if MIMETypeUtil.isImage(contentType) || MIMETypeUtil.isVideo(contentType) { return ("actionsheet_camera_roll_black", "media") } + return ("actionsheet_document_black", "file") + }() // Image view let iconSize = MediaPlaceholderView.iconSize - let icon = UIImage(named: "actionsheet_camera_roll_black")?.withTint(textColor)?.resizedImage(to: CGSize(width: iconSize, height: iconSize)) + let icon = UIImage(named: iconName)?.withTint(textColor)?.resizedImage(to: CGSize(width: iconSize, height: iconSize)) let imageView = UIImageView(image: icon) imageView.contentMode = .center let iconImageViewSize = MediaPlaceholderView.iconImageViewSize @@ -35,7 +41,7 @@ final class MediaPlaceholderView : UIView { // Body label let titleLabel = UILabel() titleLabel.lineBreakMode = .byTruncatingTail - titleLabel.text = "Download Media?" + titleLabel.text = "Tap to download \(attachmentDescription)" titleLabel.textColor = textColor titleLabel.font = .systemFont(ofSize: Values.mediumFontSize) // Stack view