-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathModelPickerMenuItem.swift
More file actions
296 lines (252 loc) · 10.1 KB
/
ModelPickerMenuItem.swift
File metadata and controls
296 lines (252 loc) · 10.1 KB
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import AppKit
// MARK: - Model Menu Item View
class ModelPickerMenuItem: NSView {
private let fontScale: Double
private let model: LLMModel
private let isSelected: Bool
private let multiplierText: String
private let onSelect: () -> Void
private let onHover: ((LLMModel, NSRect) -> Void)?
private let onHoverExit: (() -> Void)?
private var wasHighlighted = false
private let nameLabel = NSTextField(labelWithString: "")
private let multiplierLabel = NSTextField(labelWithString: "")
private let checkmarkImageView = NSImageView()
private let warningImageView = NSImageView()
private struct LayoutConstants {
let fontScale: Double
var menuHeight: CGFloat { 22 * fontScale }
var checkmarkSize: CGFloat { 13 * fontScale }
var hoverEdgeInset: CGFloat { 5 * fontScale }
var fontSize: CGFloat { 13 * fontScale }
var leadingPadding: CGFloat { 9 * fontScale }
var trailingPadding: CGFloat { 9 * fontScale }
var checkmarkToText: CGFloat { 5 * fontScale }
var nameToMultiplier: CGFloat { 8 * fontScale }
}
private lazy var constants = LayoutConstants(fontScale: fontScale)
init(
model: LLMModel,
isSelected: Bool,
multiplierText: String,
fontScale: Double,
fixedWidth: CGFloat,
onSelect: @escaping () -> Void,
onHover: ((LLMModel, NSRect) -> Void)? = nil,
onHoverExit: (() -> Void)? = nil
) {
self.model = model
self.isSelected = isSelected
self.multiplierText = multiplierText
self.fontScale = fontScale
self.onSelect = onSelect
self.onHover = onHover
self.onHoverExit = onHoverExit
let constants = LayoutConstants(fontScale: fontScale)
super.init(
frame: NSRect(x: 0, y: 0, width: fixedWidth, height: constants.menuHeight)
)
setupView()
}
@available(*, unavailable)
required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
// MARK: - Highlight state (driven by NSMenu)
private var isHighlighted: Bool {
enclosingMenuItem?.isHighlighted ?? false
}
private func setupView() {
wantsLayer = true
layer?.masksToBounds = true
setupCheckmark()
setupWarningIcon()
setupLabels()
}
private func setupCheckmark() {
let config = NSImage.SymbolConfiguration(
pointSize: constants.checkmarkSize,
weight: .medium
)
checkmarkImageView.image = NSImage(
systemSymbolName: "checkmark",
accessibilityDescription: nil
)?.withSymbolConfiguration(config)
checkmarkImageView.contentTintColor = .labelColor
checkmarkImageView.translatesAutoresizingMaskIntoConstraints = false
checkmarkImageView.isHidden = !isSelected || model.degradationReason != nil
addSubview(checkmarkImageView)
NSLayoutConstraint.activate([
checkmarkImageView.leadingAnchor.constraint(
equalTo: leadingAnchor, constant: constants.leadingPadding
),
checkmarkImageView.centerYAnchor.constraint(equalTo: centerYAnchor),
checkmarkImageView.widthAnchor.constraint(
equalToConstant: constants.checkmarkSize
),
checkmarkImageView.heightAnchor.constraint(
equalToConstant: constants.checkmarkSize
),
])
}
private func setupWarningIcon() {
guard model.degradationReason != nil else { return }
let config = NSImage.SymbolConfiguration(
pointSize: constants.checkmarkSize,
weight: .medium
)
warningImageView.image = NSImage(
systemSymbolName: "exclamationmark.triangle",
accessibilityDescription: "Degraded"
)?.withSymbolConfiguration(config)
warningImageView.contentTintColor = .labelColor
warningImageView.translatesAutoresizingMaskIntoConstraints = false
warningImageView.isHidden = false
addSubview(warningImageView)
NSLayoutConstraint.activate([
warningImageView.leadingAnchor.constraint(
equalTo: leadingAnchor, constant: constants.leadingPadding
),
warningImageView.centerYAnchor.constraint(equalTo: centerYAnchor),
warningImageView.widthAnchor.constraint(
equalToConstant: constants.checkmarkSize
),
warningImageView.heightAnchor.constraint(
equalToConstant: constants.checkmarkSize
),
])
}
private func setupLabels() {
let displayName = model.displayName ?? model.modelName
// Name label — left-aligned, truncates tail, fills remaining space
nameLabel.stringValue = displayName
nameLabel.font = NSFont.systemFont(ofSize: constants.fontSize, weight: .regular)
nameLabel.textColor = .labelColor
nameLabel.isEditable = false
nameLabel.isBordered = false
nameLabel.backgroundColor = .clear
nameLabel.drawsBackground = false
nameLabel.lineBreakMode = .byTruncatingTail
nameLabel.translatesAutoresizingMaskIntoConstraints = false
nameLabel.setContentHuggingPriority(.defaultLow, for: .horizontal)
nameLabel.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
addSubview(nameLabel)
// Multiplier label — right-aligned, never truncates
multiplierLabel.stringValue = multiplierText
multiplierLabel.font = NSFont.systemFont(
ofSize: constants.fontSize, weight: .regular
)
multiplierLabel.textColor = .secondaryLabelColor
multiplierLabel.isEditable = false
multiplierLabel.isBordered = false
multiplierLabel.backgroundColor = .clear
multiplierLabel.drawsBackground = false
multiplierLabel.alignment = .right
multiplierLabel.translatesAutoresizingMaskIntoConstraints = false
multiplierLabel.setContentHuggingPriority(.required, for: .horizontal)
multiplierLabel.setContentCompressionResistancePriority(
.required, for: .horizontal
)
multiplierLabel.isHidden = multiplierText.isEmpty
addSubview(multiplierLabel)
let textLeading = checkmarkImageView.trailingAnchor
NSLayoutConstraint.activate([
nameLabel.leadingAnchor.constraint(
equalTo: textLeading, constant: constants.checkmarkToText
),
nameLabel.centerYAnchor.constraint(equalTo: centerYAnchor),
multiplierLabel.trailingAnchor.constraint(
equalTo: trailingAnchor, constant: -constants.trailingPadding
),
multiplierLabel.centerYAnchor.constraint(equalTo: centerYAnchor),
nameLabel.trailingAnchor.constraint(
lessThanOrEqualTo: multiplierLabel.leadingAnchor,
constant: -constants.nameToMultiplier
),
])
}
// MARK: - Mouse handling
override func mouseUp(with _: NSEvent) {
onSelect()
}
// MARK: - Keyboard selection
/// Called by the menu's `performKeyEquivalent` when Return/Enter is pressed
/// while this item is highlighted. Custom-view menu items don't receive
/// the default NSMenu action, so the menu triggers selection explicitly.
func performSelect() {
onSelect()
}
override var acceptsFirstResponder: Bool { true }
override func keyDown(with event: NSEvent) {
let confirmKeyCodes: Set<UInt16> = [
36, // return
76, // enter (numpad)
]
if confirmKeyCodes.contains(event.keyCode) {
onSelect()
} else {
super.keyDown(with: event)
}
}
// MARK: - Drawing (highlight driven by NSMenu)
private func updateColors() {
let highlighted = isHighlighted
if highlighted {
nameLabel.textColor = .white
multiplierLabel.textColor = .white.withAlphaComponent(0.8)
checkmarkImageView.contentTintColor = .white
warningImageView.contentTintColor = .white
} else {
nameLabel.textColor = .labelColor
multiplierLabel.textColor = .secondaryLabelColor
checkmarkImageView.contentTintColor = .labelColor
warningImageView.contentTintColor = .labelColor
}
}
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
let highlighted = isHighlighted
// Trigger detail panel on highlight change
if highlighted != wasHighlighted {
wasHighlighted = highlighted
if highlighted {
if let onHover = onHover {
let screenRect =
window?.convertToScreen(convert(bounds, to: nil)) ?? .zero
onHover(model, screenRect)
}
} else {
onHoverExit?()
}
}
updateColors()
if highlighted {
ModelMenuItemFormatter.drawMenuItemHighlight(
in: frame,
fontScale: fontScale,
hoverEdgeInset: constants.hoverEdgeInset
)
}
}
// MARK: - Width Calculation
static func calculateItemWidth(
model: LLMModel,
multiplierText: String,
fontScale: Double
) -> CGFloat {
let constants = LayoutConstants(fontScale: fontScale)
let font = NSFont.systemFont(ofSize: constants.fontSize, weight: .regular)
let attrs: [NSAttributedString.Key: Any] = [.font: font]
let displayName = model.displayName ?? model.modelName
let nameWidth = (displayName as NSString).size(withAttributes: attrs).width
var width = constants.leadingPadding + constants.checkmarkSize
+ constants.checkmarkToText + ceil(nameWidth) + constants.trailingPadding
if !multiplierText.isEmpty {
let multWidth = ceil(
(multiplierText as NSString).size(withAttributes: attrs).width
)
width += constants.nameToMultiplier + multWidth
}
return width
}
}