2017-03-02 14:37:32 +00:00
|
|
|
using Gee;
|
|
|
|
using Gtk;
|
|
|
|
|
|
|
|
using Xmpp;
|
|
|
|
using Dino.Entities;
|
|
|
|
|
2019-04-12 15:43:47 +00:00
|
|
|
namespace Dino.Ui {
|
2017-03-10 17:07:28 +00:00
|
|
|
|
2019-04-12 15:43:47 +00:00
|
|
|
public class ConversationSelector : ListBox {
|
2017-03-02 14:37:32 +00:00
|
|
|
|
|
|
|
public signal void conversation_selected(Conversation conversation);
|
|
|
|
|
|
|
|
private StreamInteractor stream_interactor;
|
2018-04-08 18:35:54 +00:00
|
|
|
private uint? drag_timeout;
|
2019-04-12 15:43:47 +00:00
|
|
|
private HashMap<Conversation, ConversationSelectorRow> rows = new HashMap<Conversation, ConversationSelectorRow>(Conversation.hash_func, Conversation.equals_func);
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2019-04-12 15:43:47 +00:00
|
|
|
public ConversationSelector init(StreamInteractor stream_interactor) {
|
2017-03-02 14:37:32 +00:00
|
|
|
this.stream_interactor = stream_interactor;
|
|
|
|
|
2017-11-11 20:29:13 +00:00
|
|
|
stream_interactor.get_module(ConversationManager.IDENTITY).conversation_activated.connect(add_conversation);
|
|
|
|
stream_interactor.get_module(ConversationManager.IDENTITY).conversation_deactivated.connect(remove_conversation);
|
2019-07-18 00:03:42 +00:00
|
|
|
stream_interactor.get_module(ContentItemStore.IDENTITY).new_item.connect(on_content_item_received);
|
2017-03-02 14:37:32 +00:00
|
|
|
Timeout.add_seconds(60, () => {
|
2019-04-12 15:43:47 +00:00
|
|
|
foreach (ConversationSelectorRow row in rows.values) row.update();
|
2017-03-02 14:37:32 +00:00
|
|
|
return true;
|
|
|
|
});
|
2017-03-20 21:12:20 +00:00
|
|
|
|
|
|
|
foreach (Conversation conversation in stream_interactor.get_module(ConversationManager.IDENTITY).get_active_conversations()) {
|
|
|
|
add_conversation(conversation);
|
|
|
|
}
|
2019-04-12 14:24:43 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
construct {
|
|
|
|
get_style_context().add_class("sidebar");
|
|
|
|
set_header_func(header);
|
|
|
|
set_sort_func(sort);
|
|
|
|
|
2017-03-20 21:12:20 +00:00
|
|
|
realize.connect(() => {
|
|
|
|
ListBoxRow? first_row = get_row_at_index(0);
|
|
|
|
if (first_row != null) {
|
|
|
|
select_row(first_row);
|
|
|
|
row_activated(first_row);
|
|
|
|
}
|
|
|
|
});
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void row_activated(ListBoxRow r) {
|
2019-04-12 15:43:47 +00:00
|
|
|
ConversationSelectorRow? row = r as ConversationSelectorRow;
|
|
|
|
if (row != null) {
|
2017-03-02 14:37:32 +00:00
|
|
|
conversation_selected(row.conversation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 22:44:05 +00:00
|
|
|
public void on_conversation_selected(Conversation conversation) {
|
|
|
|
if (!rows.has_key(conversation)) {
|
|
|
|
add_conversation(conversation);
|
|
|
|
}
|
|
|
|
this.select_row(rows[conversation]);
|
|
|
|
}
|
|
|
|
|
2019-07-18 00:03:42 +00:00
|
|
|
private void on_content_item_received(ContentItem item, Conversation conversation) {
|
2017-03-18 22:44:05 +00:00
|
|
|
if (rows.has_key(conversation)) {
|
|
|
|
invalidate_sort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void add_conversation(Conversation conversation) {
|
2019-04-12 15:43:47 +00:00
|
|
|
ConversationSelectorRow row;
|
2017-03-02 14:37:32 +00:00
|
|
|
if (!rows.has_key(conversation)) {
|
2019-04-12 15:43:47 +00:00
|
|
|
row = new ConversationSelectorRow(stream_interactor, conversation);
|
2017-03-02 14:37:32 +00:00
|
|
|
rows[conversation] = row;
|
|
|
|
add(row);
|
|
|
|
row.main_revealer.set_reveal_child(true);
|
2018-04-08 18:35:54 +00:00
|
|
|
drag_dest_set(row, DestDefaults.MOTION, null, Gdk.DragAction.COPY);
|
|
|
|
drag_dest_set_track_motion(row, true);
|
|
|
|
row.drag_motion.connect(this.on_drag_motion);
|
|
|
|
row.drag_leave.connect(this.on_drag_leave);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2018-11-04 19:19:34 +00:00
|
|
|
invalidate_sort();
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 18:35:54 +00:00
|
|
|
public bool on_drag_motion(Widget widget, Gdk.DragContext context,
|
|
|
|
int x, int y, uint time) {
|
|
|
|
if (this.drag_timeout != null)
|
|
|
|
return false;
|
|
|
|
this.drag_timeout = Timeout.add(200, () => {
|
2020-02-21 01:11:23 +00:00
|
|
|
if (widget.get_type().is_a(typeof(ConversationSelectorRow))) {
|
|
|
|
ConversationSelectorRow row = widget as ConversationSelectorRow;
|
2018-04-08 18:35:54 +00:00
|
|
|
conversation_selected(row.conversation);
|
|
|
|
}
|
|
|
|
this.drag_timeout = null;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void on_drag_leave(Widget widget, Gdk.DragContext context, uint time) {
|
|
|
|
if (this.drag_timeout != null) {
|
|
|
|
Source.remove(this.drag_timeout);
|
|
|
|
this.drag_timeout = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 14:24:43 +00:00
|
|
|
private void select_fallback_conversation(Conversation conversation) {
|
2017-03-18 22:44:05 +00:00
|
|
|
if (get_selected_row() == rows[conversation]) {
|
|
|
|
int index = rows[conversation].get_index();
|
2019-04-12 14:24:43 +00:00
|
|
|
ListBoxRow? next_select_row = get_row_at_index(index + 1);
|
|
|
|
if (next_select_row == null) {
|
|
|
|
next_select_row = get_row_at_index(index - 1);
|
|
|
|
}
|
|
|
|
if (next_select_row != null) {
|
|
|
|
select_row(next_select_row);
|
|
|
|
row_activated(next_select_row);
|
2017-03-18 22:44:05 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-15 22:44:15 +00:00
|
|
|
private async void remove_conversation(Conversation conversation) {
|
2019-04-12 14:24:43 +00:00
|
|
|
select_fallback_conversation(conversation);
|
2019-08-27 20:12:18 +00:00
|
|
|
if (rows.has_key(conversation)) {
|
2020-01-15 22:44:15 +00:00
|
|
|
yield rows[conversation].colapse();
|
2017-03-18 22:44:05 +00:00
|
|
|
remove(rows[conversation]);
|
|
|
|
rows.unset(conversation);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 14:24:43 +00:00
|
|
|
public void loop_conversations(bool backwards) {
|
|
|
|
int index = get_selected_row().get_index();
|
|
|
|
int new_index = ((index + (backwards ? -1 : 1)) + rows.size) % rows.size;
|
|
|
|
ListBoxRow? next_select_row = get_row_at_index(new_index);
|
|
|
|
if (next_select_row != null) {
|
|
|
|
select_row(next_select_row);
|
|
|
|
row_activated(next_select_row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
private void header(ListBoxRow row, ListBoxRow? before_row) {
|
|
|
|
if (row.get_header() == null && before_row != null) {
|
|
|
|
row.set_header(new Separator(Orientation.HORIZONTAL));
|
2017-10-28 20:02:32 +00:00
|
|
|
} else if (row.get_header() != null && before_row == null) {
|
|
|
|
row.set_header(null);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int sort(ListBoxRow row1, ListBoxRow row2) {
|
2019-04-12 15:43:47 +00:00
|
|
|
ConversationSelectorRow cr1 = row1 as ConversationSelectorRow;
|
|
|
|
ConversationSelectorRow cr2 = row2 as ConversationSelectorRow;
|
2017-03-02 14:37:32 +00:00
|
|
|
if (cr1 != null && cr2 != null) {
|
|
|
|
Conversation c1 = cr1.conversation;
|
|
|
|
Conversation c2 = cr2.conversation;
|
2017-03-30 23:17:01 +00:00
|
|
|
if (c1.last_active == null) return -1;
|
|
|
|
if (c2.last_active == null) return 1;
|
2017-03-02 14:37:32 +00:00
|
|
|
int comp = c2.last_active.compare(c1.last_active);
|
|
|
|
if (comp == 0) {
|
|
|
|
return Util.get_conversation_display_name(stream_interactor, c1)
|
|
|
|
.collate(Util.get_conversation_display_name(stream_interactor, c2));
|
|
|
|
} else {
|
|
|
|
return comp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2017-03-10 17:07:28 +00:00
|
|
|
|
2017-08-31 20:22:44 +00:00
|
|
|
}
|