KMHomePopViewController.swift 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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 = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.hov")
  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. func initWithPopViewDataArr(_ popViewDataArr: [String]) -> Self {
  44. // self.dataArr = popViewDataArr.reverseObjectEnumerator().allObjects as NSArray
  45. self.dataArr = popViewDataArr.reversed()
  46. return self
  47. }
  48. override func viewDidLoad() {
  49. super.viewDidLoad()
  50. customBox.fillColor = background//NSColor.km_init(hex: "#FFFFFF")
  51. // self.updateUI()
  52. }
  53. override func viewDidAppear() {
  54. super.viewDidAppear()
  55. self.updateUI()
  56. }
  57. // MARK: Private
  58. func updateUI() {
  59. customBox.fillColor = background
  60. var widthMax: Float = 0;
  61. let subViews: [NSView] = self.customBox.contentView!.subviews
  62. for subView in subViews {
  63. subView.removeFromSuperview()
  64. }
  65. for string in self.dataArr ?? [] {
  66. if !(string as AnyObject).isEqual(to: KMHorizontalLine) {
  67. let width = self.cellContentAdaptiveWidth(string)
  68. if widthMax < width {
  69. widthMax = width
  70. }
  71. }
  72. }
  73. var formTopFloat: Float = 4.0
  74. // for i in (0..<dataArr!.count).reversed() {
  75. for string in dataArr?.reversed() ?? [] {
  76. if (string as AnyObject).isEqual(to: KMHorizontalLine) {
  77. self.createHonrizontalLineWithFrame(CGRect(x: 12.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+23, height: 11))
  78. formTopFloat += 11
  79. } else {
  80. popCellViewDownString = string
  81. // self.createPopViewCellLabelWithFrame(CGRect(x: 4.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+47, height: 32), stringValue: string)
  82. createPopViewCellLabelWithFrame(formTopFloat, stringValue: string)
  83. formTopFloat += 32;
  84. }
  85. }
  86. customBoxWidthLayoutConstraint.constant = CGFloat(widthMax+47)
  87. customBoxHeightLayoutConstraint.constant = CGFloat(formTopFloat+4.0)
  88. }
  89. func createHonrizontalLineWithFrame(_ frame: CGRect) {
  90. let box: NSBox = NSBox.init(frame: frame)
  91. box.boxType = .custom
  92. box.borderWidth = 0.0
  93. box.contentViewMargins = NSMakeSize(0, 0)
  94. customBox.contentView?.addSubview(box)
  95. let lineBox = NSBox.init(frame: CGRect(x: 0, y: 6, width: frame.width, height: 1))
  96. lineBox.boxType = .separator
  97. box.addSubview(lineBox)
  98. }
  99. // func createPopViewCellLabelWithFrame(_ frame: CGRect, stringValue: String) {
  100. // let box: KMBox = KMBox(frame: frame)
  101. // box.boxType = .custom
  102. // box.borderWidth = 0.0
  103. // box.contentViewMargins = NSMakeSize(0, 0)
  104. // customBox.contentView?.addSubview(box)
  105. //
  106. // let boxLabel: NSTextField = NSTextField.init()
  107. // boxLabel.isEditable = false
  108. // boxLabel.isBordered = false
  109. // boxLabel.stringValue = stringValue
  110. // boxLabel.font = NSFont.systemFont(ofSize: 14.0)
  111. // boxLabel.translatesAutoresizingMaskIntoConstraints = false
  112. // boxLabel.backgroundColor = NSColor.clear
  113. // boxLabel.textColor = NSColor.labelColor
  114. // box.contentView?.addSubview(boxLabel)
  115. //
  116. // box.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|-21-[boxLabel]-21-|", metrics: nil, views:["boxLabel": boxLabel]))
  117. // box.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|-1-[boxLabel]-1-|", metrics: nil, views:["boxLabel": boxLabel]))
  118. //
  119. // box.contentView?.addConstraint(NSLayoutConstraint(item: boxLabel, attribute:.centerY , relatedBy: .equal, toItem: box.contentView, attribute: .centerY, multiplier: 1, constant: 0))
  120. // box.moveCallback = {(mouseEntered: Bool, mouseBox: KMBox) -> Void in
  121. // if mouseEntered {
  122. // if #available(macOS 10.14, *) {
  123. // box.fillColor = NSColor.controlAccentColor
  124. // boxLabel.textColor = NSColor.white
  125. // } else {
  126. // box.fillColor = NSColor.init(red: 71/255.0, green: 126/255.0, blue: 222/255.0, alpha: 1.0)
  127. // boxLabel.textColor = NSColor.white
  128. // }
  129. // } else {
  130. // box.fillColor = NSColor.clear
  131. // boxLabel.textColor = NSColor.labelColor
  132. // }
  133. // }
  134. // box.downCallback = {(downEntered: Bool, mouseBox: KMBox) -> Void in
  135. // if downEntered {
  136. // if let callback = self.downCallback {
  137. // callback(true, stringValue)
  138. // }
  139. // }
  140. // }
  141. // }
  142. func createPopViewCellLabelWithFrame(_ mas_top: Float, stringValue: String) {
  143. var isDisabled = false
  144. if disItems.contains(stringValue) {
  145. isDisabled = true
  146. }
  147. var isSelected = false
  148. if (isDisabled == false && self.selectedItems.contains(stringValue)) {
  149. isSelected = true
  150. }
  151. let box: KMBox = KMBox(frame: NSZeroRect)
  152. box.boxType = .custom
  153. box.borderWidth = 0.0
  154. box.contentViewMargins = NSMakeSize(0, 0)
  155. box.cornerRadius = 4.0
  156. customBox.contentView?.addSubview(box)
  157. box.mas_makeConstraints { (make) in
  158. make?.left.equalTo()(4.0)
  159. make?.right.equalTo()(-4.0)
  160. make?.height.equalTo()(32.0)
  161. make?.top.equalTo()(customBox.mas_top)?.offset()(CGFloat(mas_top))
  162. }
  163. // let dropdownVC = KMDesignDropdown.init(nibName: "KMDesignDropdown", bundle: nil)
  164. // box.contentView = dropdownVC.view
  165. // dropdownVC.dropdown(bg: "dropdown.m.bg.norm", text: "dropdown.m.mac-text.def")
  166. // dropdownVC.dropdown(bg: "dropdown.m.bg.hov", text: "dropdown.m.mac-text.def", state: .Hov)
  167. // dropdownVC.dropdown(bg: "dropdown.m.bg.sel", text: "dropdown.m.mac-text.sel", state: .Sel)
  168. // dropdownVC.dropdown(bg: "dropdown.m.bg.dis", text: "dropdown.m.mac-text.dis", state: .Disabled)
  169. // dropdownVC.stringValue = str
  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?.left.equalTo()(8.0)
  182. }
  183. let textTypography = KMDesignToken.shared.typography(withToken: "dropdown.m.mac-text.def")
  184. var fontFamily: String = textTypography.fontFamily
  185. let fontWeight: String = textTypography.fontWeight
  186. if fontFamily.contains(" ") {
  187. fontFamily = fontFamily.replacingOccurrences(of: " ", with: "")
  188. }
  189. if fontWeight != "" {
  190. fontFamily = String(format: "%@-%@", fontFamily, fontWeight)
  191. }
  192. boxLabel.font = NSFont(name: fontFamily, size: textTypography.fontSize.stringToCGFloat()) ?? NSFont.systemFont(ofSize: textTypography.fontSize.stringToCGFloat())
  193. let paragraphStyle = NSMutableParagraphStyle()
  194. paragraphStyle.lineSpacing = textTypography.lineHeight.stringToCGFloat()
  195. boxLabel.attributedStringValue = NSAttributedString(string: stringValue, attributes: [NSAttributedString.Key.paragraphStyle: paragraphStyle])
  196. box.moveCallback = {(mouseEntered: Bool, mouseBox: KMBox) -> Void in
  197. if !isDisabled {
  198. if isSelected { // 选中没有 hover 效果
  199. return
  200. }
  201. if mouseEntered {
  202. mouseBox.fillColor = self.enterFillColor
  203. } else {
  204. mouseBox.fillColor = NSColor.clear
  205. }
  206. }
  207. }
  208. box.downCallback = {(downEntered, mouseBox, event) -> Void in
  209. if !isDisabled {
  210. if downEntered {
  211. mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.sel")
  212. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.sel")
  213. if let callback = self.downCallback {
  214. callback(true, stringValue)
  215. }
  216. } else {
  217. mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.norm")
  218. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.def")
  219. }
  220. }
  221. }
  222. if isDisabled {
  223. box.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.dis")
  224. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.dis")
  225. } else if (isSelected) {
  226. box.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.sel")
  227. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.sel")
  228. }
  229. let idx = self.dataArr?.index(of: stringValue) ?? 0
  230. self.viewWillShow?(box, idx)
  231. }
  232. func cellContentAdaptiveWidth(_ content: String) -> Float {
  233. if content.isEmpty {
  234. return 0
  235. }
  236. let attributes = [NSAttributedString.Key.font : NSFont.systemFont(ofSize: 14.0)]
  237. let rect : CGRect = content.boundingRect(with: CGSize(width: 0, height: 18),options: .usesLineFragmentOrigin, attributes: attributes,context:nil)
  238. return Float(rect.size.width)
  239. }
  240. func changePopViewCellData(_ count: Int, content: String) {
  241. let boxArray: Array<NSView> = customBox.contentView!.subviews
  242. for subView in boxArray {
  243. subView.removeFromSuperview()
  244. }
  245. var dataMutableArr: [String] = Array((dataArr?.reversed())!)
  246. dataMutableArr[count] = content
  247. dataArr = Array(dataMutableArr.reversed())
  248. self.updateUI()
  249. }
  250. // MARK: - Init Views
  251. fileprivate func initBoxLabel() -> NSTextField {
  252. let label = NSTextField.init()
  253. label.isEditable = false
  254. label.isBordered = false
  255. label.font = NSFont.systemFont(ofSize: 14.0)
  256. label.translatesAutoresizingMaskIntoConstraints = false
  257. label.backgroundColor = NSColor.clear
  258. label.textColor = NSColor.km_init(hex: "#252629")
  259. return label
  260. }
  261. }
  262. class KMScrollPopViewController: KMHomePopViewController {
  263. private var scrollView = NSScrollView()
  264. private var contentView = NSView()
  265. private var currentItemPosition: NSPoint = .zero
  266. convenience init() {
  267. self.init(nibName: "KMHomePopViewController", bundle: nil)
  268. }
  269. override func viewDidLoad() {
  270. super.viewDidLoad()
  271. self.view.addSubview(self.scrollView)
  272. self.scrollView.documentView = self.contentView
  273. self.scrollView.documentView?.backgroundColor(NSColor.km_init(hex: "#FFFFFF"))
  274. // customBox.fillColor = NSColor.km_init(hex: "#FFFFFF")
  275. }
  276. override func viewDidAppear() {
  277. super.viewDidAppear()
  278. DispatchQueue.main.async {
  279. let contentView = self.scrollView.contentView
  280. let pageH = NSHeight(self.scrollView.bounds)
  281. // KMPrint(NSHeight(self.contentView.bounds))
  282. // KMPrint(pageH)
  283. // KMPrint(self.currentItemPosition)
  284. var numberPages: Int = 0
  285. var currentPage: Int = 0
  286. var scrollY: CGFloat = 0
  287. if (pageH > 0) {
  288. numberPages = Int(NSHeight(self.contentView.bounds) / pageH) + 1
  289. currentPage = Int((self.currentItemPosition.y + 32 + 4 * 2) / pageH)
  290. // KMPrint(numberPages)
  291. // KMPrint(currentPage)
  292. // let _currentPage = numberPages - currentPage - 1
  293. // KMPrint(_currentPage)
  294. if (currentPage == (numberPages - 1)) {
  295. scrollY = 0
  296. } else {
  297. scrollY = NSHeight(self.contentView.bounds) - pageH * CGFloat(currentPage+1)
  298. }
  299. }
  300. // KMPrint(scrollY)
  301. contentView.scroll(to: NSPoint(x: 0, y: scrollY))
  302. }
  303. }
  304. override func viewDidLayout() {
  305. super.viewDidLayout()
  306. self.scrollView.frame = NSMakeRect(0, 0, NSWidth(self.view.frame), NSHeight(self.view.window!.frame))
  307. self.contentView.frame = NSMakeRect(0, 0, NSWidth(self.customBox.frame), NSHeight(self.customBox.frame)+30)
  308. // self.contentView.frame = self.customBox.bounds
  309. }
  310. override func updateUI() {
  311. var widthMax: Float = 0
  312. for subView in self.contentView.subviews {
  313. subView.removeFromSuperview()
  314. }
  315. for string in self.dataArr ?? [] {
  316. if ((string as AnyObject).isEqual(to: KMHorizontalLine)) {
  317. continue
  318. }
  319. let width = self.cellContentAdaptiveWidth(string)
  320. if (widthMax < width) {
  321. widthMax = width
  322. }
  323. }
  324. var formTopFloat: Float = 4.0
  325. for string in dataArr?.reversed() ?? [] {
  326. if (string as AnyObject).isEqual(to: KMHorizontalLine) {
  327. self.createHonrizontalLineWithFrame(CGRect(x: 12.0, y: CGFloat(formTopFloat), width: CGFloat(widthMax)+23, height: 11))
  328. formTopFloat += 11
  329. } else {
  330. self.popCellViewDownString = string
  331. self.createPopViewCellLabelWithFrame(formTopFloat, stringValue: string)
  332. formTopFloat += 32
  333. }
  334. }
  335. self.customBoxWidthLayoutConstraint.constant = CGFloat(widthMax+47)
  336. self.customBoxHeightLayoutConstraint.constant = CGFloat(formTopFloat+4.0)
  337. }
  338. override func createHonrizontalLineWithFrame(_ frame: CGRect) {
  339. let box: NSBox = NSBox.init(frame: frame)
  340. box.boxType = .custom
  341. box.borderWidth = 0.0
  342. box.contentViewMargins = NSMakeSize(0, 0)
  343. self.contentView.addSubview(box)
  344. let lineBox = NSBox.init(frame: CGRect(x: 0, y: 6, width: frame.width, height: 1))
  345. lineBox.boxType = .separator
  346. box.addSubview(lineBox)
  347. }
  348. override func createPopViewCellLabelWithFrame(_ mas_top: Float, stringValue: String) {
  349. var isDisabled = false
  350. if (self.disItems.contains(stringValue)) {
  351. isDisabled = true
  352. }
  353. var isSelected = false
  354. if (isDisabled == false && self.selectedItems.contains(stringValue)) {
  355. isSelected = true
  356. }
  357. if (isSelected && self.selectedItems.first == stringValue) {
  358. self.currentItemPosition = NSPoint(x: 0, y: Int(mas_top))
  359. }
  360. let box: KMBox = KMBox(frame: NSZeroRect)
  361. box.boxType = .custom
  362. box.borderWidth = 0.0
  363. box.contentViewMargins = NSMakeSize(0, 0)
  364. box.cornerRadius = 4.0
  365. self.contentView.addSubview(box)
  366. box.mas_makeConstraints { (make) in
  367. make?.left.equalTo()(4.0)
  368. make?.right.equalTo()(-4.0)
  369. make?.height.equalTo()(32.0)
  370. make?.top.equalTo()(self.customBox.mas_top)?.offset()(CGFloat(mas_top))
  371. }
  372. let boxLabel = self.initBoxLabel()
  373. boxLabel.stringValue = stringValue
  374. box.contentView?.addSubview(boxLabel)
  375. boxLabel.mas_makeConstraints { (make) in
  376. make?.centerY.equalTo()(0.0)
  377. make?.left.equalTo()(8.0)
  378. }
  379. let textTypography = KMDesignToken.shared.typography(withToken: "dropdown.m.mac-text.def")
  380. var fontFamily: String = textTypography.fontFamily
  381. let fontWeight: String = textTypography.fontWeight
  382. if (fontFamily.contains(" ")) {
  383. fontFamily = fontFamily.replacingOccurrences(of: " ", with: "")
  384. }
  385. if (fontWeight != "") {
  386. fontFamily = String(format: "%@-%@", fontFamily, fontWeight)
  387. }
  388. if NSFont(name: stringValue, size: 12) != nil {
  389. fontFamily = stringValue
  390. } else {
  391. debugPrint("不支持字体" + stringValue)
  392. }
  393. boxLabel.font = NSFont(name: fontFamily, size: textTypography.fontSize.stringToCGFloat()) ?? NSFont.systemFont(ofSize: textTypography.fontSize.stringToCGFloat())
  394. let paragraphStyle = NSMutableParagraphStyle()
  395. paragraphStyle.lineSpacing = textTypography.lineHeight.stringToCGFloat()
  396. boxLabel.attributedStringValue = NSAttributedString(string: stringValue, attributes: [NSAttributedString.Key.paragraphStyle: paragraphStyle])
  397. if (isDisabled) {
  398. box.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.dis")
  399. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.dis")
  400. } else if (isSelected) {
  401. box.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.sel")
  402. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.sel")
  403. }
  404. box.moveCallback = { mouseEntered, mouseBox in
  405. if (isDisabled) {
  406. return
  407. }
  408. if (isSelected) { // 选中没有 hover 效果
  409. return
  410. }
  411. if (mouseEntered) {
  412. mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.hov")
  413. } else {
  414. mouseBox.fillColor = NSColor.clear
  415. }
  416. }
  417. box.downCallback = { [unowned self] downEntered, mouseBox, _ in
  418. if (isDisabled) {
  419. return
  420. }
  421. if (downEntered) {
  422. mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.sel")
  423. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.sel")
  424. guard let callback = self.downCallback else {
  425. return
  426. }
  427. callback(true, stringValue)
  428. } else {
  429. mouseBox.fillColor = KMDesignToken.shared.fill(withToken: "dropdown.m.bg.norm")
  430. boxLabel.textColor = KMDesignToken.shared.fill(withToken: "dropdown.m.mac-text.def")
  431. }
  432. }
  433. let idx = self.dataArr?.index(of: stringValue) ?? 0
  434. self.viewWillShow?(box, idx)
  435. }
  436. }