2020-08-21 04:29:01 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
2020-10-30 08:11:24 +01:00
|
|
|
import Mastodon
|
2020-08-21 04:29:01 +02:00
|
|
|
import UIKit
|
|
|
|
|
|
|
|
extension String {
|
2021-01-19 01:46:38 +01:00
|
|
|
func height(width: CGFloat, font: UIFont) -> CGFloat {
|
|
|
|
(self as NSString).boundingRect(
|
|
|
|
with: CGSize(width: width, height: .greatestFiniteMagnitude),
|
|
|
|
options: .usesLineFragmentOrigin,
|
|
|
|
attributes: [.font: font],
|
|
|
|
context: nil)
|
|
|
|
.height
|
|
|
|
}
|
|
|
|
|
2020-08-21 04:29:01 +02:00
|
|
|
func countEmphasizedAttributedString(count: Int, highlighted: Bool = false) -> NSAttributedString {
|
|
|
|
let countRange = (self as NSString).range(of: String.localizedStringWithFormat("%ld", count))
|
|
|
|
|
|
|
|
let attributed = NSMutableAttributedString(
|
|
|
|
string: self,
|
|
|
|
attributes: [
|
|
|
|
.font: UIFont.preferredFont(forTextStyle: .body),
|
|
|
|
.foregroundColor: highlighted ? UIColor.tertiaryLabel : UIColor.secondaryLabel
|
|
|
|
])
|
|
|
|
attributed.addAttributes(
|
|
|
|
[
|
|
|
|
.font: UIFont.preferredFont(forTextStyle: .headline),
|
|
|
|
.foregroundColor: highlighted ? UIColor.secondaryLabel : UIColor.label
|
|
|
|
],
|
|
|
|
range: countRange)
|
|
|
|
|
|
|
|
return attributed
|
|
|
|
}
|
2020-10-30 08:11:24 +01:00
|
|
|
|
2021-01-12 08:33:35 +01:00
|
|
|
func localizedBolding(displayName: String, emojis: [Emoji], label: UILabel) -> NSAttributedString {
|
2020-10-30 08:11:24 +01:00
|
|
|
let mutableString = NSMutableAttributedString(
|
|
|
|
string: String.localizedStringWithFormat(
|
|
|
|
NSLocalizedString(self, comment: ""),
|
|
|
|
displayName))
|
|
|
|
|
|
|
|
let range = (mutableString.string as NSString).range(of: displayName)
|
|
|
|
|
|
|
|
if range.location != NSNotFound,
|
|
|
|
let boldFontDescriptor = label.font.fontDescriptor.withSymbolicTraits([.traitBold]) {
|
|
|
|
let boldFont = UIFont(descriptor: boldFontDescriptor, size: label.font.pointSize)
|
|
|
|
|
|
|
|
mutableString.setAttributes([NSAttributedString.Key.font: boldFont], range: range)
|
|
|
|
}
|
|
|
|
|
2021-01-12 08:33:35 +01:00
|
|
|
mutableString.insert(emojis: emojis, view: label)
|
2020-10-30 08:11:24 +01:00
|
|
|
mutableString.resizeAttachments(toLineHeight: label.font.lineHeight)
|
|
|
|
|
|
|
|
return mutableString
|
|
|
|
}
|
2020-08-21 04:29:01 +02:00
|
|
|
}
|