|
|
@ -45,17 +45,24 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
override func viewDidLoad() {
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
|
|
|
|
view.backgroundColor = UIColor.black
|
|
|
|
view.backgroundColor = UIColor.white
|
|
|
|
|
|
|
|
|
|
|
|
self.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem:.stop,
|
|
|
|
self.navigationItem.leftBarButtonItem = UIBarButtonItem(barButtonSystemItem:.stop,
|
|
|
|
target:self,
|
|
|
|
target:self,
|
|
|
|
action:#selector(donePressed))
|
|
|
|
action:#selector(donePressed))
|
|
|
|
self.navigationItem.title = NSLocalizedString("ATTACHMENT_APPROVAL_DIALOG_TITLE",
|
|
|
|
self.navigationItem.title = dialogTitle()
|
|
|
|
comment: "Title for the 'attachment approval' dialog.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
createViews()
|
|
|
|
createViews()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private func dialogTitle() -> String {
|
|
|
|
|
|
|
|
guard let filename = formattedFileName() else {
|
|
|
|
|
|
|
|
return NSLocalizedString("ATTACHMENT_APPROVAL_DIALOG_TITLE",
|
|
|
|
|
|
|
|
comment: "Title for the 'attachment approval' dialog.")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return filename
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
|
|
|
|
|
|
@ -140,10 +147,11 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
audioPlayButton.autoSetDimension(.height, toSize:buttonSize)
|
|
|
|
audioPlayButton.autoSetDimension(.height, toSize:buttonSize)
|
|
|
|
subviews.append(audioPlayButton)
|
|
|
|
subviews.append(audioPlayButton)
|
|
|
|
|
|
|
|
|
|
|
|
if let fileExtensionLabel = createFileExtensionLabel() {
|
|
|
|
if let fileNameLabel = createFileNameLabel() {
|
|
|
|
|
|
|
|
subviews.append(fileNameLabel)
|
|
|
|
|
|
|
|
} else if let fileExtensionLabel = createFileExtensionLabel() {
|
|
|
|
subviews.append(fileExtensionLabel)
|
|
|
|
subviews.append(fileExtensionLabel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let fileSizeLabel = createFileSizeLabel()
|
|
|
|
let fileSizeLabel = createFileSizeLabel()
|
|
|
|
subviews.append(fileSizeLabel)
|
|
|
|
subviews.append(fileSizeLabel)
|
|
|
|
|
|
|
|
|
|
|
@ -209,13 +217,14 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
private func createGenericPreview(attachmentPreviewView: UIView) {
|
|
|
|
private func createGenericPreview(attachmentPreviewView: UIView) {
|
|
|
|
var subviews = [UIView]()
|
|
|
|
var subviews = [UIView]()
|
|
|
|
|
|
|
|
|
|
|
|
let imageView = createHeroImageView(imageName: "file-icon-large")
|
|
|
|
let imageView = createHeroImageView(imageName: "file-thin-black-large")
|
|
|
|
subviews.append(imageView)
|
|
|
|
subviews.append(imageView)
|
|
|
|
|
|
|
|
|
|
|
|
if let fileExtensionLabel = createFileExtensionLabel() {
|
|
|
|
if let fileNameLabel = createFileNameLabel() {
|
|
|
|
|
|
|
|
subviews.append(fileNameLabel)
|
|
|
|
|
|
|
|
} else if let fileExtensionLabel = createFileExtensionLabel() {
|
|
|
|
subviews.append(fileExtensionLabel)
|
|
|
|
subviews.append(fileExtensionLabel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let fileSizeLabel = createFileSizeLabel()
|
|
|
|
let fileSizeLabel = createFileSizeLabel()
|
|
|
|
subviews.append(fileSizeLabel)
|
|
|
|
subviews.append(fileSizeLabel)
|
|
|
|
|
|
|
|
|
|
|
@ -256,34 +265,48 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
comment: "Format string for file extension label in call interstitial view"),
|
|
|
|
comment: "Format string for file extension label in call interstitial view"),
|
|
|
|
fileExtension.uppercased())
|
|
|
|
fileExtension.uppercased())
|
|
|
|
|
|
|
|
|
|
|
|
fileExtensionLabel.textColor = UIColor.white
|
|
|
|
fileExtensionLabel.textColor = UIColor.ows_materialBlue()
|
|
|
|
fileExtensionLabel.font = labelFont()
|
|
|
|
fileExtensionLabel.font = labelFont()
|
|
|
|
fileExtensionLabel.textAlignment = .center
|
|
|
|
fileExtensionLabel.textAlignment = .center
|
|
|
|
|
|
|
|
|
|
|
|
return fileExtensionLabel
|
|
|
|
return fileExtensionLabel
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private func formattedFileName() -> String? {
|
|
|
|
|
|
|
|
guard let rawFilename = attachment.filename else {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
let filename = rawFilename.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
|
|
|
|
|
|
|
|
guard filename.characters.count > 0 else {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return filename
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private func createFileNameLabel() -> UIView? {
|
|
|
|
|
|
|
|
guard let filename = formattedFileName() else {
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
let label = UILabel()
|
|
|
|
|
|
|
|
label.text = filename
|
|
|
|
|
|
|
|
label.textColor = UIColor.ows_materialBlue()
|
|
|
|
|
|
|
|
label.font = labelFont()
|
|
|
|
|
|
|
|
label.textAlignment = .center
|
|
|
|
|
|
|
|
return label
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private func createFileSizeLabel() -> UIView {
|
|
|
|
private func createFileSizeLabel() -> UIView {
|
|
|
|
let numberFormatter = NumberFormatter()
|
|
|
|
let label = UILabel()
|
|
|
|
numberFormatter.numberStyle = NumberFormatter.Style.decimal
|
|
|
|
|
|
|
|
let fileSizeLabel = UILabel()
|
|
|
|
|
|
|
|
let fileSize = attachment.data.count
|
|
|
|
let fileSize = attachment.data.count
|
|
|
|
let kOneKilobyte = 1024
|
|
|
|
label.text = String(format:NSLocalizedString("ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT",
|
|
|
|
let kOneMegabyte = kOneKilobyte * kOneKilobyte
|
|
|
|
|
|
|
|
let fileSizeText = (fileSize > kOneMegabyte
|
|
|
|
|
|
|
|
? numberFormatter.string(from: NSNumber(value: fileSize / kOneMegabyte))! + " mb"
|
|
|
|
|
|
|
|
: (fileSize > kOneKilobyte
|
|
|
|
|
|
|
|
? numberFormatter.string(from: NSNumber(value: fileSize / kOneKilobyte))! + " kb"
|
|
|
|
|
|
|
|
: numberFormatter.string(from: NSNumber(value: fileSize))!))
|
|
|
|
|
|
|
|
fileSizeLabel.text = String(format:NSLocalizedString("ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT",
|
|
|
|
|
|
|
|
comment: "Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}."),
|
|
|
|
comment: "Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}."),
|
|
|
|
fileSizeText)
|
|
|
|
ViewControllerUtils.formatFileSize(UInt(fileSize)))
|
|
|
|
|
|
|
|
|
|
|
|
fileSizeLabel.textColor = UIColor.white
|
|
|
|
label.textColor = UIColor.ows_materialBlue()
|
|
|
|
fileSizeLabel.font = labelFont()
|
|
|
|
label.font = labelFont()
|
|
|
|
fileSizeLabel.textAlignment = .center
|
|
|
|
label.textAlignment = .center
|
|
|
|
|
|
|
|
|
|
|
|
return fileSizeLabel
|
|
|
|
return label
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private func createButtonRow(attachmentPreviewView: UIView) {
|
|
|
|
private func createButtonRow(attachmentPreviewView: UIView) {
|
|
|
@ -308,7 +331,7 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
|
|
|
|
|
|
|
|
let cancelButton = createButton(title: NSLocalizedString("TXT_CANCEL_TITLE",
|
|
|
|
let cancelButton = createButton(title: NSLocalizedString("TXT_CANCEL_TITLE",
|
|
|
|
comment: ""),
|
|
|
|
comment: ""),
|
|
|
|
color : UIColor(rgbHex:0xff3B30),
|
|
|
|
color : UIColor.ows_destructiveRed(),
|
|
|
|
action: #selector(cancelPressed))
|
|
|
|
action: #selector(cancelPressed))
|
|
|
|
buttonRow.addSubview(cancelButton)
|
|
|
|
buttonRow.addSubview(cancelButton)
|
|
|
|
cancelButton.autoPinEdge(toSuperviewEdge:.top)
|
|
|
|
cancelButton.autoPinEdge(toSuperviewEdge:.top)
|
|
|
@ -317,7 +340,7 @@ class AttachmentApprovalViewController: UIViewController, OWSAudioAttachmentPlay
|
|
|
|
|
|
|
|
|
|
|
|
let sendButton = createButton(title: NSLocalizedString("ATTACHMENT_APPROVAL_SEND_BUTTON",
|
|
|
|
let sendButton = createButton(title: NSLocalizedString("ATTACHMENT_APPROVAL_SEND_BUTTON",
|
|
|
|
comment: "Label for 'send' button in the 'attachment approval' dialog."),
|
|
|
|
comment: "Label for 'send' button in the 'attachment approval' dialog."),
|
|
|
|
color : UIColor(rgbHex:0x4CD964),
|
|
|
|
color : UIColor(rgbHex:0x2ecc71),
|
|
|
|
action: #selector(sendPressed))
|
|
|
|
action: #selector(sendPressed))
|
|
|
|
buttonRow.addSubview(sendButton)
|
|
|
|
buttonRow.addSubview(sendButton)
|
|
|
|
sendButton.autoPinEdge(toSuperviewEdge:.top)
|
|
|
|
sendButton.autoPinEdge(toSuperviewEdge:.top)
|
|
|
|