forked from lixiang1994/AttributedString
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterpolation.swift
89 lines (78 loc) · 3.41 KB
/
Interpolation.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//
// AttributedStringInterpolation.swift
// ┌─┐ ┌───────┐ ┌───────┐
// │ │ │ ┌─────┘ │ ┌─────┘
// │ │ │ └─────┐ │ └─────┐
// │ │ │ ┌─────┘ │ ┌─────┘
// │ └─────┐│ └─────┐ │ └─────┐
// └───────┘└───────┘ └───────┘
//
// Created by Lee on 2019/11/18.
// Copyright © 2019 LEE. All rights reserved.
//
#if os(macOS)
import AppKit
#else
import UIKit
#endif
extension ASAttributedString: ExpressibleByStringInterpolation {
public init(stringInterpolation: ASAttributedStringInterpolation) {
self.value = .init(attributedString: stringInterpolation.value)
}
}
public struct ASAttributedStringInterpolation : StringInterpolationProtocol {
let value: NSMutableAttributedString
public init(literalCapacity: Int, interpolationCount: Int) {
value = .init()
}
public mutating func appendLiteral(_ literal: String) {
self.value.append(.init(string: literal))
}
public mutating func appendInterpolation(_ value: NSAttributedString) {
self.value.append(value)
}
public mutating func appendInterpolation(_ value: ASAttributedString) {
self.value.append(value.value)
}
/// Interpolates the given value's textual representation into the
/// attributed string literal being created.
///
/// Do not call this method directly. It is used by the compiler when
/// interpreting string interpolations. Instead, use string
/// interpolation to create a new string by including values, literals,
/// variables, or expressions enclosed in parentheses, prefixed by a
/// backslash (`\(`...`, attributes: [:])`).
///
/// let price = 2
/// let number = 3
/// let message: AttributedString = """
/// If one cookie costs \(price, attributes: [.foregroundColor: UIColor.red]) dollars, \
/// \(number, attributes: [.foregroundColor: UIColor.gray]) cookies cost \(price * number, attributes: [.foregroundColor: UIColor.blue]) dollars.
/// """
///
public mutating func appendInterpolation<T>(_ value: T, attributes: [NSAttributedString.Key: Any]) {
self.value.append(.init(string: "\(value)", attributes: attributes))
}
/// Interpolates the given value's textual representation into the
/// attributed string literal being created.
///
/// Do not call this method directly. It is used by the compiler when
/// interpreting string interpolations. Instead, use string
/// interpolation to create a new string by including values, literals,
/// variables, or expressions enclosed in parentheses, prefixed by a
/// backslash (`\(`...`)`).
///
/// let price = 2
/// let number = 3
/// let message = """
/// If one cookie costs \(price) dollars, \
/// \(number) cookies cost \(price * number) dollars.
/// """
/// print(message)
///
/// // Prints "If one cookie costs 2 dollars, 3 cookies cost 6 dollars."
///
public mutating func appendInterpolation<T>(_ value: T) {
self.value.append(.init(string: "\(value)"))
}
}