|
|
|
@ -53,6 +53,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
|
|
|
|
|
private lazy var attachmentsButton: ExpandingAttachmentsButton = {
|
|
|
|
|
let result = ExpandingAttachmentsButton(delegate: delegate)
|
|
|
|
|
result.accessibilityLabel = "Attachments button"
|
|
|
|
|
result.accessibilityIdentifier = "Attachments button"
|
|
|
|
|
result.isAccessibilityElement = true
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
@ -61,6 +62,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
|
|
|
|
|
private lazy var voiceMessageButton: InputViewButton = {
|
|
|
|
|
let result = InputViewButton(icon: #imageLiteral(resourceName: "Microphone"), delegate: self)
|
|
|
|
|
result.accessibilityLabel = "New voice message"
|
|
|
|
|
result.accessibilityIdentifier = "New voice message"
|
|
|
|
|
result.isAccessibilityElement = true
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
@ -69,6 +71,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
|
|
|
|
|
private lazy var sendButton: InputViewButton = {
|
|
|
|
|
let result = InputViewButton(icon: #imageLiteral(resourceName: "ArrowUp"), isSendButton: true, delegate: self)
|
|
|
|
|
result.isHidden = true
|
|
|
|
|
result.accessibilityIdentifier = "Send message button"
|
|
|
|
|
result.accessibilityLabel = "Send message button"
|
|
|
|
|
result.isAccessibilityElement = true
|
|
|
|
|
|
|
|
|
@ -86,6 +89,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
|
|
|
|
|
private lazy var mentionsViewContainer: UIView = {
|
|
|
|
|
let result: UIView = UIView()
|
|
|
|
|
result.accessibilityLabel = "Mentions list"
|
|
|
|
|
result.accessibilityIdentifier = "Mentions list"
|
|
|
|
|
result.isAccessibilityElement = true
|
|
|
|
|
result.alpha = 0
|
|
|
|
|
|
|
|
|
@ -118,6 +122,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M
|
|
|
|
|
let maxWidth = UIScreen.main.bounds.width - 2 * InputViewButton.expandedSize - 2 * Values.smallSpacing - 2 * (Values.mediumSpacing - adjustment)
|
|
|
|
|
let result = InputTextView(delegate: self, maxWidth: maxWidth)
|
|
|
|
|
result.accessibilityLabel = "Message input box"
|
|
|
|
|
result.accessibilityIdentifier = "Message input box"
|
|
|
|
|
result.isAccessibilityElement = true
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|