WIP: emoji picker

This commit is contained in:
Ryan Zhao 2022-06-09 14:50:52 +10:00
parent e061b14ceb
commit 7fb896fb30
3 changed files with 14 additions and 1 deletions

View File

@ -2083,6 +2083,13 @@
path = Utilities;
sourceTree = "<group>";
};
7B1B52BD2851ADE1006069F2 /* Emoji Picker */ = {
isa = PBXGroup;
children = (
);
path = "Emoji Picker";
sourceTree = "<group>";
};
7B7CB18C270D06350079FF93 /* Views & Modals */ = {
isa = PBXGroup;
children = (
@ -2302,6 +2309,7 @@
B835247725C38D190089A44F /* Message Cells */,
C328252E25CA54F70062D0A7 /* Context Menu */,
B821493625D4D6A7009C0F2A /* Views & Modals */,
7B1B52BD2851ADE1006069F2 /* Emoji Picker */,
C302094625DCDFD3001F572D /* Settings */,
);
path = Conversations;

View File

@ -89,7 +89,10 @@ extension ContextMenuVC {
// MARK: Interaction
@objc private func handleTap() {
dismiss()
work()
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3, execute: { [weak self] in
self?.work()
})
}
}

View File

@ -880,6 +880,8 @@ extension ConversationVC : InputViewDelegate, MessageCellDelegate, ContextMenuAc
func showFullEmojiKeyboard(_ viewItem: ConversationViewItem) {
// TODO: to be implemented
print("Ryan Test: showFullEmojiKeyboard")
}
func contextMenuDismissed() {