-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathMock.swift
146 lines (133 loc) · 5.24 KB
/
Mock.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
import Foundation
import AppKit
import CodeEditTextView
import CodeEditLanguages
@testable import CodeEditSourceEditor
class MockHighlightProvider: HighlightProviding {
var onSetUp: (CodeLanguage) -> Void
var onApplyEdit: (_ textView: TextView, _ range: NSRange, _ delta: Int) -> Result<IndexSet, any Error>
var onQueryHighlightsFor: (_ textView: TextView, _ range: NSRange) -> Result<[HighlightRange], any Error>
init(
onSetUp: @escaping (CodeLanguage) -> Void,
onApplyEdit: @escaping (_: TextView, _: NSRange, _: Int) -> Result<IndexSet, any Error>,
onQueryHighlightsFor: @escaping (_: TextView, _: NSRange) -> Result<[HighlightRange], any Error>
) {
self.onSetUp = onSetUp
self.onApplyEdit = onApplyEdit
self.onQueryHighlightsFor = onQueryHighlightsFor
}
func setUp(textView: TextView, codeLanguage: CodeLanguage) {
self.onSetUp(codeLanguage)
}
func applyEdit(
textView: TextView,
range: NSRange,
delta: Int,
completion: @escaping @MainActor (Result<IndexSet, any Error>) -> Void
) {
completion(self.onApplyEdit(textView, range, delta))
}
func queryHighlightsFor(
textView: TextView,
range: NSRange,
completion: @escaping @MainActor (Result<[HighlightRange], any Error>) -> Void
) {
completion(self.onQueryHighlightsFor(textView, range))
}
}
enum Mock {
class Delegate: TextViewDelegate { }
static func textViewController(theme: EditorTheme) -> TextViewController {
TextViewController(
string: "",
language: .html,
font: .monospacedSystemFont(ofSize: 11, weight: .medium),
theme: theme,
tabWidth: 4,
indentOption: .spaces(count: 4),
lineHeight: 1.0,
wrapLines: true,
cursorPositions: [],
editorOverscroll: 0.5,
useThemeBackground: true,
highlightProviders: [TreeSitterClient()],
contentInsets: NSEdgeInsets(top: 0, left: 0, bottom: 0, right: 0),
isEditable: true,
isSelectable: true,
letterSpacing: 1.0,
useSystemCursor: false,
bracketPairEmphasis: .flash,
showMinimap: true
)
}
static func theme() -> EditorTheme {
EditorTheme(
text: EditorTheme.Attribute(color: .textColor),
insertionPoint: .textColor,
invisibles: EditorTheme.Attribute(color: .gray),
background: .textBackgroundColor,
lineHighlight: .highlightColor,
selection: .selectedTextColor,
keywords: EditorTheme.Attribute(color: .systemPink),
commands: EditorTheme.Attribute(color: .systemBlue),
types: EditorTheme.Attribute(color: .systemMint),
attributes: EditorTheme.Attribute(color: .systemTeal),
variables: EditorTheme.Attribute(color: .systemCyan),
values: EditorTheme.Attribute(color: .systemOrange),
numbers: EditorTheme.Attribute(color: .systemYellow),
strings: EditorTheme.Attribute(color: .systemRed),
characters: EditorTheme.Attribute(color: .systemRed),
comments: EditorTheme.Attribute(color: .systemGreen)
)
}
static func textView() -> TextView {
TextView(
string: "func testSwiftFunc() -> Int {\n\tprint(\"\")\n}",
font: .monospacedSystemFont(ofSize: 12, weight: .regular),
textColor: .labelColor,
lineHeightMultiplier: 1.0,
wrapLines: true,
isEditable: true,
isSelectable: true,
letterSpacing: 1.0,
delegate: Delegate()
)
}
static func scrollingTextView() -> (NSScrollView, TextView) {
let scrollView = NSScrollView(frame: .init(x: 0, y: 0, width: 250, height: 250))
scrollView.contentView.postsBoundsChangedNotifications = true
scrollView.postsFrameChangedNotifications = true
let textView = textView()
scrollView.documentView = textView
scrollView.layoutSubtreeIfNeeded()
textView.layout()
return (scrollView, textView)
}
static func treeSitterClient(forceSync: Bool = false) -> TreeSitterClient {
let client = TreeSitterClient()
client.forceSyncOperation = forceSync
return client
}
@MainActor
static func highlighter(
textView: TextView,
highlightProviders: [HighlightProviding],
attributeProvider: ThemeAttributesProviding,
language: CodeLanguage = .default
) -> Highlighter {
Highlighter(
textView: textView,
minimapView: nil,
providers: highlightProviders,
attributeProvider: attributeProvider,
language: language
)
}
static func highlightProvider(
onSetUp: @escaping (CodeLanguage) -> Void,
onApplyEdit: @escaping (TextView, NSRange, Int) -> Result<IndexSet, any Error>,
onQueryHighlightsFor: @escaping (TextView, NSRange) -> Result<[HighlightRange], any Error>
) -> MockHighlightProvider {
MockHighlightProvider(onSetUp: onSetUp, onApplyEdit: onApplyEdit, onQueryHighlightsFor: onQueryHighlightsFor)
}
}