tootle-linux-client/src/Views/NotificationsView.vala

69 lines
1.9 KiB
Vala
Raw Normal View History

2018-04-17 14:01:55 +02:00
using Gtk;
using Gdk;
public class Tootle.NotificationsView : Tootle.AbstractView {
Gtk.Box view;
Gtk.ScrolledWindow scroll;
construct {
view = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
view.hexpand = true;
view.valign = Gtk.Align.START;
scroll = new Gtk.ScrolledWindow (null, null);
scroll.hexpand = true;
scroll.vexpand = true;
scroll.hscrollbar_policy = Gtk.PolicyType.NEVER;
scroll.add (view);
add (scroll);
}
public NotificationsView () {
base (true);
show_all();
AccountManager.instance.changed_current.connect(on_account_changed);
}
public override string get_icon () {
return "notification-symbolic";
}
public override string get_name () {
return "Notifications";
}
public void prepend(Notification notification){
var widget = new NotificationWidget(notification);
view.pack_start(widget, false, false, 0);
image.icon_name = "notification-new-symbolic";
}
public virtual void on_account_changed (Account? account){
if(account == null)
return;
var url = Settings.instance.instance_url;
url += "/api/v1/notifications";
var msg = new Soup.Message("GET", url);
NetManager.instance.queue(msg, (sess, mess) => {
try{
NetManager.parse_array (mess).foreach_element ((array, i, node) => {
var object = node.get_object ();
if (object != null){
var notification = Notification.parse(object);
prepend (notification);
}
});
}
catch (GLib.Error e) {
warning ("Can't update feed");
warning (e.message);
}
});
}
}