mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Adds ChatControllerInteraction dependency, link-progress state, URL tap detection, press-highlight separation from in-flight URL shimmer, media-tap routing through openMessage with explicit IV media subject, and gallery↔bubble transition with hidden-media coordination. Stops re-appending to currentLayoutItemsWithNodes across re-layouts. Drops a leftover MetalEngine debug print as well.
29 lines
982 B
Text
29 lines
982 B
Text
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "ChatMessageRichDataBubbleContentNode",
|
|
module_name = "ChatMessageRichDataBubbleContentNode",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/AsyncDisplayKit",
|
|
"//submodules/Display",
|
|
"//submodules/TelegramCore",
|
|
"//submodules/Postbox",
|
|
"//submodules/SSignalKit/SwiftSignalKit",
|
|
"//submodules/AccountContext",
|
|
"//submodules/InstantPageUI",
|
|
"//submodules/TelegramUI/Components/Chat/ChatMessageBubbleContentNode",
|
|
"//submodules/TelegramUI/Components/Chat/ChatMessageItemCommon",
|
|
"//submodules/TelegramUI/Components/ChatControllerInteraction",
|
|
"//submodules/TelegramUI/Components/TextLoadingEffect",
|
|
"//submodules/TelegramUIPreferences",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|