mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Swift
		
	
| import UIKit
 | |
| 
 | |
| public final class TextView : UITextView, UITextViewDelegate {
 | |
|     private let usesDefaultHeight: Bool
 | |
|     private let height: CGFloat
 | |
|     private let horizontalInset: CGFloat
 | |
|     private let verticalInset: CGFloat
 | |
|     private let placeholder: String
 | |
|     private let onTextChange: ((String) -> Void)?
 | |
| 
 | |
|     public override var contentSize: CGSize { didSet { centerTextVertically() } }
 | |
| 
 | |
|     private lazy var placeholderLabel: UILabel = {
 | |
|         let result = UILabel()
 | |
|         result.font = .systemFont(ofSize: Values.smallFontSize)
 | |
|         result.themeTextColor = .textSecondary
 | |
|         
 | |
|         return result
 | |
|     }()
 | |
| 
 | |
|     public init(
 | |
|         placeholder: String,
 | |
|         usesDefaultHeight: Bool = true,
 | |
|         customHeight: CGFloat? = nil,
 | |
|         customHorizontalInset: CGFloat? = nil,
 | |
|         customVerticalInset: CGFloat? = nil,
 | |
|         onTextChange: ((String) -> Void)? = nil
 | |
|     ) {
 | |
|         self.usesDefaultHeight = usesDefaultHeight
 | |
|         self.height = customHeight ?? TextField.height
 | |
|         self.horizontalInset = customHorizontalInset ?? (isIPhone5OrSmaller ? Values.mediumSpacing : Values.largeSpacing)
 | |
|         self.verticalInset = customVerticalInset ?? (isIPhone5OrSmaller ? Values.smallSpacing : Values.largeSpacing)
 | |
|         self.placeholder = placeholder
 | |
|         self.onTextChange = onTextChange
 | |
|         
 | |
|         super.init(frame: CGRect.zero, textContainer: nil)
 | |
|         self.delegate = self
 | |
|         
 | |
|         setUpStyle()
 | |
|     }
 | |
| 
 | |
|     public override init(frame: CGRect, textContainer: NSTextContainer?) {
 | |
|         preconditionFailure("Use init(placeholder:) instead.")
 | |
|     }
 | |
| 
 | |
|     public required init?(coder: NSCoder) {
 | |
|         preconditionFailure("Use init(placeholder:) instead.")
 | |
|     }
 | |
| 
 | |
|     private func setUpStyle() {
 | |
|         showsHorizontalScrollIndicator = false
 | |
|         showsVerticalScrollIndicator = false
 | |
|         
 | |
|         font = .systemFont(ofSize: Values.smallFontSize)
 | |
|         themeBackgroundColor = .clear
 | |
|         themeTextColor = .textPrimary
 | |
|         themeTintColor = .primary
 | |
|         themeBorderColor = .borderSeparator
 | |
|         layer.borderWidth = 1
 | |
|         layer.cornerRadius = TextField.cornerRadius
 | |
|         
 | |
|         placeholderLabel.text = placeholder
 | |
|         
 | |
|         if usesDefaultHeight {
 | |
|             set(.height, to: height)
 | |
|         }
 | |
|         
 | |
|         let horizontalInset = usesDefaultHeight ? self.horizontalInset : Values.mediumSpacing
 | |
|         textContainerInset = UIEdgeInsets(top: 0, left: horizontalInset, bottom: 0, right: horizontalInset)
 | |
|         addSubview(placeholderLabel)
 | |
|         placeholderLabel.pin(.leading, to: .leading, of: self, withInset: horizontalInset + 3) // Slight visual adjustment
 | |
|         placeholderLabel.pin(.top, to: .top, of: self)
 | |
|         pin(.trailing, to: .trailing, of: placeholderLabel, withInset: horizontalInset)
 | |
|         pin(.bottom, to: .bottom, of: placeholderLabel)
 | |
|         
 | |
|         ThemeManager.onThemeChange(observer: self) { [weak self] theme, _ in
 | |
|             switch theme.interfaceStyle {
 | |
|                 case .light: self?.keyboardAppearance = .light
 | |
|                 default: self?.keyboardAppearance = .dark
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public func textViewDidChange(_ textView: UITextView) {
 | |
|         placeholderLabel.isHidden = !text.isEmpty
 | |
|         onTextChange?(textView.text ?? "")
 | |
|     }
 | |
| 
 | |
|     private func centerTextVertically() {
 | |
|         let topInset = max(0, (bounds.size.height - contentSize.height * zoomScale) / 2)
 | |
|         contentInset = UIEdgeInsets(top: topInset, left: 0, bottom: 0, right: 0)
 | |
|     }
 | |
| }
 |