fractal/session/view/account_settings/security_page/ignored_users_subpage/
ignored_user_row.rsuse gettextrs::gettext;
use gtk::{glib, prelude::*, subclass::prelude::*, CompositeTemplate};
use ruma::UserId;
use crate::{components::LoadingButton, session::model::IgnoredUsers, toast};
mod imp {
use std::cell::RefCell;
use glib::subclass::InitializingObject;
use super::*;
#[derive(Debug, Default, CompositeTemplate, glib::Properties)]
#[template(
resource = "/org/gnome/Fractal/ui/session/view/account_settings/security_page/ignored_users_subpage/ignored_user_row.ui"
)]
#[properties(wrapper_type = super::IgnoredUserRow)]
pub struct IgnoredUserRow {
#[template_child]
pub stop_ignoring_button: TemplateChild<LoadingButton>,
#[property(get, set = Self::set_item, explicit_notify, nullable)]
pub item: RefCell<Option<gtk::StringObject>>,
#[property(get, set, nullable)]
pub ignored_users: RefCell<Option<IgnoredUsers>>,
}
#[glib::object_subclass]
impl ObjectSubclass for IgnoredUserRow {
const NAME: &'static str = "IgnoredUserRow";
type Type = super::IgnoredUserRow;
type ParentType = gtk::Box;
fn class_init(klass: &mut Self::Class) {
Self::bind_template(klass);
Self::Type::bind_template_callbacks(klass);
}
fn instance_init(obj: &InitializingObject<Self>) {
obj.init_template();
}
}
#[glib::derived_properties]
impl ObjectImpl for IgnoredUserRow {}
impl WidgetImpl for IgnoredUserRow {}
impl BoxImpl for IgnoredUserRow {}
impl IgnoredUserRow {
fn set_item(&self, item: Option<gtk::StringObject>) {
if *self.item.borrow() == item {
return;
}
self.item.replace(item);
self.obj().notify_item();
self.stop_ignoring_button.set_is_loading(false);
}
}
}
glib::wrapper! {
pub struct IgnoredUserRow(ObjectSubclass<imp::IgnoredUserRow>)
@extends gtk::Widget, gtk::Box, @implements gtk::Accessible;
}
#[gtk::template_callbacks]
impl IgnoredUserRow {
pub fn new(ignored_users: &IgnoredUsers) -> Self {
glib::Object::builder()
.property("ignored-users", ignored_users)
.build()
}
#[template_callback]
async fn stop_ignoring_user(&self) {
let Some(user_id) = self
.item()
.map(|i| i.string())
.and_then(|s| UserId::parse(&s).ok())
else {
return;
};
let Some(ignored_users) = self.ignored_users() else {
return;
};
let imp = self.imp();
imp.stop_ignoring_button.set_is_loading(true);
if ignored_users.remove(&user_id).await.is_err() {
toast!(self, gettext("Could not stop ignoring user"));
imp.stop_ignoring_button.set_is_loading(false);
}
}
}