metatext/Extensions/NSMutableAttributedString+Extensions.swift

38 lines
1.2 KiB
Swift
Raw Normal View History

2020-08-08 09:10:05 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Kingfisher
2020-08-30 23:33:11 +00:00
import Mastodon
2020-09-05 02:31:43 +00:00
import UIKit
2020-08-08 09:10:05 +00:00
extension NSMutableAttributedString {
2021-01-12 07:33:35 +00:00
func insert(emojis: [Emoji], view: UIView) {
for emoji in emojis {
2020-08-08 09:10:05 +00:00
let token = ":\(emoji.shortcode):"
while let tokenRange = string.range(of: token) {
let attachment = NSTextAttachment()
2020-08-27 05:10:31 +00:00
attachment.kf.setImage(with: emoji.url, attributedView: view)
replaceCharacters(in: NSRange(tokenRange, in: string), with: NSAttributedString(attachment: attachment))
2020-08-08 09:10:05 +00:00
}
}
}
func resizeAttachments(toLineHeight lineHeight: CGFloat) {
enumerateAttribute(.attachment, in: NSRange(location: 0, length: length), options: []) { attribute, _, _ in
guard let attachment = attribute as? NSTextAttachment else { return }
attachment.bounds = CGRect(x: 0, y: lineHeight * -0.25, width: lineHeight, height: lineHeight)
}
}
2021-02-02 18:02:30 +00:00
func appendWithSeparator(_ string: NSAttributedString) {
append(.init(string: .separator))
append(string)
}
func appendWithSeparator(_ string: String) {
appendWithSeparator(.init(string: string))
}
2020-08-08 09:10:05 +00:00
}