// Copyright 2023 System76 // 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, 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>(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 } }