Tooth/src/Widgets/StatusWidget.vala

248 lines
8.7 KiB
Vala
Raw Normal View History

2018-04-14 12:09:06 +00:00
using Gtk;
using Granite;
2018-04-25 11:45:50 +00:00
public class Tootle.StatusWidget : Gtk.EventBox {
2018-04-14 12:09:06 +00:00
2018-04-16 18:22:42 +00:00
public Status status;
public int64? date_utc;
2018-04-16 18:22:42 +00:00
2018-05-03 08:11:31 +00:00
public Gtk.Separator? separator;
public int avatar_size = 32;
2018-04-14 12:09:06 +00:00
public Granite.Widgets.Avatar avatar;
public Gtk.Label title_user;
public Gtk.Label title_date;
public Gtk.Label title_acct;
2018-04-23 17:02:21 +00:00
public Gtk.Revealer revealer;
2018-05-04 20:57:31 +00:00
public Tootle.RichLabel content_label;
2018-05-04 21:00:47 +00:00
public Tootle.RichLabel? content_spoiler;
2018-05-14 14:43:10 +00:00
public Gtk.Button? spoiler_button;
public Gtk.Box title_box;
public AttachmentBox attachments;
public Gtk.Grid grid;
public Gtk.Box counters;
public Gtk.Label reblogs;
public Gtk.Label favorites;
public ImageToggleButton reblog;
public ImageToggleButton favorite;
public ImageToggleButton reply;
2018-04-14 12:09:06 +00:00
construct {
2018-04-25 11:45:50 +00:00
grid = new Gtk.Grid ();
2018-04-14 17:18:42 +00:00
2018-04-22 11:35:25 +00:00
avatar = new Granite.Widgets.Avatar.with_default_icon (avatar_size);
2018-04-14 12:09:06 +00:00
avatar.valign = Gtk.Align.START;
2018-05-01 16:37:45 +00:00
avatar.margin_top = 6;
avatar.margin_start = 6;
2018-04-14 12:09:06 +00:00
avatar.margin_end = 6;
title_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
title_box.hexpand = true;
title_box.margin_end = 12;
title_box.margin_top = 6;
title_user = new Gtk.Label ("");
title_user.use_markup = true;
title_box.pack_start (title_user, false, false, 0);
title_acct = new Gtk.Label ("");
title_acct.opacity = 0.5;
2018-05-04 21:33:52 +00:00
title_acct.ellipsize = Pango.EllipsizeMode.END;
title_box.pack_start (title_acct, false, false, 0);
title_date = new Gtk.Label ("");
title_date.opacity = 0.5;
title_date.ellipsize = Pango.EllipsizeMode.END;
title_box.pack_end (title_date, false, false, 0);
title_box.show_all ();
2018-04-23 17:02:21 +00:00
2018-05-04 20:57:31 +00:00
content_label = new RichLabel ("");
content_label.wrap_words ();
2018-04-14 12:09:06 +00:00
2018-05-09 14:20:40 +00:00
attachments = new AttachmentBox ();
var revealer_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 6);
revealer_box.margin_end = 12;
revealer_box.add (content_label);
revealer_box.add (attachments);
revealer = new Revealer ();
revealer.reveal_child = true;
revealer.add (revealer_box);
2018-05-09 14:20:40 +00:00
2018-04-14 12:09:06 +00:00
reblogs = new Gtk.Label ("0");
favorites = new Gtk.Label ("0");
2018-04-16 18:22:42 +00:00
2018-05-11 11:28:49 +00:00
reblog = new ImageToggleButton ("go-up-symbolic");
reblog.set_action ();
2018-04-30 16:04:22 +00:00
reblog.tooltip_text = _("Boost");
2018-04-16 18:22:42 +00:00
reblog.toggled.connect (() => {
if (reblog.sensitive)
status.get_formal ().set_reblogged (reblog.get_active ());
2018-04-16 18:22:42 +00:00
});
2018-05-11 11:28:49 +00:00
favorite = new ImageToggleButton ("help-about-symbolic");
favorite.set_action ();
2018-04-30 16:04:22 +00:00
favorite.tooltip_text = _("Favorite");
2018-04-16 18:22:42 +00:00
favorite.toggled.connect (() => {
if (favorite.sensitive)
status.get_formal ().set_favorited (favorite.get_active ());
2018-04-16 18:22:42 +00:00
});
2018-05-11 11:28:49 +00:00
reply = new ImageToggleButton ("edit-undo-symbolic");
reply.set_action ();
2018-04-30 16:04:22 +00:00
reply.tooltip_text = _("Reply");
2018-04-24 14:50:38 +00:00
reply.toggled.connect (() => {
reply.set_active (false);
PostDialog.open_reply (status.get_formal ());
2018-04-24 14:50:38 +00:00
});
2018-05-04 20:57:31 +00:00
2018-05-09 14:20:40 +00:00
counters = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
2018-04-14 12:09:06 +00:00
counters.margin_top = 6;
2018-05-01 16:37:45 +00:00
counters.margin_bottom = 6;
2018-04-24 10:11:10 +00:00
counters.add (reblog);
counters.add (reblogs);
counters.add (favorite);
counters.add (favorites);
2018-04-24 14:50:38 +00:00
counters.add (reply);
2018-04-14 12:09:06 +00:00
counters.show_all ();
2018-04-25 11:45:50 +00:00
grid.attach (avatar, 1, 1, 1, 4);
grid.attach (title_box, 2, 2, 1, 1);
2018-04-25 11:45:50 +00:00
grid.attach (revealer, 2, 4, 1, 1);
grid.attach (counters, 2, 5, 1, 1);
add (grid);
2018-05-04 20:57:31 +00:00
show_all ();
2018-04-14 12:09:06 +00:00
}
2018-04-16 18:22:42 +00:00
public StatusWidget (Status status) {
this.status = status;
2018-05-01 13:53:46 +00:00
status.updated.connect (rebind);
2018-04-14 12:09:06 +00:00
get_style_context ().add_class ("status");
2018-04-18 09:13:22 +00:00
2018-05-05 15:38:01 +00:00
if (status.reblog != null) {
2018-05-09 15:32:53 +00:00
var image = new Gtk.Image.from_icon_name("go-up-symbolic", Gtk.IconSize.BUTTON);
2018-04-21 09:21:03 +00:00
image.halign = Gtk.Align.END;
2018-05-01 16:37:45 +00:00
image.margin_end = 6;
image.margin_top = 6;
2018-04-21 09:21:03 +00:00
image.show ();
2018-04-21 09:27:00 +00:00
var label_text = _("<a href=\"%s\"><b>%s</b></a> boosted").printf (status.account.url, status.account.display_name);
2018-04-28 16:27:10 +00:00
var label = new RichLabel (label_text);
2018-04-21 09:21:03 +00:00
label.halign = Gtk.Align.START;
2018-05-01 16:37:45 +00:00
label.margin_top = 6;
2018-04-21 09:21:03 +00:00
label.show ();
2018-04-25 11:45:50 +00:00
grid.attach (image, 1, 0, 1, 1);
grid.attach (label, 2, 0, 2, 1);
2018-04-21 09:21:03 +00:00
}
2018-05-05 15:38:01 +00:00
if (is_spoiler ()) {
2018-04-23 17:02:21 +00:00
revealer.reveal_child = false;
var spoiler_box = new Box (Gtk.Orientation.HORIZONTAL, 6);
2018-05-04 20:57:31 +00:00
spoiler_box.margin_end = 12;
2018-04-23 17:02:21 +00:00
2018-05-04 20:57:31 +00:00
var spoiler_button_text = _("Toggle content");
if (status.sensitive && status.attachments != null) {
spoiler_button = new Button.from_icon_name ("mail-attachment-symbolic", Gtk.IconSize.BUTTON);
spoiler_button.label = spoiler_button_text;
spoiler_button.always_show_image = true;
spoiler_button.hexpand = true;
spoiler_button.halign = Gtk.Align.END;
content_label.margin_top = 6;
}
else {
spoiler_button = new Button.with_label (spoiler_button_text);
spoiler_button.hexpand = true;
spoiler_button.halign = Gtk.Align.END;
}
2018-04-23 17:02:21 +00:00
spoiler_button.clicked.connect (() => revealer.set_reveal_child (!revealer.child_revealed));
2018-05-04 20:57:31 +00:00
var spoiler_text = _("[ This post contains sensitive content ]");
if (status.spoiler_text != null)
spoiler_text = status.spoiler_text;
content_spoiler = new RichLabel (spoiler_text);
content_spoiler.wrap_words ();
spoiler_box.add (content_spoiler);
spoiler_box.add (spoiler_button);
spoiler_box.show_all ();
2018-04-25 11:45:50 +00:00
grid.attach (spoiler_box, 2, 3, 1, 1);
2018-04-23 16:43:29 +00:00
}
if (status.get_formal ().attachments != null) {
2018-05-09 14:20:40 +00:00
attachments.clear ();
foreach (Attachment attachment in status.get_formal ().attachments)
2018-05-09 14:20:40 +00:00
attachments.append (attachment);
2018-05-04 20:57:31 +00:00
}
2018-05-09 14:20:40 +00:00
else
attachments.destroy ();
2018-05-04 20:57:31 +00:00
2018-04-18 09:13:22 +00:00
destroy.connect (() => {
if(separator != null)
separator.destroy ();
});
2018-05-04 20:57:31 +00:00
2018-05-01 13:53:46 +00:00
rebind ();
2018-04-14 12:09:06 +00:00
}
2018-05-05 15:38:01 +00:00
public void highlight () {
2018-05-01 16:37:45 +00:00
grid.get_style_context ().add_class ("card");
grid.margin_bottom = 6;
2018-04-22 11:35:25 +00:00
}
2018-05-05 15:38:01 +00:00
public void rebind () {
var formal = status.get_formal ();
title_user.label = "<b>%s</b>".printf (formal.account.display_name);
title_acct.label = "@" + formal.account.acct;
content_label.label = formal.content;
content_label.mentions = formal.mentions;
parse_date_iso8601 (formal.created_at);
2018-04-14 12:09:06 +00:00
reblogs.label = formal.reblogs_count.to_string ();
favorites.label = formal.favourites_count.to_string ();
2018-04-14 12:09:06 +00:00
2018-04-30 16:04:22 +00:00
reblog.sensitive = false;
reblog.active = formal.reblogged;
2018-04-16 18:22:42 +00:00
reblog.sensitive = true;
2018-04-30 16:04:22 +00:00
favorite.sensitive = false;
favorite.active = formal.favorited;
2018-04-16 18:22:42 +00:00
favorite.sensitive = true;
if (formal.visibility == StatusVisibility.DIRECT) {
2018-05-11 11:28:49 +00:00
reblog.sensitive = false;
reblog.icon.icon_name = formal.visibility.get_icon ();
2018-05-11 11:28:49 +00:00
reblog.tooltip_text = _("This post can't be boosted");
}
Tootle.network.load_avatar (formal.account.avatar, avatar, avatar_size);
2018-04-25 13:16:57 +00:00
}
2018-05-04 20:57:31 +00:00
2018-05-05 15:38:01 +00:00
public bool is_spoiler () {
return status.get_formal ().spoiler_text != null || status.get_formal ().sensitive;
2018-05-04 20:57:31 +00:00
}
2018-04-25 13:16:57 +00:00
// elementary OS has old GLib, so I have to improvise
// Version >=2.56 provides DateTime.from_iso8601
2018-05-05 15:38:01 +00:00
public void parse_date_iso8601 (string date) {
2018-05-02 12:28:46 +00:00
var cmd = "date -d " + date + " +%s";
2018-05-03 08:11:31 +00:00
var runner = new CmdRunner ("/bin/", cmd); //Workaround for Granite SimpleCommand pipes bug
runner.done.connect (exit => {
date_utc = int64.parse (runner.standard_output_str);
var date_obj = new GLib.DateTime.from_unix_local (date_utc);
title_date.label = Granite.DateTime.get_relative_datetime (date_obj);
});
runner.run ();
}
2018-05-05 15:38:01 +00:00
public bool on_avatar_clicked () {
var view = new AccountView (status.get_formal ().account);
2018-05-05 15:38:01 +00:00
Tootle.window.open_view (view);
2018-04-25 13:16:57 +00:00
return true;
2018-04-14 12:09:06 +00:00
}
2018-04-16 18:22:42 +00:00
2018-05-05 15:38:01 +00:00
public bool open () {
var view = new StatusView (status.get_formal ());
2018-05-05 15:38:01 +00:00
Tootle.window.open_view (view);
2018-04-26 14:05:03 +00:00
return false;
}
2018-04-14 12:09:06 +00:00
}