mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
515 lines
26 KiB
Swift
515 lines
26 KiB
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
import SwiftSignalKit
|
|
import Postbox
|
|
import TelegramCore
|
|
|
|
import LegacyComponents
|
|
import TelegramUIPrivateModule
|
|
|
|
final class StickerPaneSearchInteraction {
|
|
let open: (StickerPackCollectionInfo) -> Void
|
|
let install: (StickerPackCollectionInfo) -> Void
|
|
let sendSticker: (FileMediaReference) -> Void
|
|
let getItemIsPreviewed: (StickerPackItem) -> Bool
|
|
|
|
init(open: @escaping (StickerPackCollectionInfo) -> Void, install: @escaping (StickerPackCollectionInfo) -> Void, sendSticker: @escaping (FileMediaReference) -> Void, getItemIsPreviewed: @escaping (StickerPackItem) -> Bool) {
|
|
self.open = open
|
|
self.install = install
|
|
self.sendSticker = sendSticker
|
|
self.getItemIsPreviewed = getItemIsPreviewed
|
|
}
|
|
}
|
|
|
|
private enum StickerSearchEntryId: Equatable, Hashable {
|
|
case sticker(String?, Int64)
|
|
case global(ItemCollectionId)
|
|
}
|
|
|
|
private enum StickerSearchEntry: Identifiable, Comparable {
|
|
case sticker(index: Int, code: String?, stickerItem: FoundStickerItem, theme: PresentationTheme)
|
|
case global(index: Int, info: StickerPackCollectionInfo, topItems: [StickerPackItem], installed: Bool)
|
|
|
|
var stableId: StickerSearchEntryId {
|
|
switch self {
|
|
case let .sticker(_, code, stickerItem, _):
|
|
return .sticker(code, stickerItem.file.fileId.id)
|
|
case let .global(_, info, _, _):
|
|
return .global(info.id)
|
|
}
|
|
}
|
|
|
|
static func ==(lhs: StickerSearchEntry, rhs: StickerSearchEntry) -> Bool {
|
|
switch lhs {
|
|
case let .sticker(lhsIndex, lhsCode, lhsStickerItem, lhsTheme):
|
|
if case let .sticker(rhsIndex, rhsCode, rhsStickerItem, rhsTheme) = rhs {
|
|
if lhsIndex != rhsIndex {
|
|
return false
|
|
}
|
|
if lhsCode != rhsCode {
|
|
return false
|
|
}
|
|
if lhsStickerItem != rhsStickerItem {
|
|
return false
|
|
}
|
|
if lhsTheme !== rhsTheme {
|
|
return false
|
|
}
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
case let .global(index, info, topItems, installed):
|
|
if case .global(index, info, topItems, installed) = rhs {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
static func <(lhs: StickerSearchEntry, rhs: StickerSearchEntry) -> Bool {
|
|
switch lhs {
|
|
case let .sticker(lhsIndex, _, _, _):
|
|
switch rhs {
|
|
case let .sticker(rhsIndex, _, _, _):
|
|
return lhsIndex < rhsIndex
|
|
default:
|
|
return true
|
|
}
|
|
case let .global(lhsIndex, _, _, _):
|
|
switch rhs {
|
|
case .sticker:
|
|
return false
|
|
case let .global(rhsIndex, _, _, _):
|
|
return lhsIndex < rhsIndex
|
|
}
|
|
}
|
|
}
|
|
|
|
func item(account: Account, theme: PresentationTheme, strings: PresentationStrings, interaction: StickerPaneSearchInteraction, inputNodeInteraction: ChatMediaInputNodeInteraction) -> GridItem {
|
|
switch self {
|
|
case let .sticker(_, code, stickerItem, theme):
|
|
return StickerPaneSearchStickerItem(account: account, code: code, stickerItem: stickerItem, inputNodeInteraction: inputNodeInteraction, theme: theme, selected: {
|
|
interaction.sendSticker(.standalone(media: stickerItem.file))
|
|
})
|
|
case let .global(_, info, topItems, installed):
|
|
return StickerPaneSearchGlobalItem(account: account, theme: theme, strings: strings, info: info, topItems: topItems, installed: installed, unread: false, open: {
|
|
interaction.open(info)
|
|
}, install: {
|
|
interaction.install(info)
|
|
}, getItemIsPreviewed: { item in
|
|
return interaction.getItemIsPreviewed(item)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
private struct StickerPaneSearchGridTransition {
|
|
let deletions: [Int]
|
|
let insertions: [GridNodeInsertItem]
|
|
let updates: [GridNodeUpdateItem]
|
|
let updateFirstIndexInSectionOffset: Int?
|
|
let stationaryItems: GridNodeStationaryItems
|
|
let scrollToItem: GridNodeScrollToItem?
|
|
let animated: Bool
|
|
}
|
|
|
|
private func preparedChatMediaInputGridEntryTransition(account: Account, theme: PresentationTheme, strings: PresentationStrings, from fromEntries: [StickerSearchEntry], to toEntries: [StickerSearchEntry], interaction: StickerPaneSearchInteraction, inputNodeInteraction: ChatMediaInputNodeInteraction) -> StickerPaneSearchGridTransition {
|
|
let stationaryItems: GridNodeStationaryItems = .none
|
|
let scrollToItem: GridNodeScrollToItem? = nil
|
|
var animated = false
|
|
animated = true
|
|
|
|
let (deleteIndices, indicesAndItems, updateIndices) = mergeListsStableWithUpdates(leftList: fromEntries, rightList: toEntries)
|
|
|
|
let deletions = deleteIndices
|
|
let insertions = indicesAndItems.map { GridNodeInsertItem(index: $0.0, item: $0.1.item(account: account, theme: theme, strings: strings, interaction: interaction, inputNodeInteraction: inputNodeInteraction), previousIndex: $0.2) }
|
|
let updates = updateIndices.map { GridNodeUpdateItem(index: $0.0, previousIndex: $0.2, item: $0.1.item(account: account, theme: theme, strings: strings, interaction: interaction, inputNodeInteraction: inputNodeInteraction)) }
|
|
|
|
let firstIndexInSectionOffset = 0
|
|
|
|
return StickerPaneSearchGridTransition(deletions: deletions, insertions: insertions, updates: updates, updateFirstIndexInSectionOffset: firstIndexInSectionOffset, stationaryItems: stationaryItems, scrollToItem: scrollToItem, animated: animated)
|
|
}
|
|
|
|
final class StickerPaneSearchContainerNode: ASDisplayNode {
|
|
private let context: AccountContext
|
|
private let controllerInteraction: ChatControllerInteraction
|
|
private let inputNodeInteraction: ChatMediaInputNodeInteraction
|
|
|
|
private let backgroundNode: ASDisplayNode
|
|
private let searchBar: StickerPaneSearchBarNode
|
|
private let trendingPane: ChatMediaInputTrendingPane
|
|
private let gridNode: GridNode
|
|
private let notFoundNode: ASImageNode
|
|
private let notFoundLabel: ImmediateTextNode
|
|
|
|
private var validLayout: CGSize?
|
|
|
|
private var enqueuedTransitions: [StickerPaneSearchGridTransition] = []
|
|
|
|
private let searchDisposable = MetaDisposable()
|
|
|
|
private let _ready = Promise<Void>()
|
|
var ready: Signal<Void, NoError> {
|
|
return self._ready.get()
|
|
}
|
|
|
|
init(context: AccountContext, theme: PresentationTheme, strings: PresentationStrings, controllerInteraction: ChatControllerInteraction, inputNodeInteraction: ChatMediaInputNodeInteraction, cancel: @escaping () -> Void) {
|
|
self.context = context
|
|
self.controllerInteraction = controllerInteraction
|
|
self.inputNodeInteraction = inputNodeInteraction
|
|
|
|
self.backgroundNode = ASDisplayNode()
|
|
|
|
self.trendingPane = ChatMediaInputTrendingPane(context: context, controllerInteraction: controllerInteraction, getItemIsPreviewed: { [weak inputNodeInteraction] item in
|
|
return inputNodeInteraction?.previewedStickerPackItem == .pack(item)
|
|
})
|
|
|
|
self.searchBar = StickerPaneSearchBarNode()
|
|
|
|
self.gridNode = GridNode()
|
|
|
|
self.notFoundNode = ASImageNode()
|
|
self.notFoundNode.displayWithoutProcessing = true
|
|
self.notFoundNode.displaysAsynchronously = false
|
|
self.notFoundNode.clipsToBounds = false
|
|
|
|
self.notFoundLabel = ImmediateTextNode()
|
|
self.notFoundLabel.displaysAsynchronously = false
|
|
self.notFoundLabel.isUserInteractionEnabled = false
|
|
self.notFoundNode.addSubnode(self.notFoundLabel)
|
|
|
|
self.gridNode.isHidden = true
|
|
self.trendingPane.isHidden = false
|
|
self.notFoundNode.isHidden = true
|
|
|
|
super.init()
|
|
|
|
self.addSubnode(self.backgroundNode)
|
|
self.addSubnode(self.trendingPane)
|
|
self.addSubnode(self.gridNode)
|
|
self.addSubnode(self.notFoundNode)
|
|
self.addSubnode(self.searchBar)
|
|
|
|
self.gridNode.scrollView.alwaysBounceVertical = true
|
|
self.gridNode.scrollingInitiated = { [weak self] in
|
|
self?.searchBar.deactivate(clear: false)
|
|
}
|
|
|
|
self.trendingPane.scrollingInitiated = { [weak self] in
|
|
self?.searchBar.deactivate(clear: false)
|
|
}
|
|
|
|
self.searchBar.cancel = {
|
|
cancel()
|
|
}
|
|
self.searchBar.activate()
|
|
|
|
let interaction = StickerPaneSearchInteraction(open: { [weak self] info in
|
|
if let strongSelf = self {
|
|
strongSelf.view.endEditing(true)
|
|
strongSelf.controllerInteraction.presentController(StickerPackPreviewController(context: strongSelf.context, stickerPack: .id(id: info.id.id, accessHash: info.accessHash), parentNavigationController: strongSelf.controllerInteraction.navigationController()), ViewControllerPresentationArguments(presentationAnimation: .modalSheet))
|
|
}
|
|
}, install: { [weak self] info in
|
|
if let strongSelf = self {
|
|
let _ = (loadedStickerPack(postbox: strongSelf.context.account.postbox, network: strongSelf.context.account.network, reference: .id(id: info.id.id, accessHash: info.accessHash), forceActualized: false)
|
|
|> mapToSignal { result -> Signal<Void, NoError> in
|
|
switch result {
|
|
case let .result(info, items, installed):
|
|
if installed {
|
|
return .complete()
|
|
} else {
|
|
return addStickerPackInteractively(postbox: strongSelf.context.account.postbox, info: info, items: items)
|
|
}
|
|
case .fetching:
|
|
break
|
|
case .none:
|
|
break
|
|
}
|
|
return .complete()
|
|
}).start()
|
|
}
|
|
}, sendSticker: { [weak self] file in
|
|
if let strongSelf = self {
|
|
strongSelf.controllerInteraction.sendSticker(file, false)
|
|
}
|
|
}, getItemIsPreviewed: { item in
|
|
return inputNodeInteraction.previewedStickerPackItem == .pack(item)
|
|
})
|
|
|
|
let queue = Queue()
|
|
let currentEntries = Atomic<[StickerSearchEntry]?>(value: nil)
|
|
let currentRemotePacks = Atomic<FoundStickerSets?>(value: nil)
|
|
|
|
self.searchBar.textUpdated = { [weak self] text in
|
|
guard let strongSelf = self else {
|
|
return
|
|
}
|
|
|
|
let signal: Signal<([(String?, FoundStickerItem)], FoundStickerSets, Bool, FoundStickerSets?)?, NoError>
|
|
if !text.isEmpty {
|
|
let stickers: Signal<[(String?, FoundStickerItem)], NoError> = Signal { subscriber in
|
|
var signals: [Signal<(String?, [FoundStickerItem]), NoError>] = []
|
|
|
|
if text.isSingleEmoji {
|
|
signals.append(searchStickers(account: context.account, query: text.firstEmoji)
|
|
|> take(1)
|
|
|> map { (nil, $0) })
|
|
} else {
|
|
for entry in TGEmojiSuggestions.suggestions(forQuery: text.lowercased()) {
|
|
if let entry = entry as? TGAlphacodeEntry {
|
|
signals.append(searchStickers(account: context.account, query: entry.emoji)
|
|
|> take(1)
|
|
|> map { (entry.emoji, $0) })
|
|
}
|
|
}
|
|
}
|
|
|
|
return combineLatest(signals).start(next: { results in
|
|
var result: [(String?, FoundStickerItem)] = []
|
|
for (emoji, stickers) in results {
|
|
for sticker in stickers {
|
|
result.append((emoji, sticker))
|
|
}
|
|
}
|
|
subscriber.putNext(result)
|
|
}, completed: {
|
|
subscriber.putCompletion()
|
|
})
|
|
}
|
|
|
|
let local = searchStickerSets(postbox: context.account.postbox, query: text)
|
|
let remote = searchStickerSetsRemotely(network: context.account.network, query: text)
|
|
|> delay(0.2, queue: Queue.mainQueue())
|
|
let packs = local
|
|
|> mapToSignal { result -> Signal<(FoundStickerSets, Bool, FoundStickerSets?), NoError> in
|
|
var localResult = result
|
|
if let currentRemote = currentRemotePacks.with ({ $0 }) {
|
|
localResult = localResult.merge(with: currentRemote)
|
|
}
|
|
return .single((localResult, false, nil))
|
|
|> then(remote |> map { remote -> (FoundStickerSets, Bool, FoundStickerSets?) in
|
|
return (result.merge(with: remote), true, remote)
|
|
})
|
|
}
|
|
signal = combineLatest(stickers, packs)
|
|
|> map { stickers, packs -> ([(String?, FoundStickerItem)], FoundStickerSets, Bool, FoundStickerSets?)? in
|
|
return (stickers, packs.0, packs.1, packs.2)
|
|
}
|
|
strongSelf.searchBar.activity = true
|
|
} else {
|
|
signal = .single(nil)
|
|
strongSelf.searchBar.activity = false
|
|
}
|
|
|
|
strongSelf.searchDisposable.set((signal
|
|
|> deliverOn(queue)).start(next: { result in
|
|
Queue.mainQueue().async {
|
|
guard let strongSelf = self else {
|
|
return
|
|
}
|
|
|
|
var entries: [StickerSearchEntry] = []
|
|
if let (stickers, packs, final, remote) = result {
|
|
if let remote = remote {
|
|
let _ = currentRemotePacks.swap(remote)
|
|
}
|
|
strongSelf.gridNode.isHidden = false
|
|
strongSelf.trendingPane.isHidden = true
|
|
|
|
if final {
|
|
strongSelf.searchBar.activity = false
|
|
}
|
|
|
|
var index = 0
|
|
for (code, sticker) in stickers {
|
|
entries.append(.sticker(index: index, code: code, stickerItem: sticker, theme: theme))
|
|
index += 1
|
|
}
|
|
for (collectionId, info, _, installed) in packs.infos {
|
|
if let info = info as? StickerPackCollectionInfo {
|
|
var topItems: [StickerPackItem] = []
|
|
for e in packs.entries {
|
|
if let item = e.item as? StickerPackItem {
|
|
if e.index.collectionId == collectionId {
|
|
topItems.append(item)
|
|
}
|
|
}
|
|
}
|
|
entries.append(.global(index: index, info: info, topItems: topItems, installed: installed))
|
|
index += 1
|
|
}
|
|
}
|
|
|
|
if final || !entries.isEmpty {
|
|
strongSelf.notFoundNode.isHidden = !entries.isEmpty
|
|
}
|
|
} else {
|
|
let _ = currentRemotePacks.swap(nil)
|
|
strongSelf.searchBar.activity = false
|
|
strongSelf.gridNode.isHidden = true
|
|
strongSelf.notFoundNode.isHidden = true
|
|
strongSelf.trendingPane.isHidden = false
|
|
}
|
|
|
|
let previousEntries = currentEntries.swap(entries)
|
|
let transition = preparedChatMediaInputGridEntryTransition(account: context.account, theme: theme, strings: strings, from: previousEntries ?? [], to: entries, interaction: interaction, inputNodeInteraction: strongSelf.inputNodeInteraction)
|
|
strongSelf.enqueueTransition(transition)
|
|
}
|
|
}))
|
|
}
|
|
|
|
self._ready.set(self.trendingPane.ready)
|
|
self.trendingPane.activate()
|
|
|
|
self.updateThemeAndStrings(theme: theme, strings: strings)
|
|
}
|
|
|
|
deinit {
|
|
self.searchDisposable.dispose()
|
|
}
|
|
|
|
func updateThemeAndStrings(theme: PresentationTheme, strings: PresentationStrings) {
|
|
self.backgroundNode.backgroundColor = theme.chat.inputMediaPanel.stickersBackgroundColor
|
|
self.notFoundNode.image = generateTintedImage(image: UIImage(bundleImageName: "Chat/Input/Media/StickersNotFoundIcon"), color: theme.list.freeMonoIcon)
|
|
self.notFoundLabel.attributedText = NSAttributedString(string: strings.Stickers_NoStickersFound, font: Font.medium(14.0), textColor: theme.list.freeTextColor)
|
|
self.searchBar.updateThemeAndStrings(theme: theme, strings: strings)
|
|
self.searchBar.placeholderString = NSAttributedString(string: strings.Stickers_Search, font: Font.regular(17.0), textColor: theme.chat.inputMediaPanel.stickersSearchPlaceholderColor)
|
|
}
|
|
|
|
func updateLayout(size: CGSize, leftInset: CGFloat, rightInset: CGFloat, bottomInset: CGFloat, inputHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
|
let firstLayout = self.validLayout == nil
|
|
self.validLayout = size
|
|
transition.updateFrame(node: self.backgroundNode, frame: CGRect(origin: CGPoint(), size: size))
|
|
|
|
let searchBarHeight: CGFloat = 52.0
|
|
transition.updateFrame(node: self.searchBar, frame: CGRect(origin: CGPoint(), size: CGSize(width: size.width, height: searchBarHeight)))
|
|
self.searchBar.updateLayout(boundingSize: CGSize(width: size.width, height: searchBarHeight), leftInset: leftInset, rightInset: rightInset, transition: transition)
|
|
|
|
if let image = self.notFoundNode.image {
|
|
let areaHeight = size.height - searchBarHeight - inputHeight
|
|
|
|
let labelSize = self.notFoundLabel.updateLayout(CGSize(width: size.width, height: CGFloat.greatestFiniteMagnitude))
|
|
|
|
transition.updateFrame(node: self.notFoundNode, frame: CGRect(origin: CGPoint(x: floor((size.width - image.size.width) / 2.0), y: searchBarHeight + floor((areaHeight - image.size.height - labelSize.height) / 2.0)), size: image.size))
|
|
transition.updateFrame(node: self.notFoundLabel, frame: CGRect(origin: CGPoint(x: floor((image.size.width - labelSize.width) / 2.0), y: image.size.height + 8.0), size: labelSize))
|
|
}
|
|
|
|
let contentFrame = CGRect(origin: CGPoint(x: leftInset, y: searchBarHeight), size: CGSize(width: size.width - leftInset - rightInset, height: size.height - searchBarHeight))
|
|
|
|
self.gridNode.transaction(GridNodeTransaction(deleteItems: [], insertItems: [], updateItems: [], scrollToItem: nil, updateLayout: GridNodeUpdateLayout(layout: GridNodeLayout(size: contentFrame.size, insets: UIEdgeInsets(top: 4.0, left: 0.0, bottom: 4.0 + bottomInset, right: 0.0), preloadSize: 300.0, type: .fixed(itemSize: CGSize(width: 75.0, height: 75.0), fillWidth: nil, lineSpacing: 0.0, itemSpacing: nil)), transition: transition), itemTransition: .immediate, stationaryItems: .none, updateFirstIndexInSectionOffset: nil), completion: { _ in })
|
|
|
|
transition.updateFrame(node: self.trendingPane, frame: contentFrame)
|
|
self.trendingPane.updateLayout(size: contentFrame.size, topInset: 0.0, bottomInset: bottomInset, isExpanded: false, isVisible: true, transition: transition)
|
|
|
|
transition.updateFrame(node: self.gridNode, frame: contentFrame)
|
|
if firstLayout {
|
|
while !self.enqueuedTransitions.isEmpty {
|
|
self.dequeueTransition()
|
|
}
|
|
}
|
|
}
|
|
|
|
func deactivate() {
|
|
self.searchBar.deactivate(clear: true)
|
|
}
|
|
|
|
func animateIn(from placeholder: StickerPaneSearchBarPlaceholderNode, transition: ContainedViewLayoutTransition) {
|
|
self.gridNode.alpha = 0.0
|
|
transition.updateAlpha(node: self.gridNode, alpha: 1.0, completion: { _ in
|
|
})
|
|
self.trendingPane.alpha = 0.0
|
|
transition.updateAlpha(node: self.trendingPane, alpha: 1.0, completion: { _ in
|
|
})
|
|
switch transition {
|
|
case let .animated(duration, curve):
|
|
self.backgroundNode.layer.animateAlpha(from: 0.0, to: 1.0, duration: duration / 2.0)
|
|
self.searchBar.animateIn(from: placeholder, duration: duration, timingFunction: curve.timingFunction)
|
|
let placeholderFrame = placeholder.view.convert(placeholder.bounds, to: self.view)
|
|
if let size = self.validLayout {
|
|
let verticalOrigin = placeholderFrame.minY - 4.0
|
|
let initialBackgroundFrame = CGRect(origin: CGPoint(x: 0.0, y: verticalOrigin), size: CGSize(width: size.width, height: max(0.0, size.height - verticalOrigin)))
|
|
self.backgroundNode.layer.animateFrame(from: initialBackgroundFrame, to: self.backgroundNode.frame, duration: duration, timingFunction: curve.timingFunction)
|
|
self.trendingPane.layer.animatePosition(from: CGPoint(x: 0.0, y: initialBackgroundFrame.minY - self.backgroundNode.frame.minY), to: CGPoint(), duration: duration, timingFunction: curve.timingFunction, additive: true)
|
|
}
|
|
case .immediate:
|
|
break
|
|
}
|
|
}
|
|
|
|
func animateOut(to placeholder: StickerPaneSearchBarPlaceholderNode, transition: ContainedViewLayoutTransition, completion: @escaping () -> Void) {
|
|
if case let .animated(duration, curve) = transition {
|
|
if let size = self.validLayout {
|
|
let placeholderFrame = placeholder.view.convert(placeholder.bounds, to: self.view)
|
|
let verticalOrigin = placeholderFrame.minY - 4.0
|
|
self.backgroundNode.layer.animateFrame(from: self.backgroundNode.frame, to: CGRect(origin: CGPoint(x: 0.0, y: verticalOrigin), size: CGSize(width: size.width, height: max(0.0, size.height - verticalOrigin))), duration: duration, timingFunction: curve.timingFunction, removeOnCompletion: false)
|
|
}
|
|
}
|
|
self.searchBar.transitionOut(to: placeholder, transition: transition, completion: {
|
|
completion()
|
|
})
|
|
transition.updateAlpha(node: self.searchBar, alpha: 0.0, completion: { _ in
|
|
})
|
|
transition.updateAlpha(node: self.backgroundNode, alpha: 0.0, completion: { _ in
|
|
})
|
|
transition.updateAlpha(node: self.gridNode, alpha: 0.0, completion: { _ in
|
|
})
|
|
transition.updateAlpha(node: self.trendingPane, alpha: 0.0, completion: { _ in
|
|
})
|
|
transition.updateAlpha(node: self.notFoundNode, alpha: 0.0, completion: { _ in
|
|
})
|
|
self.deactivate()
|
|
}
|
|
|
|
private func enqueueTransition(_ transition: StickerPaneSearchGridTransition) {
|
|
enqueuedTransitions.append(transition)
|
|
|
|
if self.validLayout != nil {
|
|
while !self.enqueuedTransitions.isEmpty {
|
|
self.dequeueTransition()
|
|
}
|
|
}
|
|
}
|
|
|
|
private func dequeueTransition() {
|
|
if let transition = self.enqueuedTransitions.first {
|
|
self.enqueuedTransitions.remove(at: 0)
|
|
|
|
let itemTransition: ContainedViewLayoutTransition = .immediate
|
|
self.gridNode.transaction(GridNodeTransaction(deleteItems: transition.deletions, insertItems: transition.insertions, updateItems: transition.updates, scrollToItem: transition.scrollToItem, updateLayout: nil, itemTransition: itemTransition, stationaryItems: .none, updateFirstIndexInSectionOffset: transition.updateFirstIndexInSectionOffset), completion: { _ in })
|
|
}
|
|
}
|
|
|
|
func updatePreviewing(animated: Bool) {
|
|
self.gridNode.forEachItemNode { itemNode in
|
|
if let itemNode = itemNode as? StickerPaneSearchStickerItemNode {
|
|
itemNode.updatePreviewing(animated: animated)
|
|
} else if let itemNode = itemNode as? StickerPaneSearchGlobalItemNode {
|
|
itemNode.updatePreviewing(animated: animated)
|
|
}
|
|
}
|
|
self.trendingPane.updatePreviewing(animated: animated)
|
|
}
|
|
|
|
func itemAt(point: CGPoint) -> (ASDisplayNode, StickerPreviewPeekItem)? {
|
|
if !self.trendingPane.isHidden {
|
|
if let (itemNode, item) = self.trendingPane.itemAt(point: self.view.convert(point, to: self.trendingPane.view)) {
|
|
return (itemNode, .pack(item))
|
|
}
|
|
} else {
|
|
if let itemNode = self.gridNode.itemNodeAtPoint(self.view.convert(point, to: self.gridNode.view)) {
|
|
if let itemNode = itemNode as? StickerPaneSearchStickerItemNode, let stickerItem = itemNode.stickerItem {
|
|
return (itemNode, .found(stickerItem))
|
|
} else if let itemNode = itemNode as? StickerPaneSearchGlobalItemNode {
|
|
if let (node, item) = itemNode.itemAt(point: self.view.convert(point, to: itemNode.view)) {
|
|
return (node, .pack(item))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
}
|