KMHomePopViewController.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. //
  2. // KMHomePopViewController.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by wanjun on 2022/10/17.
  6. //
  7. import Cocoa
  8. typealias popCellViewDownCallback = (_ downEntered: Bool, _ count: String) -> Void
  9. typealias popCellViewWillShow = (_ cellView: KMBox, _ index: Int) -> Void
  10. @objcMembers class KMHomePopViewController: NSViewController {
  11. @IBOutlet weak var customBox: NSBox!
  12. @IBOutlet weak var customBoxWidthLayoutConstraint: NSLayoutConstraint!
  13. @IBOutlet weak var customBoxHeightLayoutConstraint: NSLayoutConstraint!
  14. var downCallback: popCellViewDownCallback?
  15. var viewWillShow: popCellViewWillShow?
  16. var popCellViewDownString: String?
  17. var popCellCount: Int?
  18. var dataArr: [String]?
  19. var KMHorizontalLine: String = "KMHorizontalLine"
  20. var enterFillColor : NSColor = .black
  21. var textColor : NSColor = .black // 背景颜色
  22. var background : NSColor = .white // 背景颜色
  23. var background_hov : NSColor = .clear // 背景颜色
  24. var background_sel : NSColor = .clear // 背景颜色
  25. var background_disabled : NSColor = .clear // 背景颜色
  26. var cornerRadius : Float = 0.0 // 边框圆角
  27. var cornerRadius_hov : Float = 0.0 // 边框圆角
  28. var cornerRadius_sel : Float = 0.0 // 边框圆角
  29. var cornerRadius_disabled : Float = 0.0 // 边框圆角
  30. var lineHeight : CGFloat = 20.0 // 默认 内容行高
  31. var lineHeight_hov : CGFloat = 20.0 // 默认 内容行高
  32. var lineHeight_sel : CGFloat = 20.0 // 默认 内容行高
  33. var lineHeight_disabled : CGFloat = 20.0 // 默认 内容行高
  34. var font : NSFont = NSFont.systemFont(ofSize: 14.0) // 内容字体
  35. var font_hov : NSFont = NSFont.systemFont(ofSize: 14.0) // 内容字体
  36. var font_sel : NSFont = NSFont.systemFont(ofSize: 14.0) // 内容字体
  37. var font_disabled : NSFont = NSFont.systemFont(ofSize: 14.0) // 内容字体
  38. var _state: KMDesignTokenState = .Norm
  39. var enabled: Bool = true // 是否可点击
  40. var canHover: Bool = true // 是否可悬浮
  41. var disItems: [String] = []
  42. var selectedItems: [String] = []
  43. var showVerticalScroller: Bool = false
  44. func initWithPopViewDataArr(_ popViewDataArr: [String]) -> Self {
  45. // self.dataArr = popViewDataArr.reverseObjectEnumerator().allObjects as NSArray
  46. self.dataArr = popViewDataArr.reversed()
  47. return self
  48. }
  49. override func viewDidLoad() {
  50. super.viewDidLoad()
  51. customBox.fillColor = background//NSColor.km_init(hex: "#FFFFFF")
  52. // self.updateUI()
  53. }
  54. override func viewDidAppear() {
  55. super.viewDidAppear()
  56. self.updateUI()
  57. }
  58. // MARK: Private
  59. func updateUI() {
  60. customBox.fillColor = background
  61. var widthMax: Float = 0;
  62. let subViews: [NSView] = self.customBox.contentView!.subviews
  63. for subView in subViews {
  64. subView.removeFromSuperview()
  65. }
  66. for string in self.dataArr ?? [] {
  67. if !(string as AnyObject).isEqual(to: KMHorizontalLine) {
  68. let width = self.cellContentAdaptiveWidth(string)
  69. if widthMax < width {
  70. widthMax = width
  71. }
  72. }
  73. }
  74. var formTopFloat: Float = 4.0
  75. // for i in (0..<dataArr!.count).reversed() {
  76. for string in dataArr?.reversed() ?? [] {
  77. if (string as AnyObject).isEqual(to: KMHorizontalLine) {
  78. self.createHonrizontalLineWithFrame(CGRect(x: 12.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+23, height: 11))
  79. formTopFloat += 11
  80. } else {
  81. popCellViewDownString = string
  82. // self.createPopViewCellLabelWithFrame(CGRect(x: 4.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+47, height: 32), stringValue: string)
  83. createPopViewCellLabelWithFrame(formTopFloat, stringValue: string)
  84. formTopFloat += 32;
  85. }
  86. }
  87. customBoxWidthLayoutConstraint.constant = CGFloat(widthMax+47)
  88. customBoxHeightLayoutConstraint.constant = CGFloat(formTopFloat+4.0)
  89. }
  90. func createHonrizontalLineWithFrame(_ frame: CGRect) {
  91. let box: NSBox = NSBox.init(frame: frame)
  92. box.boxType = .custom
  93. box.borderWidth = 0.0
  94. box.contentViewMargins = NSMakeSize(0, 0)
  95. customBox.contentView?.addSubview(box)
  96. box.mas_makeConstraints { (make) in
  97. make?.leading.equalTo()(frame.origin.x)
  98. make?.trailing.equalTo()(-frame.origin.x)
  99. make?.height.equalTo()(frame.size.height)
  100. make?.top.equalTo()(customBox.mas_top)?.offset()(CGFloat(frame.origin.y))
  101. }
  102. let lineBox = NSBox.init(frame: CGRect(x: 0, y: 6, width: frame.width, height: 1))
  103. lineBox.boxType = .separator
  104. box.addSubview(lineBox)
  105. }
  106. // func createPopViewCellLabelWithFrame(_ frame: CGRect, stringValue: String) {
  107. // let box: KMBox = KMBox(frame: frame)
  108. // box.boxType = .custom
  109. // box.borderWidth = 0.0
  110. // box.contentViewMargins = NSMakeSize(0, 0)
  111. // customBox.contentView?.addSubview(box)
  112. //
  113. // let boxLabel: NSTextField = NSTextField.init()
  114. // boxLabel.isEditable = false
  115. // boxLabel.isBordered = false
  116. // boxLabel.stringValue = stringValue
  117. // boxLabel.font = NSFont.systemFont(ofSize: 14.0)
  118. // boxLabel.translatesAutoresizingMaskIntoConstraints = false
  119. // boxLabel.backgroundColor = NSColor.clear
  120. // boxLabel.textColor = NSColor.labelColor
  121. // box.contentView?.addSubview(boxLabel)
  122. //
  123. // box.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-21-[boxLabel]-21-|", metrics: nil, views:["boxLabel": boxLabel]))
  124. // box.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-1-[boxLabel]-1-|", metrics: nil, views:["boxLabel": boxLabel]))
  125. //
  126. // box.contentView?.addConstraint(NSLayoutConstraint(item: boxLabel, attribute:.centerY , relatedBy: .equal, toItem: box.contentView, attribute: .centerY, multiplier: 1, constant: 0))
  127. // box.moveCallback = {(mouseEntered: Bool, mouseBox: KMBox) -> Void in
  128. // if mouseEntered {
  129. // if #available(macOS 10.14, *) {
  130. // box.fillColor = NSColor.controlAccentColor
  131. // boxLabel.textColor = NSColor.white
  132. // } else {
  133. // box.fillColor = NSColor.init(red: 71/255.0, green: 126/255.0, blue: 222/255.0, alpha: 1.0)
  134. // boxLabel.textColor = NSColor.white
  135. // }
  136. // } else {
  137. // box.fillColor = NSColor.clear
  138. // boxLabel.textColor = NSColor.labelColor
  139. // }
  140. // }
  141. // box.downCallback = {(downEntered: Bool, mouseBox: KMBox) -> Void in
  142. // if downEntered {
  143. // if let callback = self.downCallback {
  144. // callback(true, stringValue)
  145. // }
  146. // }
  147. // }
  148. // }
  149. func createPopViewCellLabelWithFrame(_ mas_top: Float, stringValue: String) {
  150. var isDisabled = false
  151. if disItems.contains(stringValue) {
  152. isDisabled = true
  153. }
  154. var isSelected = false
  155. if (isDisabled == false && self.selectedItems.contains(stringValue)) {
  156. isSelected = true
  157. }
  158. let box: KMBox = KMBox(frame: NSZeroRect)
  159. box.boxType = .custom
  160. box.borderWidth = 0.0
  161. box.contentViewMargins = NSMakeSize(0, 0)
  162. box.cornerRadius = 4.0
  163. customBox.contentView?.addSubview(box)
  164. box.mas_makeConstraints { (make) in
  165. make?.leading.equalTo()(4.0)
  166. make?.trailing.equalTo()(-4.0)
  167. make?.height.equalTo()(32.0)
  168. make?.top.equalTo()(customBox.mas_top)?.offset()(CGFloat(mas_top))
  169. }
  170. let boxLabel: NSTextField = NSTextField.init()
  171. boxLabel.isEditable = false
  172. boxLabel.isBordered = false
  173. boxLabel.stringValue = stringValue
  174. boxLabel.font = NSFont.systemFont(ofSize: 14.0)
  175. boxLabel.translatesAutoresizingMaskIntoConstraints = false
  176. boxLabel.backgroundColor = NSColor.clear
  177. boxLabel.textColor = textColor//NSColor.km_init(hex: "#252629")
  178. box.contentView?.addSubview(boxLabel)
  179. boxLabel.mas_makeConstraints { (make) in
  180. make?.centerY.equalTo()(0.0)
  181. make?.leading.equalTo()(8.0)
  182. }
  183. let idx = self.dataArr?.index(of: stringValue) ?? 0
  184. self.viewWillShow?(box, idx)
  185. }
  186. func cellContentAdaptiveWidth(_ content: String) -> Float {
  187. if content.isEmpty {
  188. return 0
  189. }
  190. let attributes = [NSAttributedString.Key.font : NSFont.systemFont(ofSize: 14.0)]
  191. let rect : CGRect = content.boundingRect(with: CGSize(width: 0, height: 18),options: .usesLineFragmentOrigin, attributes: attributes,context:nil)
  192. return Float(rect.size.width)
  193. }
  194. func changePopViewCellData(_ count: Int, content: String) {
  195. let boxArray: Array<NSView> = customBox.contentView!.subviews
  196. for subView in boxArray {
  197. subView.removeFromSuperview()
  198. }
  199. var dataMutableArr: [String] = Array((dataArr?.reversed())!)
  200. dataMutableArr[count] = content
  201. dataArr = Array(dataMutableArr.reversed())
  202. self.updateUI()
  203. }
  204. // MARK: - Init Views
  205. fileprivate func initBoxLabel() -> NSTextField {
  206. let label = NSTextField.init()
  207. label.isEditable = false
  208. label.isBordered = false
  209. label.font = NSFont.systemFont(ofSize: 14.0)
  210. label.translatesAutoresizingMaskIntoConstraints = false
  211. label.backgroundColor = NSColor.clear
  212. label.textColor = NSColor.km_init(hex: "#252629")
  213. return label
  214. }
  215. }
  216. class KMScrollPopViewController: KMHomePopViewController {
  217. private var scrollView = NSScrollView()
  218. private var contentView = NSView()
  219. private var currentItemPosition: NSPoint = .zero
  220. convenience init() {
  221. self.init(nibName: "KMHomePopViewController", bundle: nil)
  222. }
  223. override func viewDidLoad() {
  224. super.viewDidLoad()
  225. self.view.addSubview(self.scrollView)
  226. self.scrollView.documentView = self.contentView
  227. // self.scrollView.documentView?.backgroundColor(NSColor.km_init(hex: "#FFFFFF"))
  228. // customBox.fillColor = NSColor.km_init(hex: "#FFFFFF")
  229. self.scrollView.documentView?.backgroundColor(self.background)
  230. self.scrollView.hasVerticalScroller = self.showVerticalScroller
  231. self.scrollView.borderType = .noBorder
  232. self.scrollView.drawsBackground = false
  233. }
  234. override func viewDidAppear() {
  235. super.viewDidAppear()
  236. DispatchQueue.main.async {
  237. let contentView = self.scrollView.contentView
  238. let pageH = NSHeight(self.scrollView.bounds)
  239. // KMPrint(NSHeight(self.contentView.bounds))
  240. // KMPrint(pageH)
  241. // KMPrint(self.currentItemPosition)
  242. var numberPages: Int = 0
  243. var currentPage: Int = 0
  244. var scrollY: CGFloat = 0
  245. if (pageH > 0) {
  246. numberPages = Int(NSHeight(self.contentView.bounds) / pageH) + 1
  247. currentPage = Int((self.currentItemPosition.y + 32 + 4 * 2) / pageH)
  248. // KMPrint(numberPages)
  249. // KMPrint(currentPage)
  250. // let _currentPage = numberPages - currentPage - 1
  251. // KMPrint(_currentPage)
  252. if (currentPage == (numberPages - 1)) {
  253. scrollY = 0
  254. } else {
  255. scrollY = NSHeight(self.contentView.bounds) - pageH * CGFloat(currentPage+1)
  256. }
  257. }
  258. // KMPrint(scrollY)
  259. contentView.scroll(to: NSPoint(x: 0, y: scrollY))
  260. }
  261. }
  262. override func viewDidLayout() {
  263. super.viewDidLayout()
  264. self.scrollView.frame = NSMakeRect(0, 0, NSWidth(self.view.frame), NSHeight(self.view.window!.frame))
  265. self.contentView.frame = NSMakeRect(0, 0, NSWidth(self.customBox.frame), NSHeight(self.customBox.frame)+30)
  266. // self.contentView.frame = self.customBox.bounds
  267. }
  268. override func updateUI() {
  269. super.updateUI()
  270. customBox.fillColor = background
  271. var widthMax: Float = 0
  272. for subView in self.contentView.subviews {
  273. subView.removeFromSuperview()
  274. }
  275. for string in self.dataArr ?? [] {
  276. if ((string as AnyObject).isEqual(to: KMHorizontalLine)) {
  277. continue
  278. }
  279. let width = self.cellContentAdaptiveWidth(string)
  280. if (widthMax < width) {
  281. widthMax = width
  282. }
  283. }
  284. var formTopFloat: Float = 4.0
  285. for string in dataArr?.reversed() ?? [] {
  286. if (string as AnyObject).isEqual(to: KMHorizontalLine) {
  287. self.createHonrizontalLineWithFrame(CGRect(x: 12.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+23, height: 11))
  288. formTopFloat += 11
  289. } else {
  290. self.popCellViewDownString = string
  291. self.createPopViewCellLabelWithFrame(formTopFloat, stringValue: string)
  292. formTopFloat += 32
  293. }
  294. }
  295. self.customBoxWidthLayoutConstraint.constant = CGFloat(widthMax+47)
  296. self.customBoxHeightLayoutConstraint.constant = CGFloat(formTopFloat+4.0)
  297. }
  298. override func createHonrizontalLineWithFrame(_ frame: CGRect) {
  299. let box: NSBox = NSBox.init(frame: frame)
  300. box.boxType = .custom
  301. box.borderWidth = 0.0
  302. box.contentViewMargins = NSMakeSize(0, 0)
  303. self.contentView.addSubview(box)
  304. let lineBox = NSBox.init(frame: CGRect(x: 0, y: 6, width: frame.width, height: 1))
  305. lineBox.boxType = .separator
  306. box.addSubview(lineBox)
  307. }
  308. override func createPopViewCellLabelWithFrame(_ mas_top: Float, stringValue: String) {
  309. var isDisabled = false
  310. if (self.disItems.contains(stringValue)) {
  311. isDisabled = true
  312. }
  313. var isSelected = false
  314. if (isDisabled == false && self.selectedItems.contains(stringValue)) {
  315. isSelected = true
  316. }
  317. if (isSelected && self.selectedItems.first == stringValue) {
  318. self.currentItemPosition = NSPoint(x: 0, y: Int(mas_top))
  319. }
  320. let box: KMBox = KMBox(frame: NSZeroRect)
  321. box.boxType = .custom
  322. box.borderWidth = 0.0
  323. box.contentViewMargins = NSMakeSize(0, 0)
  324. box.cornerRadius = 4.0
  325. self.contentView.addSubview(box)
  326. box.mas_makeConstraints { (make) in
  327. make?.leading.equalTo()(4.0)
  328. make?.trailing.equalTo()(-4.0)
  329. make?.height.equalTo()(32.0)
  330. make?.top.equalTo()(self.customBox.mas_top)?.offset()(CGFloat(mas_top))
  331. }
  332. let boxLabel = self.initBoxLabel()
  333. boxLabel.stringValue = stringValue
  334. box.contentView?.addSubview(boxLabel)
  335. boxLabel.mas_makeConstraints { (make) in
  336. make?.centerY.equalTo()(0.0)
  337. make?.leading.equalTo()(8.0)
  338. make?.trailing.mas_equalTo()(0)
  339. }
  340. box.moveCallback = { mouseEntered, mouseBox in
  341. if (isDisabled) {
  342. return
  343. }
  344. if (isSelected) { // 选中没有 hover 效果
  345. return
  346. }
  347. // if (mouseEntered) {
  348. // mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.hov")
  349. // } else {
  350. // mouseBox.fillColor = NSColor.clear
  351. // }
  352. if mouseEntered {
  353. mouseBox.fillColor = self.enterFillColor
  354. } else {
  355. mouseBox.fillColor = NSColor.clear
  356. }
  357. }
  358. box.downCallback = { [unowned self] downEntered, mouseBox, _ in
  359. if (isDisabled) {
  360. return
  361. }
  362. }
  363. let idx = self.dataArr?.index(of: stringValue) ?? 0
  364. self.viewWillShow?(box, idx)
  365. }
  366. }