142 lines
5.6 KiB
Swift
142 lines
5.6 KiB
Swift
import AppKit
|
|
import QuartzCore
|
|
import SwiftUI
|
|
|
|
extension VoiceWakeOverlayController {
|
|
func present() {
|
|
if !self.enableUI || ProcessInfo.processInfo.isRunningTests {
|
|
if !self.model.isVisible {
|
|
self.model.isVisible = true
|
|
}
|
|
return
|
|
}
|
|
self.ensureWindow()
|
|
self.hostingView?.rootView = VoiceWakeOverlayView(controller: self)
|
|
let target = self.targetFrame()
|
|
|
|
guard let window else { return }
|
|
if !self.model.isVisible {
|
|
self.model.isVisible = true
|
|
self.logger.log(
|
|
level: .info,
|
|
"overlay present windowShown textLen=\(self.model.text.count, privacy: .public)")
|
|
// Keep the status item in “listening” mode until we explicitly dismiss the overlay.
|
|
AppStateStore.shared.triggerVoiceEars(ttl: nil)
|
|
let start = target.offsetBy(dx: 0, dy: -6)
|
|
window.setFrame(start, display: true)
|
|
window.alphaValue = 0
|
|
window.orderFrontRegardless()
|
|
NSAnimationContext.runAnimationGroup { context in
|
|
context.duration = 0.18
|
|
context.timingFunction = CAMediaTimingFunction(name: .easeOut)
|
|
window.animator().setFrame(target, display: true)
|
|
window.animator().alphaValue = 1
|
|
}
|
|
} else {
|
|
self.updateWindowFrame(animate: true)
|
|
window.orderFrontRegardless()
|
|
}
|
|
}
|
|
|
|
private func ensureWindow() {
|
|
if self.window != nil { return }
|
|
let borderPad = self.closeOverflow
|
|
let panel = NSPanel(
|
|
contentRect: NSRect(x: 0, y: 0, width: self.width + borderPad * 2, height: 60 + borderPad * 2),
|
|
styleMask: [.nonactivatingPanel, .borderless],
|
|
backing: .buffered,
|
|
defer: false)
|
|
panel.isOpaque = false
|
|
panel.backgroundColor = .clear
|
|
panel.hasShadow = false
|
|
panel.level = Self.preferredWindowLevel
|
|
panel.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary, .transient]
|
|
panel.hidesOnDeactivate = false
|
|
panel.isMovable = false
|
|
panel.isFloatingPanel = true
|
|
panel.becomesKeyOnlyIfNeeded = true
|
|
panel.titleVisibility = .hidden
|
|
panel.titlebarAppearsTransparent = true
|
|
|
|
let host = NSHostingView(rootView: VoiceWakeOverlayView(controller: self))
|
|
host.translatesAutoresizingMaskIntoConstraints = false
|
|
panel.contentView = host
|
|
self.hostingView = host
|
|
self.window = panel
|
|
}
|
|
|
|
/// Reassert window ordering when other panels are shown.
|
|
func bringToFrontIfVisible() {
|
|
guard self.model.isVisible, let window = self.window else { return }
|
|
window.level = Self.preferredWindowLevel
|
|
window.orderFrontRegardless()
|
|
}
|
|
|
|
func targetFrame() -> NSRect {
|
|
guard let screen = NSScreen.main else { return .zero }
|
|
let height = self.measuredHeight()
|
|
let size = NSSize(width: self.width + self.closeOverflow * 2, height: height + self.closeOverflow * 2)
|
|
let visible = screen.visibleFrame
|
|
let origin = CGPoint(
|
|
x: visible.maxX - size.width,
|
|
y: visible.maxY - size.height)
|
|
return NSRect(origin: origin, size: size)
|
|
}
|
|
|
|
func updateWindowFrame(animate: Bool = false) {
|
|
guard let window else { return }
|
|
let frame = self.targetFrame()
|
|
if animate {
|
|
NSAnimationContext.runAnimationGroup { context in
|
|
context.duration = 0.12
|
|
context.timingFunction = CAMediaTimingFunction(name: .easeOut)
|
|
window.animator().setFrame(frame, display: true)
|
|
}
|
|
} else {
|
|
window.setFrame(frame, display: true)
|
|
}
|
|
}
|
|
|
|
func measuredHeight() -> CGFloat {
|
|
let attributed = self.model.attributed.length > 0 ? self.model.attributed : self
|
|
.makeAttributed(from: self.model.text)
|
|
let maxWidth = self.width - (self.padding * 2) - self.spacing - self.buttonWidth
|
|
|
|
let textInset = NSSize(width: 2, height: 6)
|
|
let lineFragmentPadding: CGFloat = 0
|
|
let containerWidth = max(1, maxWidth - (textInset.width * 2) - (lineFragmentPadding * 2))
|
|
|
|
let storage = NSTextStorage(attributedString: attributed)
|
|
let container = NSTextContainer(containerSize: CGSize(width: containerWidth, height: .greatestFiniteMagnitude))
|
|
container.lineFragmentPadding = lineFragmentPadding
|
|
container.lineBreakMode = .byWordWrapping
|
|
|
|
let layout = NSLayoutManager()
|
|
layout.addTextContainer(container)
|
|
storage.addLayoutManager(layout)
|
|
|
|
_ = layout.glyphRange(for: container)
|
|
let used = layout.usedRect(for: container)
|
|
|
|
let contentHeight = ceil(used.height + (textInset.height * 2))
|
|
let total = contentHeight + self.verticalPadding * 2
|
|
self.model.isOverflowing = total > self.maxHeight
|
|
return max(self.minHeight, min(total, self.maxHeight))
|
|
}
|
|
|
|
func dismissTargetFrame(for frame: NSRect, reason: DismissReason, outcome: SendOutcome) -> NSRect? {
|
|
switch (reason, outcome) {
|
|
case (.empty, _):
|
|
let scale: CGFloat = 0.95
|
|
let newSize = NSSize(width: frame.size.width * scale, height: frame.size.height * scale)
|
|
let dx = (frame.size.width - newSize.width) / 2
|
|
let dy = (frame.size.height - newSize.height) / 2
|
|
return NSRect(x: frame.origin.x + dx, y: frame.origin.y + dy, width: newSize.width, height: newSize.height)
|
|
case (.explicit, .sent):
|
|
return frame.offsetBy(dx: 8, dy: 6)
|
|
default:
|
|
return frame
|
|
}
|
|
}
|
|
}
|