mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Merge Implement content restriction API
This commit is contained in:
parent
c3cc8e1827
commit
a7aa457a92
110 changed files with 697 additions and 434 deletions
|
|
@ -17,6 +17,7 @@ static_library(
|
|||
"//submodules/PeerOnlineMarkerNode:PeerOnlineMarkerNode",
|
||||
"//submodules/TelegramStringFormatting:TelegramStringFormatting",
|
||||
"//submodules/ContextUI:ContextUI",
|
||||
"//submodules/AccountContext:AccountContext",
|
||||
],
|
||||
frameworks = [
|
||||
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ import TelegramStringFormatting
|
|||
import PeerOnlineMarkerNode
|
||||
import SelectablePeerNode
|
||||
import ContextUI
|
||||
import AccountContext
|
||||
|
||||
public enum HorizontalPeerItemMode {
|
||||
case list
|
||||
|
|
@ -23,7 +24,7 @@ public final class HorizontalPeerItem: ListViewItem {
|
|||
let theme: PresentationTheme
|
||||
let strings: PresentationStrings
|
||||
let mode: HorizontalPeerItemMode
|
||||
let account: Account
|
||||
let context: AccountContext
|
||||
public let peer: Peer
|
||||
let action: (Peer) -> Void
|
||||
let contextAction: (Peer, ASDisplayNode, ContextGesture?) -> Void
|
||||
|
|
@ -32,11 +33,11 @@ public final class HorizontalPeerItem: ListViewItem {
|
|||
let presence: PeerPresence?
|
||||
let unreadBadge: (Int32, Bool)?
|
||||
|
||||
public init(theme: PresentationTheme, strings: PresentationStrings, mode: HorizontalPeerItemMode, account: Account, peer: Peer, presence: PeerPresence?, unreadBadge: (Int32, Bool)?, action: @escaping (Peer) -> Void, contextAction: @escaping (Peer, ASDisplayNode, ContextGesture?) -> Void, isPeerSelected: @escaping (PeerId) -> Bool, customWidth: CGFloat?) {
|
||||
public init(theme: PresentationTheme, strings: PresentationStrings, mode: HorizontalPeerItemMode, context: AccountContext, peer: Peer, presence: PeerPresence?, unreadBadge: (Int32, Bool)?, action: @escaping (Peer) -> Void, contextAction: @escaping (Peer, ASDisplayNode, ContextGesture?) -> Void, isPeerSelected: @escaping (PeerId) -> Bool, customWidth: CGFloat?) {
|
||||
self.theme = theme
|
||||
self.strings = strings
|
||||
self.mode = mode
|
||||
self.account = account
|
||||
self.context = context
|
||||
self.peer = peer
|
||||
self.action = action
|
||||
self.contextAction = contextAction
|
||||
|
|
@ -187,7 +188,7 @@ public final class HorizontalPeerItemNode: ListViewItemNode {
|
|||
if let strongSelf = self {
|
||||
strongSelf.item = item
|
||||
strongSelf.peerNode.theme = itemTheme
|
||||
strongSelf.peerNode.setup(account: item.account, theme: item.theme, strings: item.strings, peer: RenderedPeer(peer: item.peer), numberOfLines: 1, synchronousLoad: false)
|
||||
strongSelf.peerNode.setup(context: item.context, theme: item.theme, strings: item.strings, peer: RenderedPeer(peer: item.peer), numberOfLines: 1, synchronousLoad: false)
|
||||
strongSelf.peerNode.frame = CGRect(origin: CGPoint(), size: itemLayout.size)
|
||||
strongSelf.peerNode.updateSelection(selected: item.isPeerSelected(item.peer.id), animated: false)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue