import Foundation import Postbox import Display import AsyncDisplayKit import SwiftSignalKit import TelegramCore final class ChatMessageInvoiceBubbleContentNode: ChatMessageBubbleContentNode { private var item: ChatMessageItem? private var invoice: TelegramMediaInvoice? private let contentNode: ChatMessageAttachedContentNode override var properties: ChatMessageBubbleContentProperties { return ChatMessageBubbleContentProperties(hidesSimpleAuthorHeader: false, headerSpacing: 8.0) } override var visibility: ListViewItemNodeVisibility { didSet { self.contentNode.visibility = self.visibility } } required init() { self.contentNode = ChatMessageAttachedContentNode() super.init() self.addSubnode(self.contentNode) } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } override func asyncLayoutContent() -> (_ item: ChatMessageItem, _ layoutConstants: ChatMessageItemLayoutConstants, _ position: ChatMessageBubbleContentPosition, _ constrainedSize: CGSize) -> (CGFloat, (CGSize) -> (CGFloat, (CGFloat) -> (CGSize, (ListViewItemUpdateAnimation) -> Void))) { let contentNodeLayout = self.contentNode.asyncLayout() return { item, layoutConstants, position, constrainedSize in var invoice: TelegramMediaInvoice? for media in item.message.media { if let media = media as? TelegramMediaInvoice { invoice = media break } } var title: String? let subtitle: String? = nil var text: String? var mediaAndFlags: (Media, ChatMessageAttachedContentNodeMediaFlags)? if let invoice = invoice { title = invoice.title text = invoice.description if let image = invoice.photo { mediaAndFlags = (image, [.preferMediaBeforeText]) } } let (initialWidth, continueLayout) = contentNodeLayout(item.theme, item.strings, item.controllerInteraction.automaticMediaDownloadSettings, item.account, item.message, item.read, title, subtitle, text, nil, mediaAndFlags, nil, false, layoutConstants, position, constrainedSize) return (initialWidth, { constrainedSize in let (refinedWidth, finalizeLayout) = continueLayout(constrainedSize) return (refinedWidth, { boundingWidth in let (size, apply) = finalizeLayout(boundingWidth) return (size, { [weak self] animation in if let strongSelf = self { strongSelf.invoice = invoice apply(animation) strongSelf.contentNode.frame = CGRect(origin: CGPoint(), size: size) } }) }) }) } } override func animateInsertion(_ currentTimestamp: Double, duration: Double) { self.layer.animateAlpha(from: 0.0, to: 1.0, duration: 0.25) } override func animateAdded(_ currentTimestamp: Double, duration: Double) { self.layer.animateAlpha(from: 0.0, to: 1.0, duration: 0.25) } override func animateRemoved(_ currentTimestamp: Double, duration: Double) { self.layer.animateAlpha(from: 1.0, to: 0.0, duration: 0.25, removeOnCompletion: false) } override func animateInsertionIntoBubble(_ duration: Double) { self.layer.animateAlpha(from: 0.0, to: 1.0, duration: 0.25) } override func tapActionAtPoint(_ point: CGPoint) -> ChatMessageBubbleContentTapAction { if self.bounds.contains(point) { /*if let webPage = self.webPage, case let .Loaded(content) = webPage.content { if content.instantPage != nil { return .instantPage } }*/ } return .none } override func updateHiddenMedia(_ media: [Media]?) { self.contentNode.updateHiddenMedia(media) } override func transitionNode(media: Media) -> ASDisplayNode? { return self.contentNode.transitionNode(media: media) } }