mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
597 lines
31 KiB
Swift
597 lines
31 KiB
Swift
import Foundation
|
|
import Display
|
|
import AsyncDisplayKit
|
|
import Postbox
|
|
import TelegramCore
|
|
import SwiftSignalKit
|
|
|
|
private func areWallpapersEqual(_ lhs: TelegramWallpaper, _ rhs: TelegramWallpaper) -> Bool {
|
|
switch lhs {
|
|
case .builtin:
|
|
if case .builtin = rhs {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
case let .color(color):
|
|
if case .color(color) = rhs {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
case let .image(representations):
|
|
if case .image(representations) = rhs {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
case let .file(lhsId, _, _, _, lhsSlug, _):
|
|
if case let .file(rhsId, _, _, _, rhsSlug, _) = rhs, lhsId == rhsId, lhsSlug == rhsSlug {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ThemeGridControllerNodeState: Equatable {
|
|
let editing: Bool
|
|
var selectedIndices: Set<Int>
|
|
|
|
func withUpdatedEditing(_ editing: Bool) -> ThemeGridControllerNodeState {
|
|
return ThemeGridControllerNodeState(editing: editing, selectedIndices: self.selectedIndices)
|
|
}
|
|
|
|
func withUpdatedSelectedIndices(_ selectedIndices: Set<Int>) -> ThemeGridControllerNodeState {
|
|
return ThemeGridControllerNodeState(editing: self.editing, selectedIndices: selectedIndices)
|
|
}
|
|
|
|
static func ==(lhs: ThemeGridControllerNodeState, rhs: ThemeGridControllerNodeState) -> Bool {
|
|
if lhs.editing != rhs.editing {
|
|
return false
|
|
}
|
|
if lhs.selectedIndices != rhs.selectedIndices {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
}
|
|
|
|
final class ThemeGridControllerInteraction {
|
|
let openWallpaper: (TelegramWallpaper) -> Void
|
|
let toggleWallpaperSelection: (Int, Bool) -> Void
|
|
let deleteSelectedWallpapers: () -> Void
|
|
let shareSelectedWallpapers: () -> Void
|
|
var selectionState: (Bool, Set<Int>) = (false, Set())
|
|
|
|
init(openWallpaper: @escaping (TelegramWallpaper) -> Void, toggleWallpaperSelection: @escaping (Int, Bool) -> Void, deleteSelectedWallpapers: @escaping () -> Void, shareSelectedWallpapers: @escaping () -> Void) {
|
|
self.openWallpaper = openWallpaper
|
|
self.toggleWallpaperSelection = toggleWallpaperSelection
|
|
self.deleteSelectedWallpapers = deleteSelectedWallpapers
|
|
self.shareSelectedWallpapers = shareSelectedWallpapers
|
|
}
|
|
}
|
|
|
|
private struct ThemeGridControllerEntry: Comparable, Identifiable {
|
|
let index: Int
|
|
let wallpaper: TelegramWallpaper
|
|
let selected: Bool
|
|
|
|
static func ==(lhs: ThemeGridControllerEntry, rhs: ThemeGridControllerEntry) -> Bool {
|
|
return lhs.index == rhs.index && lhs.wallpaper == rhs.wallpaper && lhs.selected == rhs.selected
|
|
}
|
|
|
|
static func <(lhs: ThemeGridControllerEntry, rhs: ThemeGridControllerEntry) -> Bool {
|
|
return lhs.index < rhs.index
|
|
}
|
|
|
|
var stableId: Int {
|
|
return self.index
|
|
}
|
|
|
|
func item(context: AccountContext, interaction: ThemeGridControllerInteraction) -> ThemeGridControllerItem {
|
|
return ThemeGridControllerItem(context: context, wallpaper: self.wallpaper, index: self.index, selected: self.selected, interaction: interaction)
|
|
}
|
|
}
|
|
|
|
private struct ThemeGridEntryTransition {
|
|
let deletions: [Int]
|
|
let insertions: [GridNodeInsertItem]
|
|
let updates: [GridNodeUpdateItem]
|
|
let isEmpty: Bool
|
|
let updateFirstIndexInSectionOffset: Int?
|
|
let stationaryItems: GridNodeStationaryItems
|
|
let scrollToItem: GridNodeScrollToItem?
|
|
}
|
|
|
|
private func preparedThemeGridEntryTransition(context: AccountContext, from fromEntries: [ThemeGridControllerEntry], to toEntries: [ThemeGridControllerEntry], interaction: ThemeGridControllerInteraction) -> ThemeGridEntryTransition {
|
|
let stationaryItems: GridNodeStationaryItems = .none
|
|
let scrollToItem: GridNodeScrollToItem? = nil
|
|
|
|
let (deleteIndices, indicesAndItems, updateIndices) = mergeListsStableWithUpdates(leftList: fromEntries, rightList: toEntries)
|
|
|
|
let deletions = deleteIndices
|
|
let insertions = indicesAndItems.map { GridNodeInsertItem(index: $0.0, item: $0.1.item(context: context, interaction: interaction), previousIndex: $0.2) }
|
|
let updates = updateIndices.map { GridNodeUpdateItem(index: $0.0, previousIndex: $0.2, item: $0.1.item(context: context, interaction: interaction)) }
|
|
|
|
var hasEditableItems = false
|
|
for entry in toEntries {
|
|
if case .file = entry.wallpaper {
|
|
hasEditableItems = true
|
|
break
|
|
}
|
|
}
|
|
|
|
return ThemeGridEntryTransition(deletions: deletions, insertions: insertions, updates: updates, isEmpty: !hasEditableItems, updateFirstIndexInSectionOffset: nil, stationaryItems: stationaryItems, scrollToItem: scrollToItem)
|
|
}
|
|
|
|
private func selectedWallpapers(entries: [ThemeGridControllerEntry]?, state: ThemeGridControllerNodeState) -> [TelegramWallpaper] {
|
|
guard let entries = entries, state.editing else {
|
|
return []
|
|
}
|
|
|
|
var i = 0
|
|
if let entry = entries.first {
|
|
i = entry.index
|
|
}
|
|
|
|
var wallpapers: [TelegramWallpaper] = []
|
|
for entry in entries {
|
|
if state.selectedIndices.contains(i) {
|
|
wallpapers.append(entry.wallpaper)
|
|
}
|
|
i += 1
|
|
}
|
|
return wallpapers
|
|
}
|
|
|
|
final class ThemeGridControllerNode: ASDisplayNode {
|
|
private let context: AccountContext
|
|
private var presentationData: PresentationData
|
|
private var controllerInteraction: ThemeGridControllerInteraction?
|
|
|
|
private let presentPreviewController: (WallpaperListSource) -> Void
|
|
private let presentGallery: () -> Void
|
|
private let presentColors: () -> Void
|
|
private let emptyStateUpdated: (Bool) -> Void
|
|
var requestDeactivateSearch: (() -> Void)?
|
|
|
|
let ready = ValuePromise<Bool>()
|
|
|
|
private var backgroundNode: ASDisplayNode
|
|
private var separatorNode: ASDisplayNode
|
|
|
|
private let colorItemNode: ItemListActionItemNode
|
|
private var colorItem: ItemListActionItem
|
|
|
|
private let galleryItemNode: ItemListActionItemNode
|
|
private var galleryItem: ItemListActionItem
|
|
|
|
private let descriptionItemNode: ItemListTextItemNode
|
|
private var descriptionItem: ItemListTextItem
|
|
|
|
private var selectionPanel: ThemeGridSelectionPanelNode?
|
|
private var selectionPanelSeparatorNode: ASDisplayNode?
|
|
private var selectionPanelBackgroundNode: ASDisplayNode?
|
|
|
|
let gridNode: GridNode
|
|
var navigationBar: NavigationBar?
|
|
|
|
private var queuedTransitions: [ThemeGridEntryTransition] = []
|
|
private var validLayout: (ContainerViewLayout, CGFloat)?
|
|
|
|
private(set) var currentState: ThemeGridControllerNodeState
|
|
private let statePromise: ValuePromise<ThemeGridControllerNodeState>
|
|
var state: Signal<ThemeGridControllerNodeState, NoError> {
|
|
return self.statePromise.get()
|
|
}
|
|
|
|
private(set) var searchDisplayController: SearchDisplayController?
|
|
|
|
private var disposable: Disposable?
|
|
|
|
init(context: AccountContext, presentationData: PresentationData, presentPreviewController: @escaping (WallpaperListSource) -> Void, presentGallery: @escaping () -> Void, presentColors: @escaping () -> Void, emptyStateUpdated: @escaping (Bool) -> Void, deleteWallpapers: @escaping ([TelegramWallpaper], @escaping () -> Void) -> Void, shareWallpapers: @escaping ([TelegramWallpaper]) -> Void, popViewController: @escaping () -> Void) {
|
|
self.context = context
|
|
self.presentationData = presentationData
|
|
self.presentPreviewController = presentPreviewController
|
|
self.presentGallery = presentGallery
|
|
self.presentColors = presentColors
|
|
self.emptyStateUpdated = emptyStateUpdated
|
|
|
|
self.gridNode = GridNode()
|
|
self.gridNode.showVerticalScrollIndicator = true
|
|
|
|
self.backgroundNode = ASDisplayNode()
|
|
self.backgroundNode.backgroundColor = presentationData.theme.list.blocksBackgroundColor
|
|
|
|
self.separatorNode = ASDisplayNode()
|
|
self.separatorNode.backgroundColor = presentationData.theme.list.itemBlocksSeparatorColor
|
|
|
|
self.colorItemNode = ItemListActionItemNode()
|
|
self.colorItem = ItemListActionItem(theme: presentationData.theme, title: presentationData.strings.Wallpaper_SetColor, kind: .generic, alignment: .natural, sectionId: 0, style: .blocks, action: {
|
|
presentColors()
|
|
})
|
|
self.galleryItemNode = ItemListActionItemNode()
|
|
self.galleryItem = ItemListActionItem(theme: presentationData.theme, title: presentationData.strings.Wallpaper_SetCustomBackground, kind: .generic, alignment: .natural, sectionId: 0, style: .blocks, action: {
|
|
presentGallery()
|
|
})
|
|
self.descriptionItemNode = ItemListTextItemNode()
|
|
self.descriptionItem = ItemListTextItem(theme: presentationData.theme, text: .plain(presentationData.strings.Wallpaper_SetCustomBackgroundInfo), sectionId: 0)
|
|
|
|
self.currentState = ThemeGridControllerNodeState(editing: false, selectedIndices: Set())
|
|
self.statePromise = ValuePromise(self.currentState, ignoreRepeated: true)
|
|
|
|
super.init()
|
|
|
|
self.setViewBlock({
|
|
return UITracingLayerView()
|
|
})
|
|
|
|
self.backgroundColor = presentationData.theme.list.itemBlocksBackgroundColor
|
|
|
|
self.gridNode.addSubnode(self.backgroundNode)
|
|
self.gridNode.addSubnode(self.separatorNode)
|
|
self.gridNode.addSubnode(self.colorItemNode)
|
|
self.gridNode.addSubnode(self.galleryItemNode)
|
|
//self.gridNode.addSubnode(self.descriptionItemNode)
|
|
self.addSubnode(self.gridNode)
|
|
|
|
let wallpapersPromise: Promise<[TelegramWallpaper]> = Promise()
|
|
wallpapersPromise.set(telegramWallpapers(postbox: context.account.postbox, network: context.account.network))
|
|
let previousEntries = Atomic<[ThemeGridControllerEntry]?>(value: nil)
|
|
|
|
let interaction = ThemeGridControllerInteraction(openWallpaper: { [weak self] wallpaper in
|
|
if let strongSelf = self, !strongSelf.currentState.editing {
|
|
let entries = previousEntries.with { $0 }
|
|
if let entries = entries, !entries.isEmpty {
|
|
let wallpapers = entries.map { $0.wallpaper }
|
|
|
|
var mode: WallpaperPresentationOptions?
|
|
if wallpaper == strongSelf.presentationData.chatWallpaper {
|
|
mode = strongSelf.presentationData.chatWallpaperMode
|
|
}
|
|
|
|
presentPreviewController(.list(wallpapers: wallpapers, central: wallpaper, type: .wallpapers(mode)))
|
|
}
|
|
}
|
|
}, toggleWallpaperSelection: { [weak self] index, value in
|
|
if let strongSelf = self {
|
|
strongSelf.updateState { current in
|
|
var updated = current.selectedIndices
|
|
if value {
|
|
updated.insert(index)
|
|
} else {
|
|
updated.remove(index)
|
|
}
|
|
return current.withUpdatedSelectedIndices(updated)
|
|
}
|
|
}
|
|
}, deleteSelectedWallpapers: { [weak self] in
|
|
let entries = previousEntries.with { $0 }
|
|
if let strongSelf = self, let entries = entries {
|
|
deleteWallpapers(selectedWallpapers(entries: entries, state: strongSelf.currentState), { [weak self] in
|
|
if let strongSelf = self {
|
|
var updatedWallpapers: [TelegramWallpaper] = []
|
|
for entry in entries {
|
|
if !strongSelf.currentState.selectedIndices.contains(entry.index) {
|
|
updatedWallpapers.append(entry.wallpaper)
|
|
}
|
|
}
|
|
wallpapersPromise.set(.single(updatedWallpapers))
|
|
}
|
|
})
|
|
}
|
|
}, shareSelectedWallpapers: { [weak self] in
|
|
let entries = previousEntries.with { $0 }
|
|
if let strongSelf = self, let entries = entries {
|
|
shareWallpapers(selectedWallpapers(entries: entries, state: strongSelf.currentState))
|
|
}
|
|
})
|
|
self.controllerInteraction = interaction
|
|
|
|
let transition = combineLatest(wallpapersPromise.get(), context.presentationData)
|
|
|> map { wallpapers, presentationData -> (ThemeGridEntryTransition, Bool) in
|
|
var entries: [ThemeGridControllerEntry] = []
|
|
var index = 1
|
|
|
|
var hasCurrent = false
|
|
for wallpaper in wallpapers {
|
|
let selected = areWallpapersEqual(presentationData.chatWallpaper, wallpaper)
|
|
entries.append(ThemeGridControllerEntry(index: index, wallpaper: wallpaper, selected: selected))
|
|
hasCurrent = hasCurrent || selected
|
|
index += 1
|
|
}
|
|
|
|
if !hasCurrent {
|
|
entries.insert(ThemeGridControllerEntry(index: 0, wallpaper: presentationData.chatWallpaper, selected: true), at: 0)
|
|
}
|
|
|
|
let previous = previousEntries.swap(entries)
|
|
return (preparedThemeGridEntryTransition(context: context, from: previous ?? [], to: entries, interaction: interaction), previous == nil)
|
|
}
|
|
self.disposable = (transition |> deliverOnMainQueue).start(next: { [weak self] (transition, _) in
|
|
if let strongSelf = self {
|
|
strongSelf.enqueueTransition(transition)
|
|
}
|
|
})
|
|
}
|
|
|
|
deinit {
|
|
self.disposable?.dispose()
|
|
}
|
|
|
|
override func didLoad() {
|
|
super.didLoad()
|
|
|
|
let tapRecognizer = TapLongTapOrDoubleTapGestureRecognizer(target: self, action: #selector(self.tapAction(_:)))
|
|
tapRecognizer.delaysTouchesBegan = false
|
|
tapRecognizer.tapActionAtPoint = { _ in
|
|
return .waitForSingleTap
|
|
}
|
|
tapRecognizer.highlight = { [weak self] point in
|
|
if let strongSelf = self {
|
|
var highlightedNode: ListViewItemNode?
|
|
if let point = point {
|
|
if strongSelf.colorItemNode.frame.contains(point) {
|
|
highlightedNode = strongSelf.colorItemNode
|
|
} else if strongSelf.galleryItemNode.frame.contains(point) {
|
|
highlightedNode = strongSelf.galleryItemNode
|
|
}
|
|
}
|
|
|
|
if let highlightedNode = highlightedNode {
|
|
highlightedNode.setHighlighted(true, at: CGPoint(), animated: false)
|
|
} else {
|
|
strongSelf.colorItemNode.setHighlighted(false, at: CGPoint(), animated: true)
|
|
strongSelf.galleryItemNode.setHighlighted(false, at: CGPoint(), animated: true)
|
|
}
|
|
}
|
|
}
|
|
self.gridNode.view.addGestureRecognizer(tapRecognizer)
|
|
}
|
|
|
|
@objc private func tapAction(_ recognizer: TapLongTapOrDoubleTapGestureRecognizer) {
|
|
switch recognizer.state {
|
|
case .ended:
|
|
if let (gesture, location) = recognizer.lastRecognizedGestureAndLocation {
|
|
switch gesture {
|
|
case .tap:
|
|
if self.colorItemNode.frame.contains(location) {
|
|
self.colorItem.action()
|
|
} else if self.galleryItemNode.frame.contains(location) {
|
|
self.galleryItem.action()
|
|
}
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
func updatePresentationData(_ presentationData: PresentationData) {
|
|
self.presentationData = presentationData
|
|
|
|
self.backgroundColor = presentationData.theme.list.itemBlocksBackgroundColor
|
|
self.searchDisplayController?.updatePresentationData(self.presentationData)
|
|
|
|
self.colorItem = ItemListActionItem(theme: presentationData.theme, title: presentationData.strings.Wallpaper_SetColor, kind: .generic, alignment: .natural, sectionId: 0, style: .blocks, action: { [weak self] in
|
|
self?.presentColors()
|
|
})
|
|
self.galleryItem = ItemListActionItem(theme: presentationData.theme, title: presentationData.strings.Wallpaper_SetCustomBackground, kind: .generic, alignment: .natural, sectionId: 0, style: .blocks, action: { [weak self] in
|
|
self?.presentGallery()
|
|
})
|
|
self.descriptionItem = ItemListTextItem(theme: presentationData.theme, text: .plain(presentationData.strings.Wallpaper_SetCustomBackgroundInfo), sectionId: 0)
|
|
|
|
if let (layout, navigationBarHeight) = self.validLayout {
|
|
self.containerLayoutUpdated(layout, navigationBarHeight: navigationBarHeight, transition: .immediate)
|
|
}
|
|
}
|
|
|
|
func updateState(_ f: (ThemeGridControllerNodeState) -> ThemeGridControllerNodeState) {
|
|
let state = f(self.currentState)
|
|
if state != self.currentState {
|
|
self.currentState = state
|
|
self.statePromise.set(state)
|
|
}
|
|
|
|
let selectionState = (self.currentState.editing, self.currentState.selectedIndices)
|
|
if let interaction = self.controllerInteraction, interaction.selectionState != selectionState {
|
|
let requestLayout = interaction.selectionState.0 != self.currentState.editing
|
|
self.controllerInteraction?.selectionState = selectionState
|
|
|
|
self.gridNode.forEachItemNode { itemNode in
|
|
if let node = itemNode as? ThemeGridControllerItemNode {
|
|
node.updateSelectionState(animated: true)
|
|
}
|
|
}
|
|
|
|
if requestLayout, let (containerLayout, navigationBarHeight) = self.validLayout {
|
|
self.containerLayoutUpdated(containerLayout, navigationBarHeight: navigationBarHeight, transition: .animated(duration: 0.4, curve: .spring))
|
|
}
|
|
self.selectionPanel?.selectedIndices = selectionState.1
|
|
}
|
|
}
|
|
|
|
private func enqueueTransition(_ transition: ThemeGridEntryTransition) {
|
|
self.queuedTransitions.append(transition)
|
|
if self.validLayout != nil {
|
|
self.dequeueTransitions()
|
|
}
|
|
}
|
|
|
|
private func dequeueTransitions() {
|
|
while !self.queuedTransitions.isEmpty {
|
|
let transition = self.queuedTransitions.removeFirst()
|
|
self.gridNode.transaction(GridNodeTransaction(deleteItems: transition.deletions, insertItems: transition.insertions, updateItems: transition.updates, scrollToItem: transition.scrollToItem, updateLayout: nil, itemTransition: .immediate, stationaryItems: transition.stationaryItems, updateFirstIndexInSectionOffset: transition.updateFirstIndexInSectionOffset), completion: { [weak self] _ in
|
|
if let strongSelf = self {
|
|
strongSelf.ready.set(true)
|
|
}
|
|
})
|
|
|
|
self.emptyStateUpdated(transition.isEmpty)
|
|
}
|
|
}
|
|
|
|
func containerLayoutUpdated(_ layout: ContainerViewLayout, navigationBarHeight: CGFloat, transition: ContainedViewLayoutTransition) {
|
|
let hadValidLayout = self.validLayout != nil
|
|
self.validLayout = (layout, navigationBarHeight)
|
|
|
|
var insets = layout.insets(options: [.input])
|
|
insets.top += navigationBarHeight
|
|
insets.left = layout.safeInsets.left
|
|
insets.right = layout.safeInsets.right
|
|
let scrollIndicatorInsets = insets
|
|
|
|
let minSpacing: CGFloat = 8.0
|
|
let referenceImageSize: CGSize
|
|
let screenWidth = min(layout.size.width, layout.size.height)
|
|
if screenWidth >= 375.0 {
|
|
referenceImageSize = CGSize(width: 108.0, height: 230.0)
|
|
} else {
|
|
referenceImageSize = CGSize(width: 91.0, height: 161.0)
|
|
}
|
|
let imageCount = Int((layout.size.width - insets.left - insets.right - minSpacing * 2.0) / (referenceImageSize.width + minSpacing))
|
|
let imageSize = referenceImageSize.aspectFilled(CGSize(width: floor((layout.size.width - CGFloat(imageCount + 1) * minSpacing) / CGFloat(imageCount)), height: referenceImageSize.height))
|
|
let spacing = floor((layout.size.width - CGFloat(imageCount) * imageSize.width) / CGFloat(imageCount + 1))
|
|
|
|
let makeColorLayout = self.colorItemNode.asyncLayout()
|
|
let makeGalleryLayout = self.galleryItemNode.asyncLayout()
|
|
let makeDescriptionLayout = self.descriptionItemNode.asyncLayout()
|
|
|
|
let params = ListViewItemLayoutParams(width: layout.size.width, leftInset: insets.left, rightInset: insets.right)
|
|
let (colorLayout, colorApply) = makeColorLayout(self.colorItem, params, ItemListNeighbors(top: .none, bottom: .sameSection(alwaysPlain: false)))
|
|
let (galleryLayout, galleryApply) = makeGalleryLayout(self.galleryItem, params, ItemListNeighbors(top: .sameSection(alwaysPlain: false), bottom: .sameSection(alwaysPlain: true)))
|
|
let (descriptionLayout, descriptionApply) = makeDescriptionLayout(self.descriptionItem, params, ItemListNeighbors(top: .none, bottom: .none))
|
|
|
|
colorApply()
|
|
galleryApply()
|
|
descriptionApply()
|
|
|
|
let buttonTopInset: CGFloat = 32.0
|
|
let buttonHeight: CGFloat = 44.0
|
|
let buttonBottomInset: CGFloat = 35.0 //descriptionLayout.contentSize.height + 17.0
|
|
|
|
let buttonInset: CGFloat = buttonTopInset + buttonHeight * 2.0 + buttonBottomInset
|
|
let buttonOffset = buttonInset + 10.0
|
|
|
|
transition.updateFrame(node: self.backgroundNode, frame: CGRect(origin: CGPoint(x: 0.0, y: -buttonOffset - 500.0), size: CGSize(width: layout.size.width, height: buttonInset + 500.0)))
|
|
transition.updateFrame(node: self.separatorNode, frame: CGRect(origin: CGPoint(x: 0.0, y: -buttonOffset + buttonInset - UIScreenPixel), size: CGSize(width: layout.size.width, height: UIScreenPixel)))
|
|
|
|
transition.updateFrame(node: self.colorItemNode, frame: CGRect(origin: CGPoint(x: 0.0, y: -buttonOffset + buttonTopInset), size: colorLayout.contentSize))
|
|
transition.updateFrame(node: self.galleryItemNode, frame: CGRect(origin: CGPoint(x: 0.0, y: -buttonOffset + buttonTopInset + colorLayout.contentSize.height), size: galleryLayout.contentSize))
|
|
transition.updateFrame(node: self.descriptionItemNode, frame: CGRect(origin: CGPoint(x: 0.0, y: -buttonOffset + buttonTopInset + colorLayout.contentSize.height + galleryLayout.contentSize.height), size: descriptionLayout.contentSize))
|
|
|
|
insets.top += spacing + buttonInset
|
|
|
|
if self.currentState.editing {
|
|
if let selectionPanel = self.selectionPanel {
|
|
selectionPanel.selectedIndices = self.currentState.selectedIndices
|
|
let panelHeight = selectionPanel.updateLayout(width: layout.size.width, leftInset: layout.safeInsets.left, rightInset: layout.safeInsets.right, maxHeight: 0.0, transition: transition, metrics: layout.metrics)
|
|
transition.updateFrame(node: selectionPanel, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: panelHeight)))
|
|
if let selectionPanelSeparatorNode = self.selectionPanelSeparatorNode {
|
|
transition.updateFrame(node: selectionPanelSeparatorNode, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: UIScreenPixel)))
|
|
}
|
|
if let selectionPanelBackgroundNode = self.selectionPanelBackgroundNode {
|
|
transition.updateFrame(node: selectionPanelBackgroundNode, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: insets.bottom + panelHeight)))
|
|
}
|
|
} else {
|
|
let selectionPanelBackgroundNode = ASDisplayNode()
|
|
selectionPanelBackgroundNode.isLayerBacked = true
|
|
selectionPanelBackgroundNode.backgroundColor = self.presentationData.theme.chat.inputPanel.panelBackgroundColor
|
|
self.addSubnode(selectionPanelBackgroundNode)
|
|
self.selectionPanelBackgroundNode = selectionPanelBackgroundNode
|
|
|
|
let selectionPanel = ThemeGridSelectionPanelNode(theme: self.presentationData.theme)
|
|
selectionPanel.backgroundColor = self.presentationData.theme.chat.inputPanel.panelBackgroundColor
|
|
selectionPanel.controllerInteraction = self.controllerInteraction
|
|
selectionPanel.selectedIndices = self.currentState.selectedIndices
|
|
let panelHeight = selectionPanel.updateLayout(width: layout.size.width, leftInset: layout.safeInsets.left, rightInset: layout.safeInsets.right, maxHeight: 0.0, transition: .immediate, metrics: layout.metrics)
|
|
self.selectionPanel = selectionPanel
|
|
self.addSubnode(selectionPanel)
|
|
|
|
let selectionPanelSeparatorNode = ASDisplayNode()
|
|
selectionPanelSeparatorNode.isLayerBacked = true
|
|
selectionPanelSeparatorNode.backgroundColor = self.presentationData.theme.chat.inputPanel.panelStrokeColor
|
|
self.addSubnode(selectionPanelSeparatorNode)
|
|
self.selectionPanelSeparatorNode = selectionPanelSeparatorNode
|
|
|
|
selectionPanel.frame = CGRect(origin: CGPoint(x: 0.0, y: layout.size.height), size: CGSize(width: layout.size.width, height: panelHeight))
|
|
selectionPanelBackgroundNode.frame = CGRect(origin: CGPoint(x: 0.0, y: layout.size.height), size: CGSize(width: layout.size.width, height: 0.0))
|
|
selectionPanelSeparatorNode.frame = CGRect(origin: CGPoint(x: 0.0, y: layout.size.height), size: CGSize(width: layout.size.width, height: UIScreenPixel))
|
|
transition.updateFrame(node: selectionPanel, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: panelHeight)))
|
|
transition.updateFrame(node: selectionPanelBackgroundNode, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: insets.bottom + panelHeight)))
|
|
transition.updateFrame(node: selectionPanelSeparatorNode, frame: CGRect(origin: CGPoint(x: 0.0, y: layout.size.height - insets.bottom - panelHeight), size: CGSize(width: layout.size.width, height: UIScreenPixel)))
|
|
}
|
|
} else if let selectionPanel = self.selectionPanel {
|
|
self.selectionPanel = nil
|
|
transition.updateFrame(node: selectionPanel, frame: selectionPanel.frame.offsetBy(dx: 0.0, dy: selectionPanel.bounds.size.height + insets.bottom), completion: { [weak selectionPanel] _ in
|
|
selectionPanel?.removeFromSupernode()
|
|
})
|
|
if let selectionPanelSeparatorNode = self.selectionPanelSeparatorNode {
|
|
transition.updateFrame(node: selectionPanelSeparatorNode, frame: selectionPanelSeparatorNode.frame.offsetBy(dx: 0.0, dy: selectionPanel.bounds.size.height + insets.bottom), completion: { [weak selectionPanelSeparatorNode] _ in
|
|
selectionPanelSeparatorNode?.removeFromSupernode()
|
|
})
|
|
}
|
|
if let selectionPanelBackgroundNode = self.selectionPanelBackgroundNode {
|
|
transition.updateFrame(node: selectionPanelBackgroundNode, frame: selectionPanelBackgroundNode.frame.offsetBy(dx: 0.0, dy: selectionPanel.bounds.size.height + insets.bottom), completion: { [weak selectionPanelSeparatorNode] _ in
|
|
selectionPanelSeparatorNode?.removeFromSupernode()
|
|
})
|
|
}
|
|
}
|
|
|
|
self.gridNode.frame = CGRect(x: 0.0, y: 0.0, width: layout.size.width, height: layout.size.height)
|
|
self.gridNode.transaction(GridNodeTransaction(deleteItems: [], insertItems: [], updateItems: [], scrollToItem: nil, updateLayout: GridNodeUpdateLayout(layout: GridNodeLayout(size: layout.size, insets: insets, scrollIndicatorInsets: scrollIndicatorInsets, preloadSize: 300.0, type: .fixed(itemSize: imageSize, fillWidth: nil, lineSpacing: spacing, itemSpacing: nil)), transition: transition), itemTransition: .immediate, stationaryItems: .none, updateFirstIndexInSectionOffset: nil), completion: { _ in })
|
|
|
|
|
|
if !hadValidLayout {
|
|
self.dequeueTransitions()
|
|
}
|
|
|
|
if let searchDisplayController = self.searchDisplayController {
|
|
searchDisplayController.containerLayoutUpdated(layout, navigationBarHeight: navigationBarHeight, transition: transition)
|
|
}
|
|
}
|
|
|
|
func activateSearch(placeholderNode: SearchBarPlaceholderNode) {
|
|
guard let (containerLayout, navigationBarHeight) = self.validLayout, let navigationBar = self.navigationBar, self.searchDisplayController == nil else {
|
|
return
|
|
}
|
|
|
|
self.searchDisplayController = SearchDisplayController(presentationData: self.presentationData, contentNode: ThemeGridSearchContentNode(context: context, openResult: { [weak self] result in
|
|
if let strongSelf = self {
|
|
strongSelf.presentPreviewController(.contextResult(result))
|
|
}
|
|
}), cancel: { [weak self] in
|
|
self?.requestDeactivateSearch?()
|
|
})
|
|
|
|
self.searchDisplayController?.containerLayoutUpdated(containerLayout, navigationBarHeight: navigationBarHeight, transition: .immediate)
|
|
self.searchDisplayController?.activate(insertSubnode: { [weak self, weak placeholderNode] subnode, isSearchBar in
|
|
if let strongSelf = self, let strongPlaceholderNode = placeholderNode {
|
|
if isSearchBar {
|
|
strongPlaceholderNode.supernode?.insertSubnode(subnode, aboveSubnode: strongPlaceholderNode)
|
|
} else {
|
|
strongSelf.insertSubnode(subnode, belowSubnode: navigationBar)
|
|
}
|
|
}
|
|
}, placeholder: placeholderNode)
|
|
}
|
|
|
|
func deactivateSearch(placeholderNode: SearchBarPlaceholderNode, animated: Bool) {
|
|
if let searchDisplayController = self.searchDisplayController {
|
|
searchDisplayController.deactivate(placeholder: placeholderNode, animated: animated)
|
|
self.searchDisplayController = nil
|
|
}
|
|
}
|
|
|
|
func scrollToTop() {
|
|
if let searchDisplayController = self.searchDisplayController {
|
|
searchDisplayController.contentNode.scrollToTop()
|
|
} else {
|
|
self.gridNode.transaction(GridNodeTransaction(deleteItems: [], insertItems: [], updateItems: [], scrollToItem: GridNodeScrollToItem(index: 0, position: .top, transition: .animated(duration: 0.25, curve: .easeInOut), directionHint: .up, adjustForSection: true, adjustForTopInset: true), updateLayout: nil, itemTransition: .immediate, stationaryItems: .none, updateFirstIndexInSectionOffset: nil), completion: { _ in })
|
|
}
|
|
}
|
|
}
|