You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.2 KiB
108 lines
3.2 KiB
use adw::{prelude::*, subclass::prelude::*}; |
|
use gettextrs::gettext; |
|
use gtk::{self, glib, CompositeTemplate}; |
|
|
|
use crate::toast; |
|
|
|
/// The possible error subpages. |
|
#[derive(Debug, Clone, Copy, strum::AsRefStr)] |
|
#[strum(serialize_all = "kebab-case")] |
|
pub enum ErrorSubpage { |
|
Secret, |
|
Session, |
|
} |
|
|
|
mod imp { |
|
use glib::subclass::InitializingObject; |
|
|
|
use super::*; |
|
|
|
#[derive(Debug, Default, CompositeTemplate)] |
|
#[template(resource = "/org/gnome/Fractal/ui/error_page.ui")] |
|
pub struct ErrorPage { |
|
#[template_child] |
|
pub stack: TemplateChild<gtk::Stack>, |
|
#[template_child] |
|
pub secret_error_page: TemplateChild<adw::StatusPage>, |
|
#[template_child] |
|
pub linux_secret_instructions: TemplateChild<adw::Clamp>, |
|
#[template_child] |
|
pub secret_service_override_command: TemplateChild<gtk::Label>, |
|
#[template_child] |
|
pub session_error_page: TemplateChild<adw::StatusPage>, |
|
} |
|
|
|
#[glib::object_subclass] |
|
impl ObjectSubclass for ErrorPage { |
|
const NAME: &'static str = "ErrorPage"; |
|
type Type = super::ErrorPage; |
|
type ParentType = adw::Bin; |
|
|
|
fn class_init(klass: &mut Self::Class) { |
|
Self::bind_template(klass); |
|
Self::Type::bind_template_callbacks(klass); |
|
|
|
klass.set_accessible_role(gtk::AccessibleRole::Group); |
|
} |
|
|
|
fn instance_init(obj: &InitializingObject<Self>) { |
|
obj.init_template(); |
|
} |
|
} |
|
|
|
impl ObjectImpl for ErrorPage {} |
|
impl WidgetImpl for ErrorPage {} |
|
impl BinImpl for ErrorPage {} |
|
} |
|
|
|
glib::wrapper! { |
|
/// A view displaying an error. |
|
pub struct ErrorPage(ObjectSubclass<imp::ErrorPage>) |
|
@extends gtk::Widget, adw::Bin, @implements gtk::Accessible; |
|
} |
|
|
|
#[gtk::template_callbacks] |
|
impl ErrorPage { |
|
pub fn new() -> Self { |
|
glib::Object::new() |
|
} |
|
|
|
/// Display the given secret error. |
|
pub fn display_secret_error(&self, message: &str) { |
|
let imp = self.imp(); |
|
|
|
#[cfg(not(target_os = "linux"))] |
|
imp.linux_secret_instructions.set_visible(false); |
|
|
|
#[cfg(target_os = "linux")] |
|
{ |
|
imp.linux_secret_instructions.set_visible(true); |
|
|
|
imp.secret_service_override_command.set_markup(&format!( |
|
"<tt>flatpak --user override --talk-name=org.freedesktop.secrets {}</tt>", |
|
crate::config::APP_ID |
|
)); |
|
} |
|
|
|
imp.secret_error_page.set_description(Some(message)); |
|
imp.stack |
|
.set_visible_child_name(ErrorSubpage::Secret.as_ref()); |
|
} |
|
|
|
/// Copy the secret service override command to the clipboard. |
|
#[template_callback] |
|
fn copy_secret_service_override_command(&self) { |
|
let command = self.imp().secret_service_override_command.label(); |
|
self.clipboard() |
|
.set_text(command.trim_start_matches("<tt>").trim_end_matches("</tt>")); |
|
toast!(self, gettext("Command copied to clipboard")); |
|
} |
|
|
|
/// Display the given session error. |
|
pub fn display_session_error(&self, message: &str) { |
|
let imp = self.imp(); |
|
imp.session_error_page.set_description(Some(message)); |
|
imp.stack |
|
.set_visible_child_name(ErrorSubpage::Session.as_ref()); |
|
} |
|
}
|
|
|