From 00188bdf9bd91de34060eed195c9fd7a04c8871f Mon Sep 17 00:00:00 2001 From: Miquel Lionel Date: Fri, 8 Dec 2023 02:02:29 +0100 Subject: Show contact status in "Start chat" window should close #139 - adds svg dino-status-offline.svg --- main/src/ui/add_conversation/list_row.vala | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'main/src/ui/add_conversation/list_row.vala') diff --git a/main/src/ui/add_conversation/list_row.vala b/main/src/ui/add_conversation/list_row.vala index c5e344d0..8e4cbb9b 100644 --- a/main/src/ui/add_conversation/list_row.vala +++ b/main/src/ui/add_conversation/list_row.vala @@ -11,6 +11,7 @@ public class ListRow : Widget { public Grid outer_grid; public AvatarPicture picture; public Label name_label; + public Image status_dot; public Label via_label; public Jid? jid; @@ -21,14 +22,39 @@ public class ListRow : Widget { outer_grid = (Grid) builder.get_object("outer_grid"); picture = (AvatarPicture) builder.get_object("picture"); name_label = (Label) builder.get_object("name_label"); + status_dot = (Image) builder.get_object("status_dot"); via_label = (Label) builder.get_object("via_label"); + this.layout_manager = new BinLayout(); outer_grid.set_parent(this); } public ListRow() {} + private void set_status_dot(StreamInteractor stream_interactor, Jid jid, Account account){ + Gee.List? full_jids = stream_interactor.get_module(PresenceManager.IDENTITY).get_full_jids(jid, account); + string presence_str = null; + if (full_jids != null){ + int devices = 0; + string newline_if_more_devices; + for (int i = 0; i < full_jids.size; i++) { + Jid full_jid = full_jids[i]; + presence_str = stream_interactor.get_module(PresenceManager.IDENTITY).get_last_show(full_jid, account); + if(presence_str != null) devices += 1; + newline_if_more_devices = devices > 1 ? "\r\n" : ""; + switch(presence_str){ + case "dnd": this.status_dot.set_from_icon_name("dino-status-dnd"); i = full_jids.size; break; // dnd detected = marked as dnd for all devices + case "online": this.status_dot.set_from_icon_name("dino-status-online"); i = full_jids.size; break; + case "away": this.status_dot.set_from_icon_name("dino-status-away"); break; + case "xa": this.status_dot.set_from_icon_name("dino-status-away"); break; + case "chat": this.status_dot.set_from_icon_name("dino-status-chat"); break; + } + } + } + else status_dot.set_from_icon_name("dino-status-offline"); + } + public ListRow.from_jid(StreamInteractor stream_interactor, Jid jid, Account account, bool show_account) { this.jid = jid; this.account = account; @@ -46,6 +72,7 @@ public class ListRow : Widget { } name_label.label = display_name; picture.model = new ViewModel.CompatAvatarPictureModel(stream_interactor).set_conversation(conv); + set_status_dot(stream_interactor, jid, account); } public override void dispose() { -- cgit v1.2.3-54-g00ecf