Toast.swift 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. //
  2. // Toast.swift
  3. // Toast-Swift
  4. //
  5. // Copyright (c) 2015-2019 Charles Scalesse.
  6. //
  7. // Permission is hereby granted, free of charge, to any person obtaining a
  8. // copy of this software and associated documentation files (the
  9. // "Software"), to deal in the Software without restriction, including
  10. // without limitation the rights to use, copy, modify, merge, publish,
  11. // distribute, sublicense, and/or sell copies of the Software, and to
  12. // permit persons to whom the Software is furnished to do so, subject to
  13. // the following conditions:
  14. //
  15. // The above copyright notice and this permission notice shall be included
  16. // in all copies or substantial portions of the Software.
  17. //
  18. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  19. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  21. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  22. // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  23. // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  24. // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. import UIKit
  26. import ObjectiveC
  27. /**
  28. Toast is a Swift extension that adds toast notifications to the `UIView` object class.
  29. It is intended to be simple, lightweight, and easy to use. Most toast notifications
  30. can be triggered with a single line of code.
  31. The `makeToast` methods create a new view and then display it as toast.
  32. The `showToast` methods display any view as toast.
  33. */
  34. public extension UIView {
  35. /**
  36. Keys used for associated objects.
  37. */
  38. private struct ToastKeys {
  39. static var timer = "com.toast-swift.timer"
  40. static var duration = "com.toast-swift.duration"
  41. static var point = "com.toast-swift.point"
  42. static var completion = "com.toast-swift.completion"
  43. static var activeToasts = "com.toast-swift.activeToasts"
  44. static var activityView = "com.toast-swift.activityView"
  45. static var queue = "com.toast-swift.queue"
  46. }
  47. /**
  48. Swift closures can't be directly associated with objects via the
  49. Objective-C runtime, so the (ugly) solution is to wrap them in a
  50. class that can be used with associated objects.
  51. */
  52. private class ToastCompletionWrapper {
  53. let completion: ((Bool) -> Void)?
  54. init(_ completion: ((Bool) -> Void)?) {
  55. self.completion = completion
  56. }
  57. }
  58. private enum ToastError: Error {
  59. case missingParameters
  60. }
  61. private var activeToasts: NSMutableArray {
  62. get {
  63. if let activeToasts = objc_getAssociatedObject(self, &ToastKeys.activeToasts) as? NSMutableArray {
  64. return activeToasts
  65. } else {
  66. let activeToasts = NSMutableArray()
  67. objc_setAssociatedObject(self, &ToastKeys.activeToasts, activeToasts, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
  68. return activeToasts
  69. }
  70. }
  71. }
  72. private var queue: NSMutableArray {
  73. get {
  74. if let queue = objc_getAssociatedObject(self, &ToastKeys.queue) as? NSMutableArray {
  75. return queue
  76. } else {
  77. let queue = NSMutableArray()
  78. objc_setAssociatedObject(self, &ToastKeys.queue, queue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
  79. return queue
  80. }
  81. }
  82. }
  83. // MARK: - Make Toast Methods
  84. /**
  85. Creates and presents a new toast view.
  86. @param message The message to be displayed
  87. @param duration The toast duration
  88. @param position The toast's position
  89. @param title The title
  90. @param image The image
  91. @param style The style. The shared style will be used when nil
  92. @param completion The completion closure, executed after the toast view disappears.
  93. didTap will be `true` if the toast view was dismissed from a tap.
  94. */
  95. func makeToast(_ message: String?, duration: TimeInterval = ToastManager.shared.duration, position: ToastPosition = ToastManager.shared.position, title: String? = nil, image: UIImage? = nil, style: ToastStyle = ToastManager.shared.style, completion: ((_ didTap: Bool) -> Void)? = nil) {
  96. do {
  97. let toast = try toastViewForMessage(message, title: title, image: image, style: style)
  98. showToast(toast, duration: duration, position: position, completion: completion)
  99. } catch ToastError.missingParameters {
  100. print("Error: message, title, and image are all nil")
  101. } catch {}
  102. }
  103. /**
  104. Creates a new toast view and presents it at a given center point.
  105. @param message The message to be displayed
  106. @param duration The toast duration
  107. @param point The toast's center point
  108. @param title The title
  109. @param image The image
  110. @param style The style. The shared style will be used when nil
  111. @param completion The completion closure, executed after the toast view disappears.
  112. didTap will be `true` if the toast view was dismissed from a tap.
  113. */
  114. func makeToast(_ message: String?, duration: TimeInterval = ToastManager.shared.duration, point: CGPoint, title: String?, image: UIImage?, style: ToastStyle = ToastManager.shared.style, completion: ((_ didTap: Bool) -> Void)?) {
  115. do {
  116. let toast = try toastViewForMessage(message, title: title, image: image, style: style)
  117. showToast(toast, duration: duration, point: point, completion: completion)
  118. } catch ToastError.missingParameters {
  119. print("Error: message, title, and image cannot all be nil")
  120. } catch {}
  121. }
  122. // MARK: - Show Toast Methods
  123. /**
  124. Displays any view as toast at a provided position and duration. The completion closure
  125. executes when the toast view completes. `didTap` will be `true` if the toast view was
  126. dismissed from a tap.
  127. @param toast The view to be displayed as toast
  128. @param duration The notification duration
  129. @param position The toast's position
  130. @param completion The completion block, executed after the toast view disappears.
  131. didTap will be `true` if the toast view was dismissed from a tap.
  132. */
  133. func showToast(_ toast: UIView, duration: TimeInterval = ToastManager.shared.duration, position: ToastPosition = ToastManager.shared.position, completion: ((_ didTap: Bool) -> Void)? = nil) {
  134. let point = position.centerPoint(forToast: toast, inSuperview: self)
  135. showToast(toast, duration: duration, point: point, completion: completion)
  136. }
  137. /**
  138. Displays any view as toast at a provided center point and duration. The completion closure
  139. executes when the toast view completes. `didTap` will be `true` if the toast view was
  140. dismissed from a tap.
  141. @param toast The view to be displayed as toast
  142. @param duration The notification duration
  143. @param point The toast's center point
  144. @param completion The completion block, executed after the toast view disappears.
  145. didTap will be `true` if the toast view was dismissed from a tap.
  146. */
  147. func showToast(_ toast: UIView, duration: TimeInterval = ToastManager.shared.duration, point: CGPoint, completion: ((_ didTap: Bool) -> Void)? = nil) {
  148. objc_setAssociatedObject(toast, &ToastKeys.completion, ToastCompletionWrapper(completion), .OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  149. if ToastManager.shared.isQueueEnabled, activeToasts.count > 0 {
  150. objc_setAssociatedObject(toast, &ToastKeys.duration, NSNumber(value: duration), .OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  151. objc_setAssociatedObject(toast, &ToastKeys.point, NSValue(cgPoint: point), .OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  152. queue.add(toast)
  153. } else {
  154. showToast(toast, duration: duration, point: point)
  155. }
  156. }
  157. // MARK: - Hide Toast Methods
  158. /**
  159. Hides the active toast. If there are multiple toasts active in a view, this method
  160. hides the oldest toast (the first of the toasts to have been presented).
  161. @see `hideAllToasts()` to remove all active toasts from a view.
  162. @warning This method has no effect on activity toasts. Use `hideToastActivity` to
  163. hide activity toasts.
  164. */
  165. func hideToast() {
  166. guard let activeToast = activeToasts.firstObject as? UIView else { return }
  167. hideToast(activeToast)
  168. }
  169. /**
  170. Hides an active toast.
  171. @param toast The active toast view to dismiss. Any toast that is currently being displayed
  172. on the screen is considered active.
  173. @warning this does not clear a toast view that is currently waiting in the queue.
  174. */
  175. func hideToast(_ toast: UIView) {
  176. guard activeToasts.contains(toast) else { return }
  177. hideToast(toast, fromTap: false)
  178. }
  179. /**
  180. Hides all toast views.
  181. @param includeActivity If `true`, toast activity will also be hidden. Default is `false`.
  182. @param clearQueue If `true`, removes all toast views from the queue. Default is `true`.
  183. */
  184. func hideAllToasts(includeActivity: Bool = false, clearQueue: Bool = true) {
  185. if clearQueue {
  186. clearToastQueue()
  187. }
  188. activeToasts.compactMap { $0 as? UIView }
  189. .forEach { hideToast($0) }
  190. if includeActivity {
  191. hideToastActivity()
  192. }
  193. }
  194. /**
  195. Removes all toast views from the queue. This has no effect on toast views that are
  196. active. Use `hideAllToasts(clearQueue:)` to hide the active toasts views and clear
  197. the queue.
  198. */
  199. func clearToastQueue() {
  200. queue.removeAllObjects()
  201. }
  202. // MARK: - Activity Methods
  203. /**
  204. Creates and displays a new toast activity indicator view at a specified position.
  205. @warning Only one toast activity indicator view can be presented per superview. Subsequent
  206. calls to `makeToastActivity(position:)` will be ignored until `hideToastActivity()` is called.
  207. @warning `makeToastActivity(position:)` works independently of the `showToast` methods. Toast
  208. activity views can be presented and dismissed while toast views are being displayed.
  209. `makeToastActivity(position:)` has no effect on the queueing behavior of the `showToast` methods.
  210. @param position The toast's position
  211. */
  212. func makeToastActivity(_ position: ToastPosition) {
  213. // sanity
  214. guard objc_getAssociatedObject(self, &ToastKeys.activityView) as? UIView == nil else { return }
  215. let toast = createToastActivityView()
  216. let point = position.centerPoint(forToast: toast, inSuperview: self)
  217. makeToastActivity(toast, point: point)
  218. }
  219. /**
  220. Creates and displays a new toast activity indicator view at a specified position.
  221. @warning Only one toast activity indicator view can be presented per superview. Subsequent
  222. calls to `makeToastActivity(position:)` will be ignored until `hideToastActivity()` is called.
  223. @warning `makeToastActivity(position:)` works independently of the `showToast` methods. Toast
  224. activity views can be presented and dismissed while toast views are being displayed.
  225. `makeToastActivity(position:)` has no effect on the queueing behavior of the `showToast` methods.
  226. @param point The toast's center point
  227. */
  228. func makeToastActivity(_ point: CGPoint) {
  229. // sanity
  230. guard objc_getAssociatedObject(self, &ToastKeys.activityView) as? UIView == nil else { return }
  231. let toast = createToastActivityView()
  232. makeToastActivity(toast, point: point)
  233. }
  234. /**
  235. Dismisses the active toast activity indicator view.
  236. */
  237. func hideToastActivity() {
  238. if let toast = objc_getAssociatedObject(self, &ToastKeys.activityView) as? UIView {
  239. UIView.animate(withDuration: ToastManager.shared.style.fadeDuration, delay: 0.0, options: [.curveEaseIn, .beginFromCurrentState], animations: {
  240. toast.alpha = 0.0
  241. }) { _ in
  242. toast.removeFromSuperview()
  243. objc_setAssociatedObject(self, &ToastKeys.activityView, nil, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
  244. }
  245. }
  246. }
  247. // MARK: - Private Activity Methods
  248. private func makeToastActivity(_ toast: UIView, point: CGPoint) {
  249. toast.alpha = 0.0
  250. toast.center = point
  251. objc_setAssociatedObject(self, &ToastKeys.activityView, toast, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
  252. self.addSubview(toast)
  253. UIView.animate(withDuration: ToastManager.shared.style.fadeDuration, delay: 0.0, options: .curveEaseOut, animations: {
  254. toast.alpha = 1.0
  255. })
  256. }
  257. private func createToastActivityView() -> UIView {
  258. let style = ToastManager.shared.style
  259. let activityView = UIView(frame: CGRect(x: 0.0, y: 0.0, width: style.activitySize.width, height: style.activitySize.height))
  260. activityView.backgroundColor = style.activityBackgroundColor
  261. activityView.autoresizingMask = [.flexibleLeftMargin, .flexibleRightMargin, .flexibleTopMargin, .flexibleBottomMargin]
  262. activityView.layer.cornerRadius = style.cornerRadius
  263. if style.displayShadow {
  264. activityView.layer.shadowColor = style.shadowColor.cgColor
  265. activityView.layer.shadowOpacity = style.shadowOpacity
  266. activityView.layer.shadowRadius = style.shadowRadius
  267. activityView.layer.shadowOffset = style.shadowOffset
  268. }
  269. let activityIndicatorView = UIActivityIndicatorView(style: .whiteLarge)
  270. activityIndicatorView.center = CGPoint(x: activityView.bounds.size.width / 2.0, y: activityView.bounds.size.height / 2.0)
  271. activityView.addSubview(activityIndicatorView)
  272. activityIndicatorView.color = style.activityIndicatorColor
  273. activityIndicatorView.startAnimating()
  274. return activityView
  275. }
  276. // MARK: - Private Show/Hide Methods
  277. private func showToast(_ toast: UIView, duration: TimeInterval, point: CGPoint) {
  278. toast.center = point
  279. toast.alpha = 0.0
  280. if ToastManager.shared.isTapToDismissEnabled {
  281. let recognizer = UITapGestureRecognizer(target: self, action: #selector(UIView.handleToastTapped(_:)))
  282. toast.addGestureRecognizer(recognizer)
  283. toast.isUserInteractionEnabled = true
  284. toast.isExclusiveTouch = true
  285. }
  286. activeToasts.add(toast)
  287. self.addSubview(toast)
  288. UIView.animate(withDuration: ToastManager.shared.style.fadeDuration, delay: 0.0, options: [.curveEaseOut, .allowUserInteraction], animations: {
  289. toast.alpha = 1.0
  290. }) { _ in
  291. let timer = Timer(timeInterval: duration, target: self, selector: #selector(UIView.toastTimerDidFinish(_:)), userInfo: toast, repeats: false)
  292. RunLoop.main.add(timer, forMode: .common)
  293. objc_setAssociatedObject(toast, &ToastKeys.timer, timer, .OBJC_ASSOCIATION_RETAIN_NONATOMIC)
  294. }
  295. }
  296. private func hideToast(_ toast: UIView, fromTap: Bool) {
  297. if let timer = objc_getAssociatedObject(toast, &ToastKeys.timer) as? Timer {
  298. timer.invalidate()
  299. }
  300. UIView.animate(withDuration: ToastManager.shared.style.fadeDuration, delay: 0.0, options: [.curveEaseIn, .beginFromCurrentState], animations: {
  301. toast.alpha = 0.0
  302. }) { _ in
  303. toast.removeFromSuperview()
  304. self.activeToasts.remove(toast)
  305. if let wrapper = objc_getAssociatedObject(toast, &ToastKeys.completion) as? ToastCompletionWrapper, let completion = wrapper.completion {
  306. completion(fromTap)
  307. }
  308. if let nextToast = self.queue.firstObject as? UIView, let duration = objc_getAssociatedObject(nextToast, &ToastKeys.duration) as? NSNumber, let point = objc_getAssociatedObject(nextToast, &ToastKeys.point) as? NSValue {
  309. self.queue.removeObject(at: 0)
  310. self.showToast(nextToast, duration: duration.doubleValue, point: point.cgPointValue)
  311. }
  312. }
  313. }
  314. // MARK: - Events
  315. @objc
  316. private func handleToastTapped(_ recognizer: UITapGestureRecognizer) {
  317. guard let toast = recognizer.view else { return }
  318. hideToast(toast, fromTap: true)
  319. }
  320. @objc
  321. private func toastTimerDidFinish(_ timer: Timer) {
  322. guard let toast = timer.userInfo as? UIView else { return }
  323. hideToast(toast)
  324. }
  325. // MARK: - Toast Construction
  326. /**
  327. Creates a new toast view with any combination of message, title, and image.
  328. The look and feel is configured via the style. Unlike the `makeToast` methods,
  329. this method does not present the toast view automatically. One of the `showToast`
  330. methods must be used to present the resulting view.
  331. @warning if message, title, and image are all nil, this method will throw
  332. `ToastError.missingParameters`
  333. @param message The message to be displayed
  334. @param title The title
  335. @param image The image
  336. @param style The style. The shared style will be used when nil
  337. @throws `ToastError.missingParameters` when message, title, and image are all nil
  338. @return The newly created toast view
  339. */
  340. func toastViewForMessage(_ message: String?, title: String?, image: UIImage?, style: ToastStyle) throws -> UIView {
  341. // sanity
  342. guard message != nil || title != nil || image != nil else {
  343. throw ToastError.missingParameters
  344. }
  345. var messageLabel: UILabel?
  346. var titleLabel: UILabel?
  347. var imageView: UIImageView?
  348. let wrapperView = UIView()
  349. wrapperView.backgroundColor = style.backgroundColor
  350. wrapperView.autoresizingMask = [.flexibleLeftMargin, .flexibleRightMargin, .flexibleTopMargin, .flexibleBottomMargin]
  351. wrapperView.layer.cornerRadius = style.cornerRadius
  352. if style.displayShadow {
  353. wrapperView.layer.shadowColor = UIColor.black.cgColor
  354. wrapperView.layer.shadowOpacity = style.shadowOpacity
  355. wrapperView.layer.shadowRadius = style.shadowRadius
  356. wrapperView.layer.shadowOffset = style.shadowOffset
  357. }
  358. if let image = image {
  359. imageView = UIImageView(image: image)
  360. imageView?.contentMode = .scaleAspectFit
  361. imageView?.frame = CGRect(x: style.horizontalPadding, y: style.verticalPadding, width: style.imageSize.width, height: style.imageSize.height)
  362. }
  363. var imageRect = CGRect.zero
  364. if let imageView = imageView {
  365. imageRect.origin.x = style.horizontalPadding
  366. imageRect.origin.y = style.verticalPadding
  367. imageRect.size.width = imageView.bounds.size.width
  368. imageRect.size.height = imageView.bounds.size.height
  369. }
  370. if let title = title {
  371. titleLabel = UILabel()
  372. titleLabel?.numberOfLines = style.titleNumberOfLines
  373. titleLabel?.font = style.titleFont
  374. titleLabel?.textAlignment = style.titleAlignment
  375. titleLabel?.lineBreakMode = .byTruncatingTail
  376. titleLabel?.textColor = style.titleColor
  377. titleLabel?.backgroundColor = UIColor.clear
  378. titleLabel?.text = title;
  379. let maxTitleSize = CGSize(width: (self.bounds.size.width * style.maxWidthPercentage) - imageRect.size.width, height: self.bounds.size.height * style.maxHeightPercentage)
  380. let titleSize = titleLabel?.sizeThatFits(maxTitleSize)
  381. if let titleSize = titleSize {
  382. titleLabel?.frame = CGRect(x: 0.0, y: 0.0, width: titleSize.width, height: titleSize.height)
  383. }
  384. }
  385. if let message = message {
  386. messageLabel = UILabel()
  387. messageLabel?.text = message
  388. messageLabel?.numberOfLines = style.messageNumberOfLines
  389. messageLabel?.font = style.messageFont
  390. messageLabel?.textAlignment = style.messageAlignment
  391. messageLabel?.lineBreakMode = .byTruncatingTail;
  392. messageLabel?.textColor = style.messageColor
  393. messageLabel?.backgroundColor = UIColor.clear
  394. let maxMessageSize = CGSize(width: (self.bounds.size.width * style.maxWidthPercentage) - imageRect.size.width, height: self.bounds.size.height * style.maxHeightPercentage)
  395. let messageSize = messageLabel?.sizeThatFits(maxMessageSize)
  396. if let messageSize = messageSize {
  397. let actualWidth = min(messageSize.width, maxMessageSize.width)
  398. let actualHeight = min(messageSize.height, maxMessageSize.height)
  399. messageLabel?.frame = CGRect(x: 0.0, y: 0.0, width: actualWidth, height: actualHeight)
  400. }
  401. }
  402. var titleRect = CGRect.zero
  403. if let titleLabel = titleLabel {
  404. titleRect.origin.x = imageRect.origin.x + imageRect.size.width + style.horizontalPadding
  405. titleRect.origin.y = style.verticalPadding
  406. titleRect.size.width = titleLabel.bounds.size.width
  407. titleRect.size.height = titleLabel.bounds.size.height
  408. }
  409. var messageRect = CGRect.zero
  410. if let messageLabel = messageLabel {
  411. messageRect.origin.x = imageRect.origin.x + imageRect.size.width + style.horizontalPadding
  412. messageRect.origin.y = titleRect.origin.y + titleRect.size.height + style.verticalPadding
  413. messageRect.size.width = messageLabel.bounds.size.width
  414. messageRect.size.height = messageLabel.bounds.size.height
  415. }
  416. let longerWidth = max(titleRect.size.width, messageRect.size.width)
  417. let longerX = max(titleRect.origin.x, messageRect.origin.x)
  418. let wrapperWidth = max((imageRect.size.width + (style.horizontalPadding * 2.0)), (longerX + longerWidth + style.horizontalPadding))
  419. let wrapperHeight = max((messageRect.origin.y + messageRect.size.height + style.verticalPadding), (imageRect.size.height + (style.verticalPadding * 2.0)))
  420. wrapperView.frame = CGRect(x: 0.0, y: 0.0, width: wrapperWidth, height: wrapperHeight)
  421. if let titleLabel = titleLabel {
  422. titleRect.size.width = longerWidth
  423. titleLabel.frame = titleRect
  424. wrapperView.addSubview(titleLabel)
  425. }
  426. if let messageLabel = messageLabel {
  427. messageRect.size.width = longerWidth
  428. messageLabel.frame = messageRect
  429. wrapperView.addSubview(messageLabel)
  430. }
  431. if let imageView = imageView {
  432. wrapperView.addSubview(imageView)
  433. }
  434. return wrapperView
  435. }
  436. }
  437. // MARK: - Toast Style
  438. /**
  439. `ToastStyle` instances define the look and feel for toast views created via the
  440. `makeToast` methods as well for toast views created directly with
  441. `toastViewForMessage(message:title:image:style:)`.
  442. @warning `ToastStyle` offers relatively simple styling options for the default
  443. toast view. If you require a toast view with more complex UI, it probably makes more
  444. sense to create your own custom UIView subclass and present it with the `showToast`
  445. methods.
  446. */
  447. public struct ToastStyle {
  448. public init() {}
  449. /**
  450. The background color. Default is `.black` at 80% opacity.
  451. */
  452. public var backgroundColor: UIColor = UIColor.black.withAlphaComponent(0.8)
  453. /**
  454. The title color. Default is `UIColor.whiteColor()`.
  455. */
  456. public var titleColor: UIColor = .white
  457. /**
  458. The message color. Default is `.white`.
  459. */
  460. public var messageColor: UIColor = .white
  461. /**
  462. A percentage value from 0.0 to 1.0, representing the maximum width of the toast
  463. view relative to it's superview. Default is 0.8 (80% of the superview's width).
  464. */
  465. public var maxWidthPercentage: CGFloat = 0.8 {
  466. didSet {
  467. maxWidthPercentage = max(min(maxWidthPercentage, 1.0), 0.0)
  468. }
  469. }
  470. /**
  471. A percentage value from 0.0 to 1.0, representing the maximum height of the toast
  472. view relative to it's superview. Default is 0.8 (80% of the superview's height).
  473. */
  474. public var maxHeightPercentage: CGFloat = 0.8 {
  475. didSet {
  476. maxHeightPercentage = max(min(maxHeightPercentage, 1.0), 0.0)
  477. }
  478. }
  479. /**
  480. The spacing from the horizontal edge of the toast view to the content. When an image
  481. is present, this is also used as the padding between the image and the text.
  482. Default is 10.0.
  483. */
  484. public var horizontalPadding: CGFloat = 10.0
  485. /**
  486. The spacing from the vertical edge of the toast view to the content. When a title
  487. is present, this is also used as the padding between the title and the message.
  488. Default is 10.0. On iOS11+, this value is added added to the `safeAreaInset.top`
  489. and `safeAreaInsets.bottom`.
  490. */
  491. public var verticalPadding: CGFloat = 10.0
  492. /**
  493. The corner radius. Default is 10.0.
  494. */
  495. public var cornerRadius: CGFloat = 10.0;
  496. /**
  497. The title font. Default is `.boldSystemFont(16.0)`.
  498. */
  499. public var titleFont: UIFont = .boldSystemFont(ofSize: 16.0)
  500. /**
  501. The message font. Default is `.systemFont(ofSize: 16.0)`.
  502. */
  503. public var messageFont: UIFont = .systemFont(ofSize: 16.0)
  504. /**
  505. The title text alignment. Default is `NSTextAlignment.Left`.
  506. */
  507. public var titleAlignment: NSTextAlignment = .left
  508. /**
  509. The message text alignment. Default is `NSTextAlignment.Left`.
  510. */
  511. public var messageAlignment: NSTextAlignment = .left
  512. /**
  513. The maximum number of lines for the title. The default is 0 (no limit).
  514. */
  515. public var titleNumberOfLines = 0
  516. /**
  517. The maximum number of lines for the message. The default is 0 (no limit).
  518. */
  519. public var messageNumberOfLines = 0
  520. /**
  521. Enable or disable a shadow on the toast view. Default is `false`.
  522. */
  523. public var displayShadow = false
  524. /**
  525. The shadow color. Default is `.black`.
  526. */
  527. public var shadowColor: UIColor = .black
  528. /**
  529. A value from 0.0 to 1.0, representing the opacity of the shadow.
  530. Default is 0.8 (80% opacity).
  531. */
  532. public var shadowOpacity: Float = 0.8 {
  533. didSet {
  534. shadowOpacity = max(min(shadowOpacity, 1.0), 0.0)
  535. }
  536. }
  537. /**
  538. The shadow radius. Default is 6.0.
  539. */
  540. public var shadowRadius: CGFloat = 6.0
  541. /**
  542. The shadow offset. The default is 4 x 4.
  543. */
  544. public var shadowOffset = CGSize(width: 4.0, height: 4.0)
  545. /**
  546. The image size. The default is 80 x 80.
  547. */
  548. public var imageSize = CGSize(width: 80.0, height: 80.0)
  549. /**
  550. The size of the toast activity view when `makeToastActivity(position:)` is called.
  551. Default is 100 x 100.
  552. */
  553. public var activitySize = CGSize(width: 100.0, height: 100.0)
  554. /**
  555. The fade in/out animation duration. Default is 0.2.
  556. */
  557. public var fadeDuration: TimeInterval = 0.2
  558. /**
  559. Activity indicator color. Default is `.white`.
  560. */
  561. public var activityIndicatorColor: UIColor = .white
  562. /**
  563. Activity background color. Default is `.black` at 80% opacity.
  564. */
  565. public var activityBackgroundColor: UIColor = UIColor.black.withAlphaComponent(0.8)
  566. }
  567. // MARK: - Toast Manager
  568. /**
  569. `ToastManager` provides general configuration options for all toast
  570. notifications. Backed by a singleton instance.
  571. */
  572. public class ToastManager {
  573. /**
  574. The `ToastManager` singleton instance.
  575. */
  576. public static let shared = ToastManager()
  577. /**
  578. The shared style. Used whenever toastViewForMessage(message:title:image:style:) is called
  579. with with a nil style.
  580. */
  581. public var style = ToastStyle()
  582. /**
  583. Enables or disables tap to dismiss on toast views. Default is `true`.
  584. */
  585. public var isTapToDismissEnabled = true
  586. /**
  587. Enables or disables queueing behavior for toast views. When `true`,
  588. toast views will appear one after the other. When `false`, multiple toast
  589. views will appear at the same time (potentially overlapping depending
  590. on their positions). This has no effect on the toast activity view,
  591. which operates independently of normal toast views. Default is `false`.
  592. */
  593. public var isQueueEnabled = false
  594. /**
  595. The default duration. Used for the `makeToast` and
  596. `showToast` methods that don't require an explicit duration.
  597. Default is 3.0.
  598. */
  599. public var duration: TimeInterval = 3.0
  600. /**
  601. Sets the default position. Used for the `makeToast` and
  602. `showToast` methods that don't require an explicit position.
  603. Default is `ToastPosition.Bottom`.
  604. */
  605. public var position: ToastPosition = .bottom
  606. }
  607. // MARK: - ToastPosition
  608. public enum ToastPosition {
  609. case top
  610. case center
  611. case bottom
  612. fileprivate func centerPoint(forToast toast: UIView, inSuperview superview: UIView) -> CGPoint {
  613. let topPadding: CGFloat = ToastManager.shared.style.verticalPadding + superview.csSafeAreaInsets.top
  614. let bottomPadding: CGFloat = ToastManager.shared.style.verticalPadding + superview.csSafeAreaInsets.bottom
  615. switch self {
  616. case .top:
  617. return CGPoint(x: superview.bounds.size.width / 2.0, y: (toast.frame.size.height / 2.0) + topPadding)
  618. case .center:
  619. return CGPoint(x: superview.bounds.size.width / 2.0, y: superview.bounds.size.height / 2.0)
  620. case .bottom:
  621. return CGPoint(x: superview.bounds.size.width / 2.0, y: (superview.bounds.size.height - (toast.frame.size.height / 2.0)) - bottomPadding)
  622. }
  623. }
  624. }
  625. // MARK: - Private UIView Extensions
  626. private extension UIView {
  627. var csSafeAreaInsets: UIEdgeInsets {
  628. if #available(iOS 11.0, *) {
  629. return self.safeAreaInsets
  630. } else {
  631. return .zero
  632. }
  633. }
  634. }