|
|
@ -120,6 +120,12 @@ class AttachmentApprovalInputAccessoryView: UIView {
|
|
|
|
currentCaptionWrapper.isHidden = isEditingCaptions || !hasCurrentCaption
|
|
|
|
currentCaptionWrapper.isHidden = isEditingCaptions || !hasCurrentCaption
|
|
|
|
attachmentTextToolbar.isHidden = isEditingCaptions
|
|
|
|
attachmentTextToolbar.isHidden = isEditingCaptions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateFirstResponder()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
layoutSubviews()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private func updateFirstResponder() {
|
|
|
|
if (shouldHideControls) {
|
|
|
|
if (shouldHideControls) {
|
|
|
|
if attachmentCaptionToolbar.textView.isFirstResponder {
|
|
|
|
if attachmentCaptionToolbar.textView.isFirstResponder {
|
|
|
|
attachmentCaptionToolbar.textView.resignFirstResponder()
|
|
|
|
attachmentCaptionToolbar.textView.resignFirstResponder()
|
|
|
@ -138,8 +144,6 @@ class AttachmentApprovalInputAccessoryView: UIView {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// NOTE: We don't automatically make attachmentTextToolbar.textView
|
|
|
|
// NOTE: We don't automatically make attachmentTextToolbar.textView
|
|
|
|
// first responder;
|
|
|
|
// first responder;
|
|
|
|
|
|
|
|
|
|
|
|
layoutSubviews()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public func update(isEditingCaptions: Bool,
|
|
|
|
public func update(isEditingCaptions: Bool,
|
|
|
@ -149,7 +153,9 @@ class AttachmentApprovalInputAccessoryView: UIView {
|
|
|
|
guard self.isEditingCaptions != isEditingCaptions ||
|
|
|
|
guard self.isEditingCaptions != isEditingCaptions ||
|
|
|
|
self.currentAttachmentItem != currentAttachmentItem ||
|
|
|
|
self.currentAttachmentItem != currentAttachmentItem ||
|
|
|
|
self.shouldHideControls != shouldHideControls else {
|
|
|
|
self.shouldHideControls != shouldHideControls else {
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
updateFirstResponder()
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
self.isEditingCaptions = isEditingCaptions
|
|
|
|
self.isEditingCaptions = isEditingCaptions
|
|
|
@ -168,6 +174,12 @@ class AttachmentApprovalInputAccessoryView: UIView {
|
|
|
|
return CGSize.zero
|
|
|
|
return CGSize.zero
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public var hasFirstResponder: Bool {
|
|
|
|
|
|
|
|
return (isFirstResponder ||
|
|
|
|
|
|
|
|
attachmentCaptionToolbar.textView.isFirstResponder ||
|
|
|
|
|
|
|
|
attachmentTextToolbar.textView.isFirstResponder)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
// MARK: -
|
|
|
|