delegate status info to widget implementation

This commit is contained in:
yggverse 2024-12-12 12:24:16 +02:00
parent d752fe18fb
commit 549c3fd946
4 changed files with 14 additions and 24 deletions

View File

@ -678,20 +678,12 @@ impl Page {
);
},
mime => {
// Define common data
let status = Status::Failure;
let title = "Oops";
let description = gformat!("Content type `{mime}` yet not supported!");
// Init children widget
let status = content.to_status_mime(mime);
// Update widget
content
.to_status_mime()
.set_title(title)
.set_description(Some(&description));
// Update meta
meta.set_status(status)
.set_title(title);
// Update page meta
meta.set_status(Status::Failure)
.set_title(status.gobject.title().as_str());
// Update window
update.activate(Some(&id));

View File

@ -74,9 +74,9 @@ impl Content {
/// Set new `content::Status` component for `Self` with new `status::Mime` issue preset
///
/// * action removes previous children component from `Self`
pub fn to_status_mime(&self) -> Status {
pub fn to_status_mime(&self, mime: &str) -> Status {
self.clean();
let status = Status::new_mime();
let status = Status::new_mime(mime);
self.gobject.append(status.gobject());
status
}

View File

@ -9,7 +9,7 @@ use gtk::gio::{Cancellable, File};
use std::{rc::Rc, time::Duration};
pub struct Status {
gobject: StatusPage,
pub gobject: StatusPage,
}
impl Status {
@ -38,9 +38,9 @@ impl Status {
/// Create new mime issue preset
///
/// Useful as placeholder widget for mime issue handlers
pub fn new_mime() -> Self {
pub fn new_mime(mime: &str) -> Self {
Self {
gobject: mime::new_gobject(),
gobject: mime::new_gobject(mime),
}
}

View File

@ -1,13 +1,11 @@
use adw::StatusPage;
const DEFAULT_TITLE: &str = "Oops";
const DEFAULT_ICON_NAME: &str = "dialog-question-symbolic";
/// Create new default `GObject` preset for mime issue
/// [StatusPage](https://gnome.pages.gitlab.gnome.org/libadwaita/doc/main/class.StatusPage.html)
pub fn new_gobject() -> StatusPage {
pub fn new_gobject(mime: &str) -> StatusPage {
StatusPage::builder()
.title(DEFAULT_TITLE)
.icon_name(DEFAULT_ICON_NAME)
.title("Oops")
.description(format!("Content type `{mime}` not supported!"))
.icon_name("dialog-question-symbolic")
.build()
}