diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-15 21:14:39 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-07-15 21:14:39 -0400 |
commit | 52b52eb489caa64e6cea978f2c6917a55fa70979 (patch) | |
tree | 740be513f52752cf25479bede9e8e2231bf0ffa6 /src/components | |
parent | add48af094ec9111727862d3f2ee1916474a2471 (diff) | |
download | abaddon-portaudio-52b52eb489caa64e6cea978f2c6917a55fa70979.tar.gz abaddon-portaudio-52b52eb489caa64e6cea978f2c6917a55fa70979.zip |
check if message is editable
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/chatlist.cpp | 13 | ||||
-rw-r--r-- | src/components/chatlist.hpp | 2 | ||||
-rw-r--r-- | src/components/chatwindow.cpp | 2 |
3 files changed, 9 insertions, 8 deletions
diff --git a/src/components/chatlist.cpp b/src/components/chatlist.cpp index 28981b2..ba18c0a 100644 --- a/src/components/chatlist.cpp +++ b/src/components/chatlist.cpp @@ -133,10 +133,9 @@ void ChatList::ProcessNewMessage(const Message &data, bool prepend) { m_menu_delete_message->set_sensitive(false); m_menu_edit_message->set_sensitive(false); } else { - const bool can_edit = client.GetUserData().ID == data->Author.ID; - const bool can_delete = can_edit || has_manage; + const bool can_delete = (client.GetUserData().ID == data->Author.ID) || has_manage; m_menu_delete_message->set_sensitive(can_delete); - m_menu_edit_message->set_sensitive(can_edit); + m_menu_edit_message->set_sensitive(data->IsEditable()); } m_menu.popup_at_pointer(reinterpret_cast<GdkEvent *>(ev)); @@ -253,18 +252,20 @@ void ChatList::ActuallyRemoveMessage(Snowflake id) { RemoveMessageAndHeader(it->second); } -std::optional<Snowflake> ChatList::GetLastSentMessage() { +std::optional<Snowflake> ChatList::GetLastSentEditableMessage() { const auto &discord = Abaddon::Get().GetDiscordClient(); const auto self_id = discord.GetUserData().ID; std::map<Snowflake, Gtk::Widget *> ordered(m_id_to_widget.begin(), m_id_to_widget.end()); for (auto it = ordered.crbegin(); it != ordered.crend(); it++) { - const auto *widget = dynamic_cast<ChatMessageItemContainer*>(it->second); + const auto *widget = dynamic_cast<ChatMessageItemContainer *>(it->second); if (widget == nullptr) continue; const auto msg = discord.GetMessage(widget->ID); if (!msg.has_value()) continue; - if (msg->Author.ID == self_id) return msg->ID; + if (msg->Author.ID != self_id) continue; + if (!msg->IsEditable()) continue; + return msg->ID; } return std::nullopt; diff --git a/src/components/chatlist.hpp b/src/components/chatlist.hpp index 5d4ec4a..9f12df9 100644 --- a/src/components/chatlist.hpp +++ b/src/components/chatlist.hpp @@ -23,7 +23,7 @@ public: void SetSeparateAll(bool separate); void SetUsePinnedMenu(); // i think i need a better way to do menus void ActuallyRemoveMessage(Snowflake id); // perhaps not the best method name - std::optional<Snowflake> GetLastSentMessage(); + std::optional<Snowflake> GetLastSentEditableMessage(); private: void SetupMenu(); diff --git a/src/components/chatwindow.cpp b/src/components/chatwindow.cpp index 17f5601..aeed4ed 100644 --- a/src/components/chatwindow.cpp +++ b/src/components/chatwindow.cpp @@ -288,7 +288,7 @@ bool ChatWindow::OnInputSubmit(ChatSubmitParams data) { bool ChatWindow::ProcessKeyEvent(GdkEventKey *e) { if (e->type != GDK_KEY_PRESS) return false; if (e->keyval == GDK_KEY_Up && !(e->state & GDK_SHIFT_MASK) && m_input->IsEmpty()) { - const auto edit_id = m_chat->GetLastSentMessage(); + const auto edit_id = m_chat->GetLastSentEditableMessage(); if (edit_id.has_value()) { StartEditing(*edit_id); } |