mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
110 lines
4.4 KiB
Swift
110 lines
4.4 KiB
Swift
import Foundation
|
|
import UIKit
|
|
import Display
|
|
import AsyncDisplayKit
|
|
import TelegramCore
|
|
import SyncCore
|
|
import SwiftSignalKit
|
|
import Postbox
|
|
import TelegramPresentationData
|
|
|
|
final class ChatMediaInputSettingsItem: ListViewItem {
|
|
let inputNodeInteraction: ChatMediaInputNodeInteraction
|
|
let selectedItem: () -> Void
|
|
let theme: PresentationTheme
|
|
|
|
var selectable: Bool {
|
|
return true
|
|
}
|
|
|
|
init(inputNodeInteraction: ChatMediaInputNodeInteraction, theme: PresentationTheme, selected: @escaping () -> Void) {
|
|
self.inputNodeInteraction = inputNodeInteraction
|
|
self.selectedItem = selected
|
|
self.theme = theme
|
|
}
|
|
|
|
func nodeConfiguredForParams(async: @escaping (@escaping () -> Void) -> Void, params: ListViewItemLayoutParams, synchronousLoads: Bool, previousItem: ListViewItem?, nextItem: ListViewItem?, completion: @escaping (ListViewItemNode, @escaping () -> (Signal<Void, NoError>?, (ListViewItemApply) -> Void)) -> Void) {
|
|
async {
|
|
let node = ChatMediaInputSettingsItemNode()
|
|
node.contentSize = CGSize(width: 41.0, height: 41.0)
|
|
node.insets = ChatMediaInputNode.setupPanelIconInsets(item: self, previousItem: previousItem, nextItem: nextItem)
|
|
node.inputNodeInteraction = self.inputNodeInteraction
|
|
node.updateTheme(theme: self.theme)
|
|
node.updateAppearanceTransition(transition: .immediate)
|
|
Queue.mainQueue().async {
|
|
completion(node, {
|
|
return (nil, { _ in })
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
public func updateNode(async: @escaping (@escaping () -> Void) -> Void, node: @escaping () -> ListViewItemNode, params: ListViewItemLayoutParams, previousItem: ListViewItem?, nextItem: ListViewItem?, animation: ListViewItemUpdateAnimation, completion: @escaping (ListViewItemNodeLayout, @escaping (ListViewItemApply) -> Void) -> Void) {
|
|
Queue.mainQueue().async {
|
|
completion(ListViewItemNodeLayout(contentSize: node().contentSize, insets: ChatMediaInputNode.setupPanelIconInsets(item: self, previousItem: previousItem, nextItem: nextItem)), { _ in
|
|
(node() as? ChatMediaInputSettingsItemNode)?.updateTheme(theme: self.theme)
|
|
})
|
|
}
|
|
}
|
|
|
|
func selected(listView: ListView) {
|
|
self.selectedItem()
|
|
}
|
|
}
|
|
|
|
private let boundingSize = CGSize(width: 41.0, height: 41.0)
|
|
private let boundingImageSize = CGSize(width: 30.0, height: 30.0)
|
|
private let highlightSize = CGSize(width: 35.0, height: 35.0)
|
|
private let verticalOffset: CGFloat = 3.0 + UIScreenPixel
|
|
|
|
final class ChatMediaInputSettingsItemNode: ListViewItemNode {
|
|
private let buttonNode: HighlightableButtonNode
|
|
private let imageNode: ASImageNode
|
|
|
|
var currentCollectionId: ItemCollectionId?
|
|
var inputNodeInteraction: ChatMediaInputNodeInteraction?
|
|
|
|
var theme: PresentationTheme?
|
|
|
|
init() {
|
|
self.buttonNode = HighlightableButtonNode()
|
|
|
|
self.imageNode = ASImageNode()
|
|
self.imageNode.isLayerBacked = true
|
|
self.imageNode.contentMode = .center
|
|
self.imageNode.contentsScale = UIScreenScale
|
|
|
|
self.buttonNode.frame = CGRect(origin: CGPoint(), size: boundingSize)
|
|
|
|
self.imageNode.transform = CATransform3DMakeRotation(CGFloat.pi / 2.0, 0.0, 0.0, 1.0)
|
|
self.imageNode.contentMode = .center
|
|
self.imageNode.contentsScale = UIScreenScale
|
|
|
|
super.init(layerBacked: false, dynamicBounce: false)
|
|
|
|
self.addSubnode(self.buttonNode)
|
|
self.buttonNode.addSubnode(self.imageNode)
|
|
|
|
let imageSize = CGSize(width: 26.0, height: 26.0)
|
|
self.imageNode.frame = CGRect(origin: CGPoint(x: floor((boundingSize.width - imageSize.width) / 2.0) + verticalOffset, y: floor((boundingSize.height - imageSize.height) / 2.0) + UIScreenPixel), size: imageSize)
|
|
}
|
|
|
|
deinit {
|
|
}
|
|
|
|
func updateTheme(theme: PresentationTheme) {
|
|
if self.theme !== theme {
|
|
self.theme = theme
|
|
|
|
self.imageNode.image = PresentationResourcesChat.chatInputMediaPanelSettingsIconImage(theme)
|
|
}
|
|
}
|
|
|
|
func updateAppearanceTransition(transition: ContainedViewLayoutTransition) {
|
|
if let inputNodeInteraction = self.inputNodeInteraction {
|
|
transition.updateSublayerTransformScale(node: self, scale: inputNodeInteraction.appearanceTransition)
|
|
}
|
|
}
|
|
}
|
|
|