7

I'm trying to show a detachable NSPopover by clicking on a button but I'm stuck. I followed tuts how to show NSPopover but they all around Menubar apps.

My AppDelegate looks like this

final class AppDelegate: NSObject, NSApplicationDelegate {
    var popover: NSPopover!
    
    func applicationDidFinishLaunching(_ notification: Notification) {
        let popover = NSPopover()
        let popoverView = PopoverView()
        
        popover.contentSize = NSSize(width: 300, height: 200)
        popover.contentViewController = NSHostingController(rootView: popoverView)
        popover.behavior = .transient
        
        self.popover = popover
    }
    
     func togglePopover(_ sender: AnyObject?) {
        self.popover.show(relativeTo: (sender?.bounds)!, of: sender as! NSView, preferredEdge: NSRectEdge.minY)
    }
}
Roman Banks
  • 319
  • 2
  • 14
  • Does this answer your question https://stackoverflow.com/a/63862691/12299030? – Asperi Aug 07 '21 at 06:39
  • @Asperi Unfortunately not. SwiftUI popover (not NSPopover) can't be [detachable](https://developer.apple.com/documentation/appkit/nspopoverdelegate/1534822-detachablewindow) and there is still no way to override a [close request](https://developer.apple.com/documentation/appkit/nspopoverdelegate/1532593-popovershouldclose) yet. So I assume NSPopover is only way to go – Roman Banks Aug 07 '21 at 10:42

2 Answers2

10

Here is a simple demo of possible approach - wrap control over native NSPopover into background view representable.

Note: next wrapping of background into view modifier or/and making it more configurable is up to you.

Prepared & tested with Xcode 13 / macOS 11.5.1

demo

struct ContentView: View {
    @State private var isVisible = false
    var body: some View {
        Button("Test") {
            isVisible.toggle()
        }
        .background(NSPopoverHolderView(isVisible: $isVisible) {
            Text("I'm in NSPopover")
                .padding()
        })
    }
}

struct NSPopoverHolderView<T: View>: NSViewRepresentable {
    @Binding var isVisible: Bool
    var content: () -> T

    func makeNSView(context: Context) -> NSView {
        NSView()
    }

    func updateNSView(_ nsView: NSView, context: Context) {
        context.coordinator.setVisible(isVisible, in: nsView)
    }

    func makeCoordinator() -> Coordinator {
        Coordinator(state: _isVisible, content: content)
    }

    class Coordinator: NSObject, NSPopoverDelegate {
        private let popover: NSPopover
        private let state: Binding<Bool>

        init<V: View>(state: Binding<Bool>, content: @escaping () -> V) {
            self.popover = NSPopover()
            self.state = state

            super.init()

            popover.delegate = self
            popover.contentViewController = NSHostingController(rootView: content())
            popover.behavior = .transient
        }

        func setVisible(_ isVisible: Bool, in view: NSView) {
            if isVisible {
                popover.show(relativeTo: view.bounds, of: view, preferredEdge: .minY)
            } else {
                popover.close()
            }
        }

        func popoverDidClose(_ notification: Notification) {
            self.state.wrappedValue = false
        }

        func popoverShouldDetach(_ popover: NSPopover) -> Bool {
            true
        }
    }
}
Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
Asperi
  • 228,894
  • 20
  • 464
  • 690
2

Updated Asperi's answer with adding support for content changes

struct PopoverView<T: View>: NSViewRepresentable {
    @Binding private var isVisible: Bool
    private let content: () -> T
    
    init(isVisible: Binding<Bool>, @ViewBuilder content: @escaping () -> T) {
        self._isVisible = isVisible
        self.content = content
    }
    
    func makeNSView(context: Context) -> NSView {
        .init()
    }
    
    func updateNSView(_ nsView: NSView, context: Context) {
        context.coordinator.visibilityDidChange(isVisible, in: nsView)
        context.coordinator.contentDidChange(content: content)
    }
    
    func makeCoordinator() -> Coordinator {
        .init(isVisible: $isVisible)
    }
    
    @MainActor
    final class Coordinator: NSObject, NSPopoverDelegate {
        private let popover: NSPopover = .init()
        private let isVisible: Binding<Bool>
        
        init(isVisible: Binding<Bool>) {
            self.isVisible = isVisible
            super.init()
            
            popover.delegate = self
            popover.behavior = .transient
        }
        
        fileprivate func visibilityDidChange(_ isVisible: Bool, in view: NSView) {
            if isVisible {
                if !popover.isShown {
                    popover.show(relativeTo: view.bounds, of: view, preferredEdge: .maxX)
                }
            } else {
                if popover.isShown {
                    popover.close()
                }
            }
        }
        
        fileprivate func contentDidChange<T: View>(@ViewBuilder content: () -> T) {
            popover.contentViewController = NSHostingController(rootView: content())
        }
        
        func popoverDidClose(_ notification: Notification) {
            isVisible.wrappedValue = false
        }
    }
}
Jinwoo Kim
  • 440
  • 4
  • 7