mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
116 lines
5.0 KiB
Swift
116 lines
5.0 KiB
Swift
import Foundation
|
|
import UIKit
|
|
import Postbox
|
|
import AsyncDisplayKit
|
|
import Display
|
|
import SwiftSignalKit
|
|
|
|
private func backgroundImage(color: UIColor) -> UIImage? {
|
|
return generateImage(CGSize(width: 20.0, height: 20.0), contextGenerator: { size, context -> Void in
|
|
context.clear(CGRect(origin: CGPoint(), size: size))
|
|
context.setFillColor(UIColor(0x748391, 0.45).cgColor)
|
|
context.fillEllipse(in: CGRect(origin: CGPoint(), size: size))
|
|
})?.stretchableImage(withLeftCapWidth: 8, topCapHeight: 8)
|
|
}
|
|
|
|
private let titleFont = UIFont.systemFont(ofSize: 13.0)
|
|
|
|
class ChatHoleItem: ListViewItem {
|
|
let index: MessageIndex
|
|
let header: ChatMessageDateHeader
|
|
|
|
init(index: MessageIndex) {
|
|
self.index = index
|
|
self.header = ChatMessageDateHeader(timestamp: index.timestamp)
|
|
}
|
|
|
|
func nodeConfiguredForWidth(async: @escaping (@escaping () -> Void) -> Void, width: CGFloat, previousItem: ListViewItem?, nextItem: ListViewItem?, completion: @escaping (ListViewItemNode, @escaping () -> (Signal<Void, NoError>?, () -> Void)) -> Void) {
|
|
async {
|
|
let node = ChatHoleItemNode()
|
|
node.layoutForWidth(width, item: self, previousItem: previousItem, nextItem: nextItem)
|
|
completion(node, {
|
|
return (nil, {})
|
|
})
|
|
}
|
|
}
|
|
|
|
func updateNode(async: @escaping (@escaping () -> Void) -> Void, node: ListViewItemNode, width: CGFloat, previousItem: ListViewItem?, nextItem: ListViewItem?, animation: ListViewItemUpdateAnimation, completion: @escaping (ListViewItemNodeLayout, @escaping () -> Void) -> Void) {
|
|
completion(ListViewItemNodeLayout(contentSize: node.contentSize, insets: node.insets), {
|
|
})
|
|
}
|
|
}
|
|
|
|
class ChatHoleItemNode: ListViewItemNode {
|
|
var item: ChatHoleItem?
|
|
let backgroundNode: ASImageNode
|
|
let labelNode: TextNode
|
|
|
|
private let layoutConstants = ChatMessageItemLayoutConstants()
|
|
|
|
init() {
|
|
self.backgroundNode = ASImageNode()
|
|
self.backgroundNode.isLayerBacked = true
|
|
self.backgroundNode.displayWithoutProcessing = true
|
|
self.backgroundNode.displaysAsynchronously = false
|
|
|
|
self.labelNode = TextNode()
|
|
self.labelNode.isLayerBacked = true
|
|
|
|
super.init(layerBacked: true)
|
|
|
|
self.backgroundNode.image = backgroundImage(color: UIColor(0x007ee5))
|
|
self.addSubnode(self.backgroundNode)
|
|
|
|
self.addSubnode(self.labelNode)
|
|
|
|
self.transform = CATransform3DMakeRotation(CGFloat(M_PI), 0.0, 0.0, 1.0)
|
|
}
|
|
|
|
override func layoutForWidth(_ width: CGFloat, item: ListViewItem, previousItem: ListViewItem?, nextItem: ListViewItem?) {
|
|
if let item = item as? ChatHoleItem {
|
|
let dateAtBottom = !chatItemsHaveCommonDateHeader(item, nextItem)
|
|
let (layout, apply) = self.asyncLayout()(item, width, dateAtBottom)
|
|
apply()
|
|
self.contentSize = layout.contentSize
|
|
self.insets = layout.insets
|
|
}
|
|
}
|
|
|
|
func asyncLayout() -> (_ item: ChatHoleItem, _ width: CGFloat, _ dateAtBottom: Bool) -> (ListViewItemNodeLayout, () -> Void) {
|
|
let labelLayout = TextNode.asyncLayout(self.labelNode)
|
|
let layoutConstants = self.layoutConstants
|
|
return { item, width, dateAtBottom in
|
|
let (size, apply) = labelLayout(NSAttributedString(string: "Loading", font: titleFont, textColor: UIColor.white), nil, 1, .end, CGSize(width: width, height: CGFloat.greatestFiniteMagnitude), .natural, nil)
|
|
|
|
let backgroundSize = CGSize(width: size.size.width + 8.0 + 8.0, height: 20.0)
|
|
|
|
return (ListViewItemNodeLayout(contentSize: CGSize(width: width, height: 20.0), insets: UIEdgeInsets(top: 4.0 + (dateAtBottom ? layoutConstants.timestampHeaderHeight : 0.0), left: 0.0, bottom: 4.0, right: 0.0)), { [weak self] in
|
|
if let strongSelf = self {
|
|
strongSelf.item = item
|
|
|
|
let _ = apply()
|
|
|
|
strongSelf.backgroundNode.frame = CGRect(origin: CGPoint(x: floorToScreenPixels((width - backgroundSize.width) / 2.0), y: 0.0), size: backgroundSize)
|
|
strongSelf.labelNode.frame = CGRect(origin: CGPoint(x: strongSelf.backgroundNode.frame.origin.x + 8.0, y: floorToScreenPixels((backgroundSize.height - size.size.height) / 2.0) - 1.0), size: size.size)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
override public func header() -> ListViewItemHeader? {
|
|
if let item = self.item {
|
|
return item.header
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
override public func animateAdded(_ currentTimestamp: Double, duration: Double) {
|
|
self.layer.animateAlpha(from: 0.0, to: 1.0, duration: 0.2)
|
|
}
|
|
|
|
override public func animateRemoved(_ currentTimestamp: Double, duration: Double) {
|
|
self.layer.animateAlpha(from: 1.0, to: 0.0, duration: duration * 0.5, removeOnCompletion: false)
|
|
}
|
|
}
|