Hook up GIFs

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

@ -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() {

@ -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

Loading…
Cancel
Save