feat: refactor the settings page architecture

This commit is contained in:
Michael Aaron Murphy 2023-04-25 00:30:50 +02:00
parent efdd934e62
commit c015ad9948
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
55 changed files with 2212 additions and 1635 deletions

50
page/src/insert.rs Normal file
View file

@ -0,0 +1,50 @@
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
use super::{AutoBind, Binder, Content, Entity, Info};
/// An inserted page which may have additional properties assigned to it.
pub struct Insert<'a, Message> {
pub model: &'a mut Binder<Message>,
pub id: Entity,
}
impl<'a, Message: 'static> Insert<'a, Message> {
#[must_use]
pub fn id(self) -> Entity {
self.id
}
#[must_use]
pub fn content(self, content: Content) -> Self {
self.model.content.insert(self.id, content);
self
}
/// Adds a page and associates it with its parent page.
#[allow(clippy::return_self_not_must_use)]
#[allow(clippy::must_use_candidate)]
pub fn sub_page<P: AutoBind<Message>>(self) -> Self {
let sub_page = P::default();
let page = self.model.info.insert(Info {
parent: Some(self.id),
..sub_page.info()
});
if let Some(content) = sub_page.content(&mut self.model.sections) {
self.model.content.insert(page, content);
}
self.model.page.insert(page, Box::new(sub_page));
self.model
.sub_pages
.entry(self.id)
.expect("parent page missing")
.and_modify(|v| v.push(page))
.or_insert_with(|| vec![page]);
self
}
}