Hook up GIFs

pull/347/head
nielsandriesse 4 years ago
parent a25276b5be
commit 0e2cf4d269

@ -2,7 +2,7 @@ import CoreServices
import Photos import Photos
extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuActionDelegate, ScrollToBottomButtonDelegate, extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuActionDelegate, ScrollToBottomButtonDelegate,
SendMediaNavDelegate, UIDocumentPickerDelegate, AttachmentApprovalViewControllerDelegate { SendMediaNavDelegate, UIDocumentPickerDelegate, AttachmentApprovalViewControllerDelegate, GifPickerViewControllerDelegate {
@objc func openSettings() { @objc func openSettings() {
let settingsVC = OWSConversationSettingsViewController() let settingsVC = OWSConversationSettingsViewController()
@ -93,7 +93,14 @@ extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuAc
} }
func handleGIFButtonTapped() { 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() { func handleDocumentButtonTapped() {

@ -2,11 +2,11 @@
// TODO // TODO
// Tapping replies // Tapping replies
// Mentions // Mentions
// Remaining send logic
// Slight paging glitch // Slight paging glitch
// Scrolling bug // Scrolling bug
// Scroll button bug // Scroll button bug
// Image detail VC transition glitch // Image detail VC transition glitch
// Photo rounding
final class ConversationVC : BaseVC, ConversationViewModelDelegate, UITableViewDataSource, UITableViewDelegate { final class ConversationVC : BaseVC, ConversationViewModelDelegate, UITableViewDataSource, UITableViewDelegate {
let thread: TSThread let thread: TSThread

Loading…
Cancel
Save