mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
add typing indicator with optional res/typing_indicator.gif
This commit is contained in:
106
components/typingindicator.cpp
Normal file
106
components/typingindicator.cpp
Normal file
@@ -0,0 +1,106 @@
|
||||
#include <filesystem>
|
||||
#include "typingindicator.hpp"
|
||||
#include "../abaddon.hpp"
|
||||
#include "../util.hpp"
|
||||
|
||||
constexpr static const int MaxUsersInIndicator = 4;
|
||||
|
||||
TypingIndicator::TypingIndicator()
|
||||
: Gtk::Box(Gtk::ORIENTATION_HORIZONTAL) {
|
||||
m_label.set_text("");
|
||||
m_label.set_ellipsize(Pango::ELLIPSIZE_END);
|
||||
m_label.set_valign(Gtk::ALIGN_END);
|
||||
m_img.set_margin_right(5);
|
||||
get_style_context()->add_class("typing-indicator");
|
||||
|
||||
Abaddon::Get().GetDiscordClient().signal_typing_start().connect(sigc::mem_fun(*this, &TypingIndicator::OnUserTypingStart));
|
||||
Abaddon::Get().GetDiscordClient().signal_message_create().connect(sigc::mem_fun(*this, &TypingIndicator::OnMessageCreate));
|
||||
|
||||
add(m_img);
|
||||
add(m_label);
|
||||
m_label.show();
|
||||
|
||||
// try loading gif
|
||||
if (!std::filesystem::exists("./res/typing_indicator.gif")) return;
|
||||
auto gif_data = ReadWholeFile("./res/typing_indicator.gif");
|
||||
auto loader = Gdk::PixbufLoader::create();
|
||||
loader->signal_size_prepared().connect([&](int inw, int inh) {
|
||||
int w, h;
|
||||
GetImageDimensions(inw, inh, w, h, 20, 10);
|
||||
loader->set_size(w, h);
|
||||
});
|
||||
loader->write(gif_data.data(), gif_data.size());
|
||||
try {
|
||||
loader->close();
|
||||
m_img.property_pixbuf_animation() = loader->get_animation();
|
||||
} catch (const std::exception &) {}
|
||||
}
|
||||
|
||||
void TypingIndicator::AddUser(Snowflake channel_id, const UserData &user, int timeout) {
|
||||
auto current_connection_it = m_typers[channel_id].find(user.ID);
|
||||
if (current_connection_it != m_typers.at(channel_id).end()) {
|
||||
current_connection_it->second.disconnect();
|
||||
m_typers.at(channel_id).erase(current_connection_it);
|
||||
}
|
||||
|
||||
Snowflake user_id = user.ID;
|
||||
auto cb = [this, user_id, channel_id]() -> bool {
|
||||
m_typers.at(channel_id).erase(user_id);
|
||||
ComputeTypingString();
|
||||
return false;
|
||||
};
|
||||
m_typers[channel_id][user.ID] = Glib::signal_timeout().connect_seconds(cb, timeout);
|
||||
ComputeTypingString();
|
||||
}
|
||||
|
||||
void TypingIndicator::SetActiveChannel(Snowflake id) {
|
||||
m_active_channel = id;
|
||||
ComputeTypingString();
|
||||
}
|
||||
|
||||
void TypingIndicator::OnUserTypingStart(Snowflake user_id, Snowflake channel_id) {
|
||||
const auto &discord = Abaddon::Get().GetDiscordClient();
|
||||
const auto user = discord.GetUser(user_id);
|
||||
if (!user.has_value()) return;
|
||||
|
||||
AddUser(channel_id, *user, 10);
|
||||
}
|
||||
|
||||
void TypingIndicator::OnMessageCreate(Snowflake message_id) {
|
||||
const auto msg = Abaddon::Get().GetDiscordClient().GetMessage(message_id);
|
||||
if (!msg.has_value()) return;
|
||||
m_typers[msg->ChannelID].erase(msg->Author.ID);
|
||||
ComputeTypingString();
|
||||
}
|
||||
|
||||
void TypingIndicator::SetTypingString(const Glib::ustring &str) {
|
||||
m_label.set_text(str);
|
||||
if (str == "")
|
||||
m_img.hide();
|
||||
else if (m_img.property_pixbuf_animation().get_value())
|
||||
m_img.show();
|
||||
}
|
||||
|
||||
void TypingIndicator::ComputeTypingString() {
|
||||
const auto &discord = Abaddon::Get().GetDiscordClient();
|
||||
std::vector<UserData> typers;
|
||||
for (const auto &[id, conn] : m_typers[m_active_channel]) {
|
||||
const auto user = discord.GetUser(id);
|
||||
if (user.has_value())
|
||||
typers.push_back(*user);
|
||||
}
|
||||
if (typers.size() == 0) {
|
||||
SetTypingString("");
|
||||
} else if (typers.size() == 1) {
|
||||
SetTypingString(typers[0].Username + " is typing...");
|
||||
} else if (typers.size() == 2) {
|
||||
SetTypingString(typers[0].Username + " and " + typers[1].Username + " are typing...");
|
||||
} else if (typers.size() > 2 && typers.size() <= MaxUsersInIndicator) {
|
||||
Glib::ustring str;
|
||||
for (int i = 0; i < typers.size() - 1; i++)
|
||||
str += typers[i].Username + ", ";
|
||||
SetTypingString(str + "and " + typers[typers.size() - 1].Username + " are typing...");
|
||||
} else { // size() > MaxUsersInIndicator
|
||||
SetTypingString("Several people are typing...");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user