forked from lixiang1994/AttributedString
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtension.swift
202 lines (180 loc) · 7.76 KB
/
Extension.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
//
// Extension.swift
// ┌─┐ ┌───────┐ ┌───────┐
// │ │ │ ┌─────┘ │ ┌─────┘
// │ │ │ └─────┐ │ └─────┐
// │ │ │ ┌─────┘ │ ┌─────┘
// │ └─────┐│ └─────┐ │ └─────┐
// └───────┘└───────┘ └───────┘
//
// Created by Lee on 2019/11/18.
// Copyright © 2019 LEE. All rights reserved.
//
import Foundation
public class ASAttributedStringWrapper<Base> {
let base: Base
init(_ base: Base) {
self.base = base
}
}
public protocol ASAttributedStringCompatible {
associatedtype ASAttributedStringCompatibleType
var attributed: ASAttributedStringCompatibleType { get }
}
extension ASAttributedStringCompatible {
public var attributed: ASAttributedStringWrapper<Self> {
get { return ASAttributedStringWrapper(self) }
}
}
extension ASAttributedString {
/// Add a AttributedString to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: AttributedString to add.
public static func += (lhs: inout ASAttributedString, rhs: ASAttributedString) {
let string = NSMutableAttributedString(attributedString: lhs.value)
string.append(rhs.value)
lhs = .init(string)
}
/// Add a AttributedString to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: AttributedString to add.
/// - Returns: New instance with added AttributedString.
public static func + (lhs: ASAttributedString, rhs: ASAttributedString) -> ASAttributedString {
let string = NSMutableAttributedString(attributedString: lhs.value)
string.append(rhs.value)
return .init(string)
}
/// Add a String to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: String to add.
public static func += (lhs: inout ASAttributedString, rhs: String) {
lhs += ASAttributedString(.init(string: rhs))
}
/// Add a AttributedString to another String.
///
/// - Parameters:
/// - lhs: String to add to.
/// - rhs: AttributedString to add.
public static func += (lhs: inout String, rhs: ASAttributedString) {
lhs += rhs.value.string
}
/// Add a String to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: String to add.
/// - Returns: New instance with added NSAttributedString.
public static func + (lhs: ASAttributedString, rhs: String) -> ASAttributedString {
return lhs + ASAttributedString(.init(string: rhs))
}
/// Add a AttributedString to another String and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: String to add.
/// - rhs: AttributedString to add.
/// - Returns: New instance with added NSAttributedString.
public static func + (lhs: String, rhs: ASAttributedString) -> ASAttributedString {
return ASAttributedString(.init(string: lhs)) + rhs
}
/// Add a NSAttributedString to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: NSAttributedString to add.
public static func += (lhs: inout ASAttributedString, rhs: NSAttributedString) {
lhs += ASAttributedString(rhs)
}
/// Add a AttributedString to another NSMutableAttributedString.
///
/// - Parameters:
/// - lhs: NSMutableAttributedString to add to.
/// - rhs: AttributedString to add.
public static func += (lhs: inout NSMutableAttributedString, rhs: ASAttributedString) {
lhs.append(rhs.value)
}
/// Add a NSAttributedString to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: NSAttributedString to add.
/// - Returns: New instance with added NSAttributedString.
public static func + (lhs: ASAttributedString, rhs: NSAttributedString) -> ASAttributedString {
return lhs + ASAttributedString(rhs)
}
/// Add a AttributedString to another NSAttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: NSAttributedString to add.
/// - rhs: AttributedString to add.
/// - Returns: New instance with added NSAttributedString.
public static func + (lhs: NSAttributedString, rhs: ASAttributedString) -> ASAttributedString {
return ASAttributedString(lhs) + rhs
}
/// Add a AttributedString.Attribute to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: AttributedString.Attribute to add.
public static func += (lhs: inout ASAttributedString, rhs: ASAttributedString.Attribute) {
lhs += (rhs, .init(location: 0, length: lhs.value.length))
}
/// Add a AttributedString.Attribute to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: AttributedString.Attribute to add.
public static func += (lhs: inout ASAttributedString, rhs: [ASAttributedString.Attribute]) {
lhs += (rhs, .init(location: 0, length: lhs.value.length))
}
/// Add a AttributedString.Attribute to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: AttributedString.Attribute to add.
public static func += (lhs: inout ASAttributedString, rhs: (ASAttributedString.Attribute, NSRange)) {
lhs += ([rhs.0], rhs.1)
}
/// Add a AttributedString.Attribute to another AttributedString.
///
/// - Parameters:
/// - lhs: AttributedString to add to.
/// - rhs: AttributedString.Attribute to add.
public static func += (lhs: inout ASAttributedString, rhs: ([ASAttributedString.Attribute], NSRange)) {
lhs = lhs + rhs
}
/// Add a AttributedString.Attribute to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: AttributedString.Attribute to add.
/// - Returns: New instance with added AttributedString.Attribute.
public static func + (lhs: ASAttributedString, rhs: ASAttributedString.Attribute) -> ASAttributedString {
return lhs + (rhs, .init(location: 0, length: lhs.value.length))
}
/// Add a AttributedString.Attribute to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: AttributedString.Attribute to add.
/// - Returns: New instance with added AttributedString.Attribute.
public static func + (lhs: ASAttributedString, rhs: (ASAttributedString.Attribute, NSRange)) -> ASAttributedString {
return lhs + ([rhs.0], rhs.1)
}
/// Add a AttributedString.Attribute to another AttributedString and return a new AttributedString instance.
///
/// - Parameters:
/// - lhs: AttributedString to add.
/// - rhs: AttributedString.Attribute to add.
/// - Returns: New instance with added AttributedString.Attribute.
public static func + (lhs: ASAttributedString, rhs: ([ASAttributedString.Attribute], NSRange)) -> ASAttributedString {
let string = NSMutableAttributedString(attributedString: lhs.value)
rhs.0.forEach { string.addAttributes($0.attributes, range: rhs.1) }
return .init(string)
}
}