mirror of
https://github.com/MessageKit/MessageKit.git
synced 2026-02-06 19:03:19 +00:00
MessageContainerView.swift added
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
B09643901F289142004D0129 /* UIColor+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B096438F1F289142004D0129 /* UIColor+Extensions.swift */; };
|
||||
B0AA1F511F42E91A00BAE583 /* AvatarPosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0AA1F501F42E91A00BAE583 /* AvatarPosition.swift */; };
|
||||
B0AA1F531F44388C00BAE583 /* NSAttributedString+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0AA1F521F44388900BAE583 /* NSAttributedString+Extensions.swift */; };
|
||||
E8586DB51F59A1C300C9BE9D /* MessageContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8586DB41F59A1C300C9BE9D /* MessageContainerView.swift */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
@@ -91,6 +92,7 @@
|
||||
B096438F1F289142004D0129 /* UIColor+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIColor+Extensions.swift"; sourceTree = "<group>"; };
|
||||
B0AA1F501F42E91A00BAE583 /* AvatarPosition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AvatarPosition.swift; sourceTree = "<group>"; };
|
||||
B0AA1F521F44388900BAE583 /* NSAttributedString+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSAttributedString+Extensions.swift"; sourceTree = "<group>"; };
|
||||
E8586DB41F59A1C300C9BE9D /* MessageContainerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageContainerView.swift; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
@@ -199,6 +201,7 @@
|
||||
B074EE921F35587100ABB8C8 /* MessageHeaderView.swift */,
|
||||
B074EE941F35588A00ABB8C8 /* MessageFooterView.swift */,
|
||||
B074EEA71F3971A600ABB8C8 /* MessageLabel.swift */,
|
||||
E8586DB41F59A1C300C9BE9D /* MessageContainerView.swift */,
|
||||
);
|
||||
name = Views;
|
||||
sourceTree = "<group>";
|
||||
@@ -373,6 +376,7 @@
|
||||
B074EE971F355FBC00ABB8C8 /* MessagesLayoutDelegate.swift in Sources */,
|
||||
882D75841DE507320033F95F /* MessagesDataSource.swift in Sources */,
|
||||
888CEBFC1D3FD525005178DE /* MessagesViewController.swift in Sources */,
|
||||
E8586DB51F59A1C300C9BE9D /* MessageContainerView.swift in Sources */,
|
||||
B0655A4F1F245C5A00542A83 /* MessagesCollectionViewFlowLayout.swift in Sources */,
|
||||
B0655A2C1F23D81600542A83 /* MessageData.swift in Sources */,
|
||||
B09643861F286C9E004D0129 /* String+Extensions.swift in Sources */,
|
||||
|
||||
@@ -0,0 +1,298 @@
|
||||
/*
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 MessageKit
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
import UIKit
|
||||
|
||||
open class MessageContainerView: UIView {
|
||||
|
||||
var style: MessageStyle = .none {
|
||||
didSet {
|
||||
// ***** IMPORTANT ********
|
||||
// do not check against oldValue and skip updating as the view gets created in cell and it is dequeued,
|
||||
// it gets created for a limited number of times but gets used many times,
|
||||
// therefore we need to draw it each time the style is set
|
||||
// DO NOT DO THIS --> guard style != oldValue else { return }
|
||||
setNeedsDisplay()
|
||||
}
|
||||
}
|
||||
|
||||
fileprivate var tailHeight: CGFloat!
|
||||
fileprivate var tailWidth: CGFloat!
|
||||
|
||||
open override func draw(_ rect: CGRect) {
|
||||
switch style {
|
||||
case .bubble(let border, let tailStyle):
|
||||
tailHeight = border.cornerRadius
|
||||
tailWidth = border.cornerRadius / 2
|
||||
drawBubble(in: rect, with: border, using: tailStyle)
|
||||
case .none:
|
||||
self.layer.cornerRadius = 0
|
||||
self.layer.masksToBounds = false
|
||||
self.layer.borderWidth = 0
|
||||
self.layer.borderColor = nil
|
||||
}
|
||||
}
|
||||
|
||||
private func drawBubble(in rect: CGRect, with border: MessageBorder, using tailStyle: MessageBubbleTailStyle) {
|
||||
let tailPath: UIBezierPath
|
||||
let outlinePath: UIBezierPath
|
||||
let bubbleTailBorder: MessageBorder?
|
||||
|
||||
switch tailStyle {
|
||||
case .none:
|
||||
tailPath = UIBezierPath()
|
||||
outlinePath = UIBezierPath(roundedRect: rect, cornerRadius: border.cornerRadius)
|
||||
bubbleTailBorder = nil
|
||||
case .triangle(let corner, let tailBorder):
|
||||
(tailPath, outlinePath) = createTriangleTailedBubble(for: rect, with: border, for: corner)
|
||||
bubbleTailBorder = tailBorder
|
||||
case .tailCurved(let corner, let tailBorder):
|
||||
(tailPath, outlinePath) = createTailCurvedTailedBubble(for: rect, with: border, for: corner)
|
||||
bubbleTailBorder = tailBorder
|
||||
}
|
||||
|
||||
border.fillColor.setFill()
|
||||
outlinePath.fill()
|
||||
|
||||
if let bubbleTailBorder = bubbleTailBorder {
|
||||
bubbleTailBorder.fillColor.setFill()
|
||||
tailPath.fill()
|
||||
if let outlineColor = bubbleTailBorder.color {
|
||||
outlineColor.setStroke()
|
||||
tailPath.lineWidth = bubbleTailBorder.width
|
||||
tailPath.stroke()
|
||||
}
|
||||
} else {
|
||||
tailPath.fill()
|
||||
}
|
||||
|
||||
if let borderColor = border.color {
|
||||
borderColor.setStroke()
|
||||
outlinePath.lineWidth = border.width
|
||||
outlinePath.stroke()
|
||||
}
|
||||
}
|
||||
|
||||
private func createTriangleTailedBubble(for rect: CGRect, with border: MessageBorder, for corner: UIRectCorner) -> (tailPath: UIBezierPath, outlinePath: UIBezierPath) {
|
||||
let tailPath = UIBezierPath()
|
||||
switch corner {
|
||||
case UIRectCorner.bottomLeft:
|
||||
tailPath.move(to: CGPoint(x: rect.minX, y: rect.maxY))
|
||||
tailPath.addLine(to: CGPoint(x: rect.minX, y: rect.maxY-border.cornerRadius))
|
||||
tailPath.addLine(to: CGPoint(x: rect.minX+border.cornerRadius, y: rect.maxY))
|
||||
case UIRectCorner.bottomRight:
|
||||
tailPath.move(to: CGPoint(x: rect.maxX, y: rect.maxY))
|
||||
tailPath.addLine(to: CGPoint(x: rect.maxX, y: rect.maxY-border.cornerRadius))
|
||||
tailPath.addLine(to: CGPoint(x: rect.maxX-border.cornerRadius, y: rect.maxY))
|
||||
case UIRectCorner.topLeft:
|
||||
tailPath.move(to: CGPoint(x: rect.minX, y: rect.minY))
|
||||
tailPath.addLine(to: CGPoint(x: rect.minX, y: rect.minY+border.cornerRadius))
|
||||
tailPath.addLine(to: CGPoint(x: rect.minX+border.cornerRadius, y: rect.minY))
|
||||
case UIRectCorner.topRight:
|
||||
tailPath.move(to: CGPoint(x: rect.maxX, y: rect.minY))
|
||||
tailPath.addLine(to: CGPoint(x: rect.maxX, y: rect.minY+border.cornerRadius))
|
||||
tailPath.addLine(to: CGPoint(x: rect.maxX-border.cornerRadius, y: rect.minY))
|
||||
default:
|
||||
fatalError("FATAL ERROR unhandled UIRectCorner")
|
||||
}
|
||||
|
||||
tailPath.close()
|
||||
let outlinePath = UIBezierPath(roundedRect: rect,
|
||||
byRoundingCorners: [.allCorners],
|
||||
cornerRadii: CGSize(width: border.cornerRadius, height: 0))
|
||||
return (tailPath, outlinePath)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// MARK: - Style 1 related
|
||||
extension MessageContainerView {
|
||||
fileprivate func createTailCurvedTailedBubble(for rect: CGRect, with border: MessageBorder, for corner: UIRectCorner) -> (tailPath: UIBezierPath, outlinePath: UIBezierPath) {
|
||||
let tailPath: UIBezierPath
|
||||
let insetRect: CGRect
|
||||
|
||||
switch corner {
|
||||
case UIRectCorner.bottomLeft:
|
||||
let widthInset = UIEdgeInsets(top: 0, left: tailWidth, bottom: 0, right: 0)
|
||||
insetRect = UIEdgeInsetsInsetRect(rect, widthInset)
|
||||
tailPath = tailCurvedTailPathForBottomLeft(using: insetRect)
|
||||
|
||||
case UIRectCorner.bottomRight:
|
||||
let widthInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: tailWidth)
|
||||
insetRect = UIEdgeInsetsInsetRect(rect, widthInset)
|
||||
tailPath = tailCurvedTailPathForBottomLeft(using: insetRect)
|
||||
tailPath.mirrorOnXAxis(in: insetRect)
|
||||
|
||||
case UIRectCorner.topLeft:
|
||||
let widthInset = UIEdgeInsets(top: 0, left: tailWidth, bottom: 0, right: 0)
|
||||
insetRect = UIEdgeInsetsInsetRect(rect, widthInset)
|
||||
tailPath = tailCurvedTailPathForTopLeft(using: insetRect)
|
||||
|
||||
case UIRectCorner.topRight:
|
||||
let widthInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: tailWidth)
|
||||
insetRect = UIEdgeInsetsInsetRect(rect, widthInset)
|
||||
tailPath = tailCurvedTailPathForTopLeft(using: insetRect)
|
||||
tailPath.mirrorOnXAxis(in: insetRect)
|
||||
|
||||
default: fatalError("FATAL ERROR unhandled UIRectCorner")
|
||||
}
|
||||
|
||||
let outlinePath = UIBezierPath(roundedRect: insetRect,
|
||||
byRoundingCorners: [.allCorners],
|
||||
cornerRadii: CGSize(width: border.cornerRadius, height: 0))
|
||||
return (tailPath, outlinePath)
|
||||
|
||||
}
|
||||
|
||||
private func tailCurvedTailPathForBottomLeft(using insetRect: CGRect) -> UIBezierPath {
|
||||
let tailPath = UIBezierPath()
|
||||
let tailStartPoint = CGPoint(x: insetRect.minX, y: insetRect.maxY - tailHeight)
|
||||
let tailBottomPoint = CGPoint(x: insetRect.minX - tailWidth, y: insetRect.maxY)
|
||||
let controlPoint1 = CGPoint(x: tailHeight/2, y: insetRect.maxY - tailWidth)
|
||||
tailPath.move(to: tailStartPoint)
|
||||
tailPath.addQuadCurve(to: tailBottomPoint, controlPoint: controlPoint1)
|
||||
let tailMiddlePoint = CGPoint(x: tailWidth * 2, y: insetRect.maxY - ((tailWidth * 2)/3))
|
||||
let controlPoint2 = CGPoint(x: tailWidth, y: insetRect.maxY - 1)
|
||||
tailPath.addQuadCurve(to: tailMiddlePoint, controlPoint: controlPoint2)
|
||||
tailPath.close()
|
||||
return tailPath
|
||||
}
|
||||
|
||||
private func tailCurvedTailPathForTopLeft(using insetRect: CGRect) -> UIBezierPath {
|
||||
let tailPath = UIBezierPath()
|
||||
let tailStartPoint = CGPoint(x: insetRect.minX, y: insetRect.minY + tailHeight)
|
||||
let tailBottomPoint = CGPoint(x: insetRect.minX - tailWidth, y: insetRect.minY)
|
||||
let controlPoint1 = CGPoint(x: tailHeight/2, y: insetRect.minY + tailWidth)
|
||||
tailPath.move(to: tailStartPoint)
|
||||
tailPath.addQuadCurve(to: tailBottomPoint, controlPoint: controlPoint1)
|
||||
let tailMiddlePoint = CGPoint(x: tailWidth * 2, y: insetRect.minY + ((tailWidth * 2)/3))
|
||||
let controlPoint2 = CGPoint(x: tailWidth, y: insetRect.minY + 1)
|
||||
tailPath.addQuadCurve(to: tailMiddlePoint, controlPoint: controlPoint2)
|
||||
tailPath.close()
|
||||
return tailPath
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public enum MessageBubbleTailStyle {
|
||||
case none
|
||||
case triangle(corner: UIRectCorner, border: MessageBorder)
|
||||
case tailCurved(corner: UIRectCorner, border: MessageBorder) // we should find a proper name for this
|
||||
|
||||
public static let styleCount = 2
|
||||
}
|
||||
|
||||
extension MessageBubbleTailStyle: CustomDebugStringConvertible {
|
||||
public var name: String {
|
||||
switch self {
|
||||
case .none: return "None"
|
||||
case .triangle: return "Triangle"
|
||||
case .tailCurved: return "TailCurved"
|
||||
}
|
||||
}
|
||||
|
||||
public var debugDescription: String {
|
||||
switch self {
|
||||
case .triangle(let corner, let border):
|
||||
return "name: \(name), corner: \(corner), border: \(border)"
|
||||
case .tailCurved(let corner):
|
||||
return "name: \(name), corner: \(corner)"
|
||||
default:
|
||||
return "name: \(name)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public struct MessageBorder {
|
||||
let color: UIColor?
|
||||
let width: CGFloat
|
||||
let cornerRadius: CGFloat
|
||||
let fillColor: UIColor
|
||||
|
||||
public init(cornerRadius: CGFloat = 15, color: UIColor? = nil, width: CGFloat = 0, fillColor: UIColor) {
|
||||
self.color = color
|
||||
self.width = width
|
||||
self.cornerRadius = cornerRadius
|
||||
self.fillColor = fillColor
|
||||
}
|
||||
}
|
||||
|
||||
extension MessageBorder: CustomDebugStringConvertible {
|
||||
public var debugDescription: String {
|
||||
return "color: \(color.debugDescription), width: \(width), cornerRadius: \(cornerRadius)"
|
||||
}
|
||||
}
|
||||
|
||||
public enum MessageStyle {
|
||||
case none
|
||||
case bubble(border: MessageBorder, withTail: MessageBubbleTailStyle)
|
||||
}
|
||||
|
||||
extension MessageStyle {
|
||||
public var name: String {
|
||||
switch self {
|
||||
case .bubble: return "Bubble"
|
||||
case .none: return "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extension MessageStyle: CustomDebugStringConvertible {
|
||||
public var debugDescription: String {
|
||||
switch self {
|
||||
case .bubble(let border, let tailStyle):
|
||||
return "MessageStyle: Bubble, border: \(border.debugDescription), tailStyle: \(tailStyle.debugDescription)"
|
||||
case .none:
|
||||
return "MessageStyle: none"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extension MessageStyle: Equatable {
|
||||
static public func == (lhs: MessageStyle, rhs: MessageStyle) -> Bool {
|
||||
return lhs.name == rhs.name
|
||||
}
|
||||
}
|
||||
|
||||
public extension UIImage {
|
||||
public convenience init?(color: UIColor, size: CGSize = CGSize(width: 1, height: 1)) {
|
||||
let rect = CGRect(origin: .zero, size: size)
|
||||
UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0)
|
||||
color.setFill()
|
||||
UIRectFill(rect)
|
||||
let image = UIGraphicsGetImageFromCurrentImageContext()
|
||||
UIGraphicsEndImageContext()
|
||||
|
||||
guard let cgImage = image?.cgImage else { return nil }
|
||||
self.init(cgImage: cgImage)
|
||||
}
|
||||
}
|
||||
|
||||
public extension UIBezierPath {
|
||||
public func mirrorOnXAxis(in rect: CGRect) {
|
||||
apply(CGAffineTransform(translationX: -rect.origin.x, y: 0))
|
||||
apply(CGAffineTransform(scaleX: -1, y: 1))
|
||||
apply(CGAffineTransform(translationX: rect.origin.x+rect.width, y: 0))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user