feat(profile): add or remove from lists

This commit is contained in:
Evangelos Paterakis 2022-12-22 21:37:54 +02:00
parent 2e20b5835b
commit 7369adf624
No known key found for this signature in database
GPG Key ID: FE5185F095BFC8C9
5 changed files with 156 additions and 0 deletions

View File

@ -44,6 +44,8 @@
<file preprocess="xml-stripblanks">icons/scalable/actions/tooth-contact-new-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tooth-dock-left-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tooth-about-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tooth-error-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tooth-minus-large-symbolic.svg</file>
<file>gtk/dropdown/icon.ui</file>
<file>gtk/dropdown/full.ui</file>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 0 16 16" width="16px"><path d="m 8 0.0390625 c -4.410156 0 -7.9726562 3.5624995 -7.9726562 7.9726565 c 0 4.40625 3.5625002 7.972656 7.9726562 7.972656 c 4.40625 0 7.972656 -3.566406 7.972656 -7.972656 c 0 -4.410157 -3.566406 -7.9726565 -7.972656 -7.9726565 z m -5 6.9726565 h 10 v 2 h -10 z m 0 0" fill="#222222"/></svg>

After

Width:  |  Height:  |  Size: 425 B

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 0 16 16" width="16px"><path d="m 1 7 h 14 v 2 h -14 z m 0 0" fill="#222222"/></svg>

After

Width:  |  Height:  |  Size: 188 B

View File

@ -106,6 +106,11 @@
</submenu> -->
<!-- </section> -->
<item>
<attribute name="label" translatable="yes">Lists</attribute>
<attribute name="action">view.ar_list</attribute>
<attribute name="hidden-when">action-disabled</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Refresh</attribute>
<attribute name="action">app.refresh</attribute>

View File

@ -18,6 +18,7 @@ public class Tooth.Views.Profile : Views.Timeline {
protected SimpleAction hiding_reblogs_action;
protected SimpleAction blocking_action;
protected SimpleAction domain_blocking_action;
protected SimpleAction ar_list_action;
// protected SimpleAction source_action;
construct {
@ -164,6 +165,12 @@ public class Tooth.Views.Profile : Views.Timeline {
// invalidate_actions (true);
// });
// actions.add_action (source_action);
var ar_list_action = new SimpleAction ("ar_list", null);
ar_list_action.activate.connect (v => {
create_ar_list_dialog().show();
});
ar_list_action.set_enabled(profile.full_handle != accounts.active.full_handle);
actions.add_action (ar_list_action);
var mention_action = new SimpleAction ("mention", VariantType.STRING);
mention_action.activate.connect (v => {
@ -320,4 +327,142 @@ public class Tooth.Views.Profile : Views.Timeline {
network.on_error);
}
public class RowButton : Button {
public bool remove { get; set; default = false; }
}
public Adw.Window create_ar_list_dialog() {
var spinner = new Spinner() {
spinning = true,
halign = Align.CENTER,
valign = Align.CENTER,
vexpand = true,
hexpand = true,
width_request = 32,
height_request = 32
};
var box = new Box(Orientation.VERTICAL, 6);
var headerbar = new Adw.HeaderBar();
var toast_overlay = new Adw.ToastOverlay() {
vexpand = true,
valign = Align.CENTER
};
toast_overlay.child = spinner;
box.append(headerbar);
box.append(toast_overlay);
var dialog = new Adw.Window() {
title = _("Add or remove \"%s\" to or from a list").printf (profile.handle),
modal = true,
transient_for = app.main_window,
content = box,
default_width = 600,
default_height = 550
};
spinner.start();
var preferences_page = new Adw.PreferencesPage();
var preferences_group = new Adw.PreferencesGroup() {
title = _("Select the list to add or remove \"%s\" to or from:").printf (profile.handle)
};
var no_lists_page = new Adw.StatusPage() {
icon_name = "tooth-error-symbolic",
vexpand = true,
title = _("You don't have any lists")
};
new Request.GET (@"/api/v1/lists/")
.with_account (accounts.active)
.with_ctx (this)
.on_error (on_error)
.then ((sess, msg) => {
if (Network.get_array_size(msg) > 0) {
new Request.GET (@"/api/v1/accounts/$(profile.id)/lists")
.with_account (accounts.active)
.with_ctx (this)
.on_error (on_error)
.then ((sess2, msg2) => {
var added = false;
var in_list = new Gee.ArrayList<string>();
Network.parse_array (msg2, node => {
var list = API.List.from (node);
in_list.add(list.id);
});
Network.parse_array (msg, node => {
var list = API.List.from (node);
var is_already = in_list.contains(list.id);
var add_button = new RowButton() {
icon_name = is_already ? "tooth-minus-large-symbolic" : "tooth-plus-large-symbolic",
tooltip_text = is_already ? _("Remove \"%s\" from \"%s\"").printf (profile.handle, list.title) : _("Add \"%s\" to \"%s\"").printf (profile.handle, list.title),
halign = Align.CENTER,
valign = Align.CENTER
};
add_button.add_css_class("flat");
add_button.add_css_class("circular");
add_button.remove = is_already;
var row = new Adw.ActionRow() {
title = list.title
};
row.add_suffix(add_button);
add_button.clicked.connect(() => {
handle_list_edit(list, row, toast_overlay, add_button);
});
preferences_group.add(row);
added = true;
});
if (added) {
preferences_page.add(preferences_group);
toast_overlay.child = preferences_page;
toast_overlay.valign = Align.FILL;
} else {
toast_overlay.child = no_lists_page;
}
})
.exec();
} else {
toast_overlay.child = no_lists_page;
}
})
.exec ();
return dialog;
}
public void handle_list_edit(API.List list, Adw.ActionRow row, Adw.ToastOverlay toast_overlay, RowButton button) {
row.sensitive = false;
var endpoint = @"/api/v1/lists/$(list.id)/accounts/?account_ids[]=$(profile.id)";
var req = button.remove ? new Request.DELETE (endpoint) : new Request.POST (endpoint);
req
.with_account (accounts.active)
.with_ctx (this)
.on_error (on_error)
.then ((sess, msg) => {
var toast_msg = "";
if (button.remove) {
toast_msg = _("User \"%s\" got removed from \"%s\"").printf (profile.handle, list.title);
button.icon_name = "tooth-plus-large-symbolic";
button.tooltip_text = _("Add \"%s\" to \"%s\"").printf (profile.handle, list.title);
} else {
toast_msg = _("User \"%s\" got added to \"%s\"").printf (profile.handle, list.title);
button.icon_name = "tooth-minus-large-symbolic";
button.tooltip_text = _("Remove \"%s\" from \"%s\"").printf (profile.handle, list.title);
}
button.remove = !button.remove;
row.sensitive = true;
var toast = new Adw.Toast(toast_msg);
toast_overlay.add_toast(toast);
})
.exec();
}
}