forked from lixiang1994/AttributedString
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttribute.swift
242 lines (192 loc) · 8.24 KB
/
Attribute.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
//
// AttributedStringAttribute.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 {
/// 属性
public struct Attribute {
let attributes: [NSAttributedString.Key: Any]
}
/// 包装模式
public enum WrapMode {
case embedding(ASAttributedString) // 嵌入模式
case override(ASAttributedString) // 覆盖模式
internal var value: ASAttributedString {
switch self {
case .embedding(let value): return value
case .override(let value): return value
}
}
}
}
extension ASAttributedString.Attribute {
public static func custom(_ value: [NSAttributedString.Key: Any]) -> Self {
return .init(attributes: value)
}
public static func font(_ value: ASFont) -> Self {
return .init(attributes: [.font: value])
}
public static func foreground(_ value: ASColor) -> Self {
return .init(attributes: [.foregroundColor: value])
}
public static func background(_ value: ASColor) -> Self {
return .init(attributes: [.backgroundColor: value])
}
public static func ligature(_ value: Bool) -> Self {
return .init(attributes: [.ligature: value ? 1 : 0])
}
public static func kern(_ value: CGFloat) -> Self {
return .init(attributes: [.kern: value])
}
public static func strikethrough(_ style: NSUnderlineStyle, color: ASColor? = nil) -> Self {
var temp: [NSAttributedString.Key: Any] = [:]
temp[.strikethroughColor] = color
temp[.strikethroughStyle] = style.rawValue
return .init(attributes: temp)
}
public static func underline(_ style: NSUnderlineStyle, color: ASColor? = nil) -> Self {
var temp: [NSAttributedString.Key: Any] = [:]
temp[.underlineColor] = color
temp[.underlineStyle] = style.rawValue
return .init(attributes: temp)
}
public static func link(_ value: String) -> Self {
guard let url = URL(string: value) else { return .init(attributes: [:])}
return link(url)
}
public static func link(_ value: URL) -> Self {
return .init(attributes: [.link: value])
}
public static func baselineOffset(_ value: CGFloat) -> Self {
return .init(attributes: [.baselineOffset: value])
}
public static func shadow(_ value: NSShadow) -> Self {
return .init(attributes: [.shadow: value])
}
public static func stroke(_ width: CGFloat = 0, color: ASColor? = nil) -> Self {
var temp: [NSAttributedString.Key: Any] = [:]
temp[.strokeColor] = color
temp[.strokeWidth] = width
return .init(attributes: temp)
}
public static func textEffect(_ value: String) -> Self {
return .init(attributes: [.textEffect: value])
}
public static func textEffect(_ value: NSAttributedString.TextEffectStyle) -> Self {
return textEffect(value.rawValue)
}
public static func obliqueness(_ value: CGFloat = 0.1) -> Self {
return .init(attributes: [.obliqueness: value])
}
public static func expansion(_ value: CGFloat = 0.0) -> Self {
return .init(attributes: [.expansion: value])
}
public static func writingDirection(_ value: [Int]) -> Self {
return .init(attributes: [.writingDirection: value])
}
public static func writingDirection(_ value: WritingDirection) -> Self {
return writingDirection(value.value)
}
public static func verticalGlyphForm(_ value: Bool) -> Self {
return .init(attributes: [.verticalGlyphForm: value ? 1 : 0])
}
}
#if os(macOS)
extension ASAttributedString.Attribute {
public static func cursor(_ value: NSCursor) -> Self {
return .init(attributes: [.cursor: value])
}
public static func markedClauseSegment(_ value: Int) -> Self {
return .init(attributes: [.markedClauseSegment: value])
}
public static func spellingState(_ value: SpellingState) -> Self {
return .init(attributes: [.spellingState: value.rawValue])
}
public static func superscript(_ value: Int) -> Self {
return .init(attributes: [.superscript: value])
}
public static func textAlternatives(_ value: NSTextAlternatives) -> Self {
return .init(attributes: [.textAlternatives: value])
}
public static func toolTip(_ value: String) -> Self {
return .init(attributes: [.toolTip: value])
}
}
extension ASAttributedString.Attribute {
/**
This enum controls the display of the spelling and grammar indicators on text,
highlighting portions of the text that are flagged for spelling or grammar issues.
This should be used with `Attribute.spellingState`.
*/
public enum SpellingState: Int {
/// The spelling error indicator.
case spelling = 1
/// The grammar error indicator.
case grammar = 2
}
}
#endif
extension ASAttributedString.Attribute {
public enum WritingDirection {
case LRE
case RLE
case LRO
case RLO
fileprivate var value: [Int] {
switch self {
case .LRE: return [NSWritingDirection.leftToRight.rawValue | NSWritingDirectionFormatType.embedding.rawValue]
case .RLE: return [NSWritingDirection.rightToLeft.rawValue | NSWritingDirectionFormatType.embedding.rawValue]
case .LRO: return [NSWritingDirection.leftToRight.rawValue | NSWritingDirectionFormatType.override.rawValue]
case .RLO: return [NSWritingDirection.rightToLeft.rawValue | NSWritingDirectionFormatType.override.rawValue]
}
}
}
}
extension ASAttributedStringInterpolation {
public typealias Attribute = ASAttributedString.Attribute
public typealias WrapMode = ASAttributedString.WrapMode
public mutating func appendInterpolation<T>(_ value: T, _ attributes: Attribute...) {
appendInterpolation(value, with: attributes)
}
public mutating func appendInterpolation<T>(_ value: T, with attributes: [Attribute]) {
self.value.append(ASAttributedString("\(value)", with: attributes).value)
}
public mutating func appendInterpolation(_ value: NSAttributedString, _ attributes: Attribute...) {
appendInterpolation(value, with: attributes)
}
public mutating func appendInterpolation(_ value: NSAttributedString, with attributes: [Attribute]) {
self.value.append(ASAttributedString(value, with: attributes).value)
}
public mutating func appendInterpolation(_ value: ASAttributedString, _ attributes: Attribute...) {
appendInterpolation(value, with: attributes)
}
public mutating func appendInterpolation(_ value: ASAttributedString, with attributes: [Attribute]) {
self.value.append(ASAttributedString(value, with: attributes).value)
}
// 嵌套包装
public mutating func appendInterpolation(wrap string: ASAttributedString, _ attributes: Attribute...) {
appendInterpolation(wrap: string, with: attributes)
}
public mutating func appendInterpolation(wrap string: ASAttributedString, with attributes: [Attribute]) {
self.value.append(ASAttributedString(string, with: attributes).value)
}
public mutating func appendInterpolation(wrap mode: WrapMode, _ attributes: Attribute...) {
appendInterpolation(wrap: mode, with: attributes)
}
public mutating func appendInterpolation(wrap mode: WrapMode, with attributes: [Attribute]) {
self.value.append(ASAttributedString(wrap: mode, with: attributes).value)
}
}