From 74c29d4df19f97b9b67bbc3c1a963a8729be69fd Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sat, 28 Sep 2019 21:40:43 +0200 Subject: Add Bookmarks2 implementation, introduce bookmarks interfaces --- .../ui/add_conversation/add_groupchat_dialog.vala | 7 ++-- main/src/ui/add_conversation/conference_list.vala | 38 ++++++++++++++++++---- 2 files changed, 35 insertions(+), 10 deletions(-) (limited to 'main/src/ui/add_conversation') diff --git a/main/src/ui/add_conversation/add_groupchat_dialog.vala b/main/src/ui/add_conversation/add_groupchat_dialog.vala index 53359813..33a3a455 100644 --- a/main/src/ui/add_conversation/add_groupchat_dialog.vala +++ b/main/src/ui/add_conversation/add_groupchat_dialog.vala @@ -19,7 +19,7 @@ protected class AddGroupchatDialog : Gtk.Dialog { [GtkChild] private Entry nick_entry; private StreamInteractor stream_interactor; - private Xmpp.Xep.Bookmarks.Conference? edit_conference = null; + private Conference? edit_conference = null; private bool alias_entry_changed = false; public AddGroupchatDialog(StreamInteractor stream_interactor) { @@ -36,7 +36,7 @@ protected class AddGroupchatDialog : Gtk.Dialog { nick_entry.key_release_event.connect(check_ok); } - public AddGroupchatDialog.for_conference(StreamInteractor stream_interactor, Account account, Xmpp.Xep.Bookmarks.Conference conference) { + public AddGroupchatDialog.for_conference(StreamInteractor stream_interactor, Account account, Conference conference) { this(stream_interactor); edit_conference = conference; ok_button.label = _("Save"); @@ -65,7 +65,8 @@ protected class AddGroupchatDialog : Gtk.Dialog { } private void on_ok_button_clicked() { - Xmpp.Xep.Bookmarks.Conference conference = new Xmpp.Xep.Bookmarks.Conference(Jid.parse(jid_entry.text)); + Conference conference = new Conference(); + conference.jid = Jid.parse(jid_entry.text); conference.nick = nick_entry.text != "" ? nick_entry.text : null; conference.name = alias_entry.text; if (edit_conference == null) { diff --git a/main/src/ui/add_conversation/conference_list.vala b/main/src/ui/add_conversation/conference_list.vala index 2f52558d..435d42e0 100644 --- a/main/src/ui/add_conversation/conference_list.vala +++ b/main/src/ui/add_conversation/conference_list.vala @@ -2,6 +2,7 @@ using Gee; using Gtk; using Xmpp; +using Xmpp.Xep.Bookmarks; using Dino.Entities; namespace Dino.Ui { @@ -11,7 +12,8 @@ protected class ConferenceList : FilterableList { public signal void conversation_selected(Conversation? conversation); private StreamInteractor stream_interactor; - private HashMap> lists = new HashMap>(Account.hash_func, Account.equals_func); + private HashMap> lists = new HashMap>(Account.hash_func, Account.equals_func); + private HashMap> widgets = new HashMap>(Account.hash_func, Account.equals_func); public ConferenceList(StreamInteractor stream_interactor) { this.stream_interactor = stream_interactor; @@ -26,20 +28,42 @@ protected class ConferenceList : FilterableList { }); foreach (Account account in stream_interactor.get_accounts()) { - stream_interactor.get_module(MucManager.IDENTITY).get_bookmarks(account, (stream, conferences) => { on_conference_bookmarks_received(stream, account, conferences); }); + stream_interactor.get_module(MucManager.IDENTITY).get_bookmarks.begin(account, (_, res) => { + Set? conferences = stream_interactor.get_module(MucManager.IDENTITY).get_bookmarks.end(res); + set_bookmarks(account, conferences); + }); + } + + stream_interactor.get_module(MucManager.IDENTITY).conference_added.connect(add_conference); + stream_interactor.get_module(MucManager.IDENTITY).conference_removed.connect(remove_conference); + } + + private void add_conference(Account account, Conference conference) { + if (!widgets.has_key(account)) { + widgets[account] = new HashMap(Jid.hash_func, Jid.equals_func); + } + var widget = new ConferenceListRow(stream_interactor, conference, account); + widgets[account][conference.jid] = widget; + add(widget); + } + + private void remove_conference(Account account, Jid jid) { + if (widgets.has_key(account) && widgets[account].has_key(jid)) { + widgets[account][jid].destroy(); + widgets[account].unset(jid); } } public void refresh_conferences() { @foreach((widget) => { remove(widget); }); foreach (Account account in lists.keys) { - foreach (Xep.Bookmarks.Conference conference in lists[account]) { - add(new ConferenceListRow(stream_interactor, conference, account)); + foreach (Conference conference in lists[account]) { + add_conference(account, conference); } } } - private void on_conference_bookmarks_received(XmppStream stream, Account account, Gee.List? conferences) { + private void set_bookmarks(Account account, Set? conferences) { if (conferences == null) { lists.unset(account); } else { @@ -78,9 +102,9 @@ protected class ConferenceList : FilterableList { internal class ConferenceListRow : ListRow { - public Xep.Bookmarks.Conference bookmark; + public Conference bookmark; - public ConferenceListRow(StreamInteractor stream_interactor, Xep.Bookmarks.Conference bookmark, Account account) { + public ConferenceListRow(StreamInteractor stream_interactor, Conference bookmark, Account account) { this.jid = bookmark.jid; this.account = account; this.bookmark = bookmark; -- cgit v1.2.3-54-g00ecf