From 0e2cf4d269001c3d7bbc76c1126cfd938d34f89e Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Wed, 17 Feb 2021 10:23:50 +1100 Subject: [PATCH] Hook up GIFs --- .../Conversations V2/ConversationVC+Interaction.swift | 11 +++++++++-- Session/Conversations V2/ConversationVC.swift | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Session/Conversations V2/ConversationVC+Interaction.swift b/Session/Conversations V2/ConversationVC+Interaction.swift index 545ff7844..9649728a1 100644 --- a/Session/Conversations V2/ConversationVC+Interaction.swift +++ b/Session/Conversations V2/ConversationVC+Interaction.swift @@ -2,7 +2,7 @@ import CoreServices import Photos extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuActionDelegate, ScrollToBottomButtonDelegate, - SendMediaNavDelegate, UIDocumentPickerDelegate, AttachmentApprovalViewControllerDelegate { + SendMediaNavDelegate, UIDocumentPickerDelegate, AttachmentApprovalViewControllerDelegate, GifPickerViewControllerDelegate { @objc func openSettings() { let settingsVC = OWSConversationSettingsViewController() @@ -93,7 +93,14 @@ extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuAc } func handleGIFButtonTapped() { - // TODO: Implement + let gifVC = GifPickerViewController(thread: thread) + gifVC.delegate = self + let navController = OWSNavigationController(rootViewController: gifVC) + present(navController, animated: true) { } + } + + func gifPickerDidSelect(attachment: SignalAttachment) { + showAttachmentApprovalDialog(for: [ attachment ]) } func handleDocumentButtonTapped() { diff --git a/Session/Conversations V2/ConversationVC.swift b/Session/Conversations V2/ConversationVC.swift index f94bf9f70..a74bacc5e 100644 --- a/Session/Conversations V2/ConversationVC.swift +++ b/Session/Conversations V2/ConversationVC.swift @@ -2,11 +2,11 @@ // TODO // • Tapping replies // • Mentions -// • Remaining send logic // • Slight paging glitch // • Scrolling bug // • Scroll button bug // • Image detail VC transition glitch +// • Photo rounding final class ConversationVC : BaseVC, ConversationViewModelDelegate, UITableViewDataSource, UITableViewDelegate { let thread: TSThread