AIHeaderView.swift 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. //
  2. // AIHeaderView.swift
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by Niehaoyu on 2024/4/17.
  6. //
  7. import Cocoa
  8. class AIHeaderView: NSView, NibLoadable {
  9. @IBOutlet weak var contendView: NSView!
  10. @IBOutlet weak var titleLabel: NSTextField!
  11. @IBOutlet weak var seplineView: NSView!
  12. @IBOutlet weak var myCreditLabel: NSTextField!
  13. var guideWindowVC: KMFunctionGuideWindowController!
  14. override func draw(_ dirtyRect: NSRect) {
  15. super.draw(dirtyRect)
  16. // Drawing code here.
  17. }
  18. override func awakeFromNib() {
  19. super.awakeFromNib()
  20. self.titleLabel.font = NSFont.SFProTextSemiboldFont(14)
  21. self.myCreditLabel.font = NSFont.SFProTextSemiboldFont(11)
  22. self.titleLabel.stringValue = NSLocalizedString("AI Tools Title", comment: "")
  23. self.myCreditLabel.stringValue = NSLocalizedString("My AI Credit", comment: "")
  24. self.seplineView.wantsLayer = true
  25. self.refreshViewColor()
  26. }
  27. func refreshViewColor() {
  28. if KMAppearance.isDarkMode() {
  29. self.titleLabel.textColor = KMAppearance.KMColor_Layout_W0()
  30. self.myCreditLabel.textColor = NSColor.white
  31. self.seplineView.layer?.backgroundColor = NSColor.white.withAlphaComponent(0.1).cgColor
  32. } else {
  33. self.titleLabel.textColor = KMAppearance.KMColor_Layout_M()
  34. self.myCreditLabel.textColor = NSColor.white
  35. self.seplineView.layer?.backgroundColor = NSColor.black.withAlphaComponent(0.05).cgColor
  36. }
  37. }
  38. //MARK: IBAction
  39. @IBAction func creditInfoAction(_ sender: NSButton) {
  40. if AccountManager.manager.hasAiPermissions {
  41. let winC = AccountCenterWindowController()
  42. self.km_beginSheet(windowC: winC)
  43. return
  44. }
  45. if AccountManager.manager.isLogin == false {
  46. let winC = AccountCenterWindowController()
  47. self.km_beginSheet(windowC: winC)
  48. return
  49. }
  50. AIInfoManager.default().fetchAIInfo { dict, error in
  51. }
  52. let controller = AIUserInfoController.init()
  53. controller.purchaseHandle = { vc in
  54. #if VERSION_DMG
  55. // let url = URL(string: AIProduct_Link)
  56. // NSWorkspace.shared.open(url!)
  57. // let embeddedWC = KMPurchaseEmbeddedWindowController.currentFirstTrialWC("com.brother.pdfreaderpro.ai.product_1")
  58. // embeddedWC.showWindow(self)
  59. // embeddedWC.window?.center()
  60. // let singleTon = KMPurchaseCompareDMGWindowController.init()
  61. // singleTon.showWindow(nil)
  62. KMTools.openURL(urlString: AccountManager.manager.aiBuyUrl)
  63. #else
  64. AIPurchaseWindowController.currentWC().showWindow(nil)
  65. #endif
  66. }
  67. controller.enterLicenseHandle = { vc in
  68. let verifyVC = KMVerificationWindowController.verification(with: .activateAIInfo)
  69. verifyVC?.callback = {
  70. KMPurchaseCompareWindowController.sharedInstance().showWindow(nil)
  71. }
  72. verifyVC?.showWindow(nil)
  73. }
  74. controller.guideHandle = {[weak self] vc in
  75. if self?.guideWindowVC == nil {
  76. let guideWindowVC = KMFunctionGuideWindowController.init(windowNibName: "KMFunctionGuideWindowController")
  77. self?.guideWindowVC = guideWindowVC
  78. }
  79. self?.guideWindowVC.type = .functionMulti
  80. self?.guideWindowVC.showWindow(nil)
  81. KMFunctionGuideWindowController.setDidShowFor(.functionMultiAIGuide)
  82. self?.guideWindowVC.window?.orderFront(nil)
  83. }
  84. let popover = NSPopover.init()
  85. popover.contentViewController = controller
  86. popover.behavior = .transient
  87. popover.show(relativeTo: sender.bounds, of: sender, preferredEdge: .minY)
  88. }
  89. }