dino/main/src/ui/conversation_content_view/conversation_item_skeleton....

274 lines
11 KiB
Vala
Raw Normal View History

using Gee;
using Gdk;
using Gtk;
using Markup;
using Dino.Entities;
namespace Dino.Ui.ConversationSummary {
2022-02-14 13:55:59 +00:00
public class ConversationItemSkeleton : Plugins.ConversationItemWidgetInterface, Object {
public Grid main_grid { get; set; }
public Label name_label { get; set; }
public Label time_label { get; set; }
public AvatarImage avatar_image { get; set; }
public Image encryption_image { get; set; }
public Image received_image { get; set; }
private HashMap<int, Widget> content_widgets = new HashMap<int, Widget>();
2022-05-14 12:45:59 +00:00
private bool show_skeleton_ = false;
public bool show_skeleton {
get { return show_skeleton_; }
set {
show_skeleton_ = value && content_meta_item != null && content_meta_item.requires_header && content_meta_item.requires_avatar; }
}
public StreamInteractor stream_interactor;
public Conversation conversation { get; set; }
public Plugins.MetaConversationItem item;
public bool item_in_edit_mode { get; set; }
public Entities.Message.Marked item_mark { get; set; }
2022-05-14 12:45:59 +00:00
public ContentMetaItem content_meta_item = null;
public Widget? widget = null;
2022-10-11 11:37:48 +00:00
private ReactionsController? reactions_controller = null;
2022-02-14 13:55:59 +00:00
private uint time_update_timeout = 0;
private ulong updated_roster_handler_id = 0;
public ConversationItemSkeleton(StreamInteractor stream_interactor, Conversation conversation, Plugins.MetaConversationItem item, bool initial_item) {
this.stream_interactor = stream_interactor;
this.conversation = conversation;
this.item = item;
this.content_meta_item = item as ContentMetaItem;
2022-11-26 21:26:25 +00:00
item.bind_property("in-edit-mode", this, "item-in-edit-mode");
this.notify["item-in-edit-mode"].connect(update_edit_mode);
2022-02-14 13:55:59 +00:00
Builder builder = new Builder.from_resource("/im/dino/Dino/conversation_item_widget.ui");
main_grid = (Grid) builder.get_object("main_grid");
2022-05-14 12:45:59 +00:00
main_grid.add_css_class("message-box");
2022-02-14 13:55:59 +00:00
name_label = (Label) builder.get_object("name_label");
time_label = (Label) builder.get_object("time_label");
avatar_image = (AvatarImage) builder.get_object("avatar_image");
encryption_image = (Image) builder.get_object("encrypted_image");
received_image = (Image) builder.get_object("marked_image");
2022-02-14 13:55:59 +00:00
widget = item.get_widget(this, Plugins.WidgetType.GTK4) as Widget;
if (widget != null) {
2019-06-16 13:17:08 +00:00
widget.valign = Align.END;
set_widget(widget, Plugins.WidgetType.GTK4, 2);
}
2022-02-14 13:55:59 +00:00
if (item.requires_header) {
avatar_image.set_conversation_participant(stream_interactor, conversation, item.jid);
}
this.notify["show-skeleton"].connect(update_margin);
2022-02-14 13:55:59 +00:00
this.notify["show-skeleton"].connect(set_header);
2022-10-11 11:37:48 +00:00
ContentMetaItem? content_meta_item = item as ContentMetaItem;
if (content_meta_item != null) {
reactions_controller = new ReactionsController(conversation, content_meta_item.content_item, stream_interactor);
reactions_controller.box_activated.connect((widget) => {
set_widget(widget, Plugins.WidgetType.GTK4, 3);
2022-10-11 11:37:48 +00:00
});
reactions_controller.init();
}
update_margin();
}
2022-02-14 13:55:59 +00:00
private void set_header() {
2022-05-14 12:45:59 +00:00
if (!show_skeleton) return;
2022-02-14 13:55:59 +00:00
update_name_label();
// name_label.style_updated.connect(update_name_label);
updated_roster_handler_id = stream_interactor.get_module(RosterManager.IDENTITY).updated_roster_item.connect((account, jid, roster_item) => {
if (this.conversation.account.equals(account) && this.conversation.counterpart.equals(jid)) {
update_name_label();
}
});
item.notify["encryption"].connect(update_encryption_icon);
update_encryption_icon();
2022-02-14 13:55:59 +00:00
if (item.time != null) {
update_time();
}
2022-02-14 13:55:59 +00:00
item.bind_property("mark", this, "item-mark", BindingFlags.SYNC_CREATE);
this.notify["item-mark"].connect_after(update_received_mark);
update_received_mark();
}
public void set_widget(Object object, Plugins.WidgetType type, int priority) {
foreach (var content_widget in content_widgets.values) {
content_widget.unparent();
}
2022-02-14 13:55:59 +00:00
content_widgets[priority] = (Widget) object;
int row_no = 1;
for (int i = 0; i < 5; i++) {
if (!content_widgets.has_key(i)) continue;
main_grid.attach(content_widgets[i], 1, row_no, 4, 1);
row_no++;
}
2022-02-14 13:55:59 +00:00
}
private void update_margin() {
avatar_image.visible = show_skeleton;
name_label.visible = show_skeleton;
time_label.visible = show_skeleton;
encryption_image.visible = show_skeleton;
received_image.visible = show_skeleton;
2022-05-14 12:45:59 +00:00
if (show_skeleton || content_meta_item == null) {
main_grid.add_css_class("has-skeleton");
}
}
2021-02-17 20:50:23 +00:00
private void update_edit_mode() {
if (item.in_edit_mode) {
2022-05-14 12:45:59 +00:00
main_grid.add_css_class("edit-mode");
2021-02-17 20:50:23 +00:00
} else {
2022-05-14 12:45:59 +00:00
main_grid.remove_css_class("edit-mode");
2021-02-17 20:50:23 +00:00
}
}
private void update_error_mode() {
if (item_mark == Message.Marked.ERROR) {
2022-05-14 12:45:59 +00:00
main_grid.add_css_class("error");
} else {
2022-05-14 12:45:59 +00:00
main_grid.remove_css_class("error");
2021-04-08 10:07:04 +00:00
}
}
private void update_encryption_icon() {
Application app = GLib.Application.get_default() as Application;
ContentMetaItem ci = item as ContentMetaItem;
if (item.encryption != Encryption.NONE && item.encryption != Encryption.UNKNOWN && ci != null) {
2022-02-14 13:55:59 +00:00
string? icon_name = null;
var encryption_entry = app.plugin_registry.encryption_list_entries[item.encryption];
icon_name = encryption_entry.get_encryption_icon_name(conversation, ci.content_item);
2022-05-14 12:45:59 +00:00
encryption_image.icon_name = icon_name ?? "changes-prevent-symbolic";
encryption_image.visible = true;
}
2022-02-14 13:55:59 +00:00
if (item.encryption == Encryption.NONE) {
if (conversation.encryption != Encryption.NONE) {
encryption_image.icon_name = "changes-allow-symbolic";
encryption_image.tooltip_text = Util.string_if_tooltips_active(_("Unencrypted"));
2022-02-14 13:55:59 +00:00
Util.force_error_color(encryption_image);
2022-05-14 12:45:59 +00:00
encryption_image.visible = true;
2022-02-14 13:55:59 +00:00
} else if (conversation.encryption == Encryption.NONE) {
encryption_image.icon_name = null;
encryption_image.visible = false;
}
}
}
private void update_time() {
time_label.label = get_relative_time(item.time.to_local()).to_string();
time_update_timeout = Timeout.add_seconds((int) get_next_time_change(), () => {
2022-02-14 13:55:59 +00:00
if (this.main_grid.parent == null) return false;
update_time();
return false;
});
}
private void update_name_label() {
name_label.label = Util.get_participant_display_name(stream_interactor, conversation, item.jid);
}
private void update_received_mark() {
2022-02-14 13:55:59 +00:00
switch (content_meta_item.mark) {
case Message.Marked.RECEIVED: received_image.icon_name = "dino-tick-symbolic"; break;
case Message.Marked.READ: received_image.icon_name = "dino-double-tick-symbolic"; break;
case Message.Marked.WONTSEND:
received_image.icon_name = "dialog-warning-symbolic";
2022-05-14 12:45:59 +00:00
Util.force_error_color(received_image);
Util.force_error_color(time_label);
string error_text = Util.string_if_tooltips_active(_("Unable to send message"));
2022-05-14 12:45:59 +00:00
received_image.tooltip_text = error_text;
time_label.tooltip_text = error_text;
2022-02-14 13:55:59 +00:00
break;
default: received_image.icon_name = null; break;
}
}
private int get_next_time_change() {
DateTime now = new DateTime.now_local();
DateTime item_time = item.time;
TimeSpan timespan = now.difference(item_time);
if (timespan < 10 * TimeSpan.MINUTE) {
if (now.get_second() < item_time.get_second()) {
return item_time.get_second() - now.get_second();
} else {
return 60 - (now.get_second() - item_time.get_second());
}
} else {
return (23 - now.get_hour()) * 3600 + (59 - now.get_minute()) * 60 + (59 - now.get_second());
}
}
public static string format_time(DateTime datetime, string format_24h, string format_12h) {
string format = Util.is_24h_format() ? format_24h : format_12h;
if (!get_charset(null)) {
// No UTF-8 support, use simple colon for time instead
format = format.replace("", ":");
}
return datetime.format(format);
}
2018-07-09 22:31:39 +00:00
public static string get_relative_time(DateTime datetime) {
DateTime now = new DateTime.now_local();
TimeSpan timespan = now.difference(datetime);
if (timespan > 365 * TimeSpan.DAY) {
return format_time(datetime,
/* xgettext:no-c-format */ /* Date + time in 24h format (w/o seconds) */ _("%x, %H%M"),
/* xgettext:no-c-format */ /* Date + time in 12h format (w/o seconds)*/ _("%x, %l%M %p"));
} else if (timespan > 7 * TimeSpan.DAY) {
return format_time(datetime,
/* xgettext:no-c-format */ /* Month, day and time in 24h format (w/o seconds) */ _("%b %d, %H%M"),
/* xgettext:no-c-format */ /* Month, day and time in 12h format (w/o seconds) */ _("%b %d, %l%M %p"));
2017-08-29 22:03:37 +00:00
} else if (datetime.get_day_of_month() != now.get_day_of_month()) {
return format_time(datetime,
/* xgettext:no-c-format */ /* Day of week and time in 24h format (w/o seconds) */ _("%a, %H%M"),
/* xgettext:no-c-format */ /* Day of week and time in 12h format (w/o seconds) */_("%a, %l%M %p"));
} else if (timespan > 9 * TimeSpan.MINUTE) {
return format_time(datetime,
/* xgettext:no-c-format */ /* Time in 24h format (w/o seconds) */ _("%H%M"),
/* xgettext:no-c-format */ /* Time in 12h format (w/o seconds) */ _("%l%M %p"));
} else if (timespan > TimeSpan.MINUTE) {
ulong mins = (ulong) (timespan.abs() / TimeSpan.MINUTE);
/* xgettext:this is the beginning of a sentence. */
return n("%i min ago", "%i mins ago", mins).printf(mins);
} else {
return _("Just now");
}
}
2022-02-14 13:55:59 +00:00
public Widget get_widget() {
return main_grid;
}
public override void dispose() {
if (time_update_timeout != 0) {
Source.remove(time_update_timeout);
time_update_timeout = 0;
}
2021-08-24 17:35:00 +00:00
if (updated_roster_handler_id != 0){
stream_interactor.get_module(RosterManager.IDENTITY).disconnect(updated_roster_handler_id);
updated_roster_handler_id = 0;
}
base.dispose();
}
}
}