aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-04-18 17:18:31 +0200
committerdec05eba <dec05eba@protonmail.com>2021-04-18 17:18:31 +0200
commit7f0bdeddb79c308ab082a124441f1d69d665dbfc (patch)
tree66428f87349b6bfe6f4d50fec871c358a32717f9 /src/plugins
parent033fbf3f1363c810d115ce9a531aea26ea9e1cf1 (diff)
Fix misc matrix bugs related to leaving a room when side panel is visible and changing room, misc visual changes to manga
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/MangaGeneric.cpp34
-rw-r--r--src/plugins/Manganelo.cpp6
-rw-r--r--src/plugins/Matrix.cpp41
-rw-r--r--src/plugins/Soundcloud.cpp1
4 files changed, 60 insertions, 22 deletions
diff --git a/src/plugins/MangaGeneric.cpp b/src/plugins/MangaGeneric.cpp
index ebfbdda..8a17040 100644
--- a/src/plugins/MangaGeneric.cpp
+++ b/src/plugins/MangaGeneric.cpp
@@ -13,7 +13,7 @@ namespace QuickMedia {
enum class MergeType {
THUMBNAIL,
- UPLOAD_TIME
+ DESCRIPTION
};
struct HtmlMergeUserdata {
@@ -21,6 +21,7 @@ namespace QuickMedia {
BodyItemContext body_item_image_context;
const char *field_name = nullptr;
const char *field_contains = nullptr;
+ const char *desc_prefix = nullptr;
};
struct HtmlListPageImagesUserdata {
@@ -85,9 +86,10 @@ namespace QuickMedia {
{
if(merge_userdata->type == MergeType::THUMBNAIL) {
(*body_item_image_context.body_items)[body_item_image_context.index]->thumbnail_url = strip(field_value);
- } else if(merge_userdata->type == MergeType::UPLOAD_TIME) {
+ } else if(merge_userdata->type == MergeType::DESCRIPTION) {
std::string uploaded_date = strip(field_value);
- (*body_item_image_context.body_items)[body_item_image_context.index]->set_description("Uploaded: " + uploaded_date);
+ (*body_item_image_context.body_items)[body_item_image_context.index]->set_description(merge_userdata->desc_prefix ? merge_userdata->desc_prefix : "" + uploaded_date);
+ (*body_item_image_context.body_items)[body_item_image_context.index]->set_description_color(sf::Color(179, 179, 179));
}
body_item_image_context.index++;
}
@@ -181,8 +183,23 @@ namespace QuickMedia {
if(result != 0)
goto cleanup;
+ for(const DescriptionQuery &description_query : description_queries) {
+ assert(description_query.html_query && description_query.field_name);
+ if(description_query.html_query && description_query.field_name) {
+ HtmlMergeUserdata merge_userdata;
+ merge_userdata.type = MergeType::DESCRIPTION;
+ merge_userdata.body_item_image_context.body_items = &new_result_items;
+ merge_userdata.body_item_image_context.index = 0;
+ merge_userdata.field_name = description_query.field_name;
+ merge_userdata.field_contains = nullptr;
+ result = html_body_item_merge(&html_search, description_query.html_query, &merge_userdata);
+ if(result != 0)
+ goto cleanup;
+ }
+ }
+
for(const ThumbnailQuery &thumbnail_query : thumbnail_queries) {
- assert(!thumbnail_query.html_query || thumbnail_query.field_name);
+ assert(thumbnail_query.html_query && thumbnail_query.field_name);
if(thumbnail_query.html_query && thumbnail_query.field_name) {
HtmlMergeUserdata merge_userdata;
merge_userdata.type = MergeType::THUMBNAIL;
@@ -217,6 +234,7 @@ namespace QuickMedia {
new_body_item->url = target_url;
}
}
+
result_items.insert(result_items.end(), std::move_iterator(new_result_items.begin()), std::move_iterator(new_result_items.end()));
}
@@ -271,11 +289,12 @@ namespace QuickMedia {
assert(!list_chapters_query.uploaded_time_html_query || list_chapters_query.uploaded_time_field_name);
if(list_chapters_query.uploaded_time_html_query && list_chapters_query.uploaded_time_field_name) {
HtmlMergeUserdata merge_userdata;
- merge_userdata.type = MergeType::UPLOAD_TIME;
+ merge_userdata.type = MergeType::DESCRIPTION;
merge_userdata.body_item_image_context.body_items = &chapters_items;
merge_userdata.body_item_image_context.index = 0;
merge_userdata.field_name = list_chapters_query.uploaded_time_field_name;
merge_userdata.field_contains = list_chapters_query.uploaded_time_field_contains;
+ merge_userdata.desc_prefix = "Uploaded: ";
result = html_body_item_merge(&html_search, list_chapters_query.uploaded_time_html_query, &merge_userdata);
}
@@ -605,6 +624,11 @@ namespace QuickMedia {
return *this;
}
+ MangaGenericSearchPage& MangaGenericSearchPage::description_handler(std::vector<DescriptionQuery> queries) {
+ description_queries = std::move(queries);
+ return *this;
+ }
+
MangaGenericSearchPage& MangaGenericSearchPage::thumbnail_handler(std::vector<ThumbnailQuery> queries) {
thumbnail_queries = std::move(queries);
return *this;
diff --git a/src/plugins/Manganelo.cpp b/src/plugins/Manganelo.cpp
index e63ff6c..6d0447a 100644
--- a/src/plugins/Manganelo.cpp
+++ b/src/plugins/Manganelo.cpp
@@ -62,6 +62,7 @@ namespace QuickMedia {
if(text && class_attr && strstr(class_attr, "chapter-time") && item_data->index < item_data->body_items->size()) {
std::string uploaded_date = strip(text);
(*item_data->body_items)[item_data->index]->set_description("Uploaded: " + uploaded_date);
+ (*item_data->body_items)[item_data->index]->set_description_color(sf::Color(179, 179, 179));
item_data->index++;
}
}, &body_item_context);
@@ -117,11 +118,16 @@ namespace QuickMedia {
Json::Value name = child.get("name", "");
Json::Value nameunsigned = child.get("nameunsigned", "");
+ Json::Value lastchapter = child.get("lastchapter", "");
if(name.isString() && name.asCString()[0] != '\0' && nameunsigned.isString() && nameunsigned.asCString()[0] != '\0') {
std::string name_str = name.asString();
while(remove_html_span(name_str)) {}
auto item = BodyItem::create(strip(name_str));
item->url = "https://manganelo.com/manga/" + url_param_encode(nameunsigned.asString());
+ if(lastchapter.isString() && lastchapter.asCString()[0] != '\0') {
+ item->set_description("Last chapter: " + lastchapter.asString());
+ item->set_description_color(sf::Color(179, 179, 179));
+ }
Json::Value image = child.get("image", "");
if(image.isString() && image.asCString()[0] != '\0')
item->thumbnail_url = image.asString();
diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp
index e1f9b58..147dbdf 100644
--- a/src/plugins/Matrix.cpp
+++ b/src/plugins/Matrix.cpp
@@ -443,8 +443,8 @@ namespace QuickMedia {
}
}
- void MatrixQuickMedia::update(MatrixPageType page_type) {
- update_pending_room_messages(page_type);
+ void MatrixQuickMedia::update(MatrixPageType page_type, Body *chat_body, bool messages_tab_visible) {
+ update_pending_room_messages(page_type, chat_body, messages_tab_visible);
std::lock_guard<std::mutex> room_body_lock(room_body_items_mutex);
for(auto &it : unread_notifications) {
for(auto &unread_notification : it.second) {
@@ -499,7 +499,7 @@ namespace QuickMedia {
return extract_first_line_elipses(message->body, 150);
}
- void MatrixQuickMedia::update_room_description(RoomData *room, Messages &new_messages, bool is_initial_sync, bool sync_is_cache) {
+ void MatrixQuickMedia::update_room_description(RoomData *room, Messages &new_messages, bool is_initial_sync, bool sync_is_cache, Body *chat_body, bool messages_tab_visible) {
time_t read_marker_message_timestamp = 0;
std::shared_ptr<UserInfo> me = matrix->get_me(room);
std::string my_user_read_marker;
@@ -544,16 +544,25 @@ namespace QuickMedia {
return;
if(last_unread_message && !sync_is_cache) {
- std::string room_desc = "Unread: " + matrix->message_get_author_displayname(last_unread_message) + ": " + message_to_room_description_text(last_unread_message);
+ bool is_window_focused = program->is_window_focused();
+ RoomData *current_room = program->get_current_chat_room();
+ bool set_room_as_unread = !is_window_focused || room != current_room || (!chat_body || !chat_body->is_last_item_fully_visible()) || !messages_tab_visible;
+
+ std::string room_desc;
+ if(set_room_as_unread)
+ room_desc += "Unread: ";
+ room_desc += matrix->message_get_author_displayname(last_unread_message) + ": " + message_to_room_description_text(last_unread_message);
+
int unread_notification_count = room->unread_notification_count;
- if(unread_notification_count > 0) {
+ if(unread_notification_count > 0 && set_room_as_unread) {
room_desc += "\n** " + std::to_string(unread_notification_count) + " unread mention(s) **"; // TODO: Better notification?
room->body_item->set_description_color(sf::Color(255, 100, 100));
} else {
room->body_item->set_description_color(sf::Color(179, 179, 179));
}
room->body_item->set_description(std::move(room_desc));
- room->body_item->set_title_color(sf::Color(255, 100, 100));
+ if(set_room_as_unread)
+ room->body_item->set_title_color(sf::Color(255, 100, 100));
room->last_message_read = false;
rooms_page->move_room_to_top(room);
@@ -564,7 +573,7 @@ namespace QuickMedia {
}
}
- void MatrixQuickMedia::update_pending_room_messages(MatrixPageType page_type) {
+ void MatrixQuickMedia::update_pending_room_messages(MatrixPageType page_type, Body *chat_body, bool messages_tab_visible) {
std::lock_guard<std::mutex> lock(pending_room_messages_mutex);
bool is_window_focused = program->is_window_focused();
RoomData *current_room = program->get_current_chat_room();
@@ -580,14 +589,14 @@ namespace QuickMedia {
for(auto &message : messages) {
if(message->notification_mentions_me) {
// TODO: What if the message or username begins with "-"? also make the notification image be the avatar of the user
- if((!is_window_focused || room != current_room || page_type == MatrixPageType::ROOM_LIST) && message->related_event_type != RelatedEventType::EDIT && message->related_event_type != RelatedEventType::REDACTION) {
+ if((!is_window_focused || room != current_room) && message->related_event_type != RelatedEventType::EDIT && message->related_event_type != RelatedEventType::REDACTION) {
show_notification("QuickMedia matrix - " + matrix->message_get_author_displayname(message.get()) + " (" + room->get_name() + ")", message->body);
}
}
}
}
- update_room_description(room, messages, is_initial_sync, it.second.sync_is_cache);
+ update_room_description(room, messages, is_initial_sync, it.second.sync_is_cache, chat_body, messages_tab_visible);
}
pending_room_messages.clear();
}
@@ -605,7 +614,6 @@ namespace QuickMedia {
PluginResult MatrixRoomsPage::submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) {
(void)title;
auto chat_page = std::make_unique<MatrixChatPage>(program, url, this);
- chat_page->matrix_delegate = matrix_delegate;
result_tabs.push_back(Tab{nullptr, std::move(chat_page), nullptr});
return PluginResult::OK;
}
@@ -651,7 +659,7 @@ namespace QuickMedia {
sort_room_body_items(body->items);
//body_set_selected_item(body, selected_item);
}
- matrix_delegate->update(MatrixPageType::ROOM_LIST);
+ matrix_delegate->update(MatrixPageType::ROOM_LIST, nullptr, false);
if(filter_on_update) {
filter_on_update = false;
if(search_bar)
@@ -823,7 +831,7 @@ namespace QuickMedia {
add_room_body_items_by_tags.clear();
body->set_selected_item(prev_selected_item, false);
}
- matrix_delegate->update(MatrixPageType::ROOM_LIST);
+ matrix_delegate->update(MatrixPageType::ROOM_LIST, nullptr, false);
if(filter_on_update) {
filter_on_update = false;
if(search_bar)
@@ -970,17 +978,16 @@ namespace QuickMedia {
}
MatrixChatPage::MatrixChatPage(Program *program, std::string room_id, MatrixRoomsPage *rooms_page) : Page(program), room_id(std::move(room_id)), rooms_page(rooms_page) {
- if(rooms_page)
- rooms_page->set_current_chat_page(this);
+ assert(rooms_page);
+ rooms_page->set_current_chat_page(this);
}
MatrixChatPage::~MatrixChatPage() {
- if(rooms_page)
- rooms_page->set_current_chat_page(nullptr);
+ rooms_page->set_current_chat_page(nullptr);
}
void MatrixChatPage::update() {
- matrix_delegate->update(MatrixPageType::CHAT);
+ rooms_page->matrix_delegate->update(MatrixPageType::CHAT, chat_body, messages_tab_visible);
if(rooms_page)
rooms_page->update();
}
diff --git a/src/plugins/Soundcloud.cpp b/src/plugins/Soundcloud.cpp
index 3fcb3b8..a0184b4 100644
--- a/src/plugins/Soundcloud.cpp
+++ b/src/plugins/Soundcloud.cpp
@@ -141,6 +141,7 @@ namespace QuickMedia {
}
body_item->set_description(std::move(description));
+ body_item->set_description_color(sf::Color(179, 179, 179));
return body_item;
}