1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
// ┃ Copyright: (c) 2023, Mike 'PhiSyX' S. (https://github.com/PhiSyX) ┃
// ┃ SPDX-License-Identifier: MPL-2.0 ┃
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
// ┃ ┃
// ┃ This Source Code Form is subject to the terms of the Mozilla Public ┃
// ┃ License, v. 2.0. If a copy of the MPL was not distributed with this ┃
// ┃ file, You can obtain one at https://mozilla.org/MPL/2.0/. ┃
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
use lexa_framework_macro::html;
use crate::view::{Node, ViewLayoutInterface};
// --------- //
// Structure //
// --------- //
/// Mise en page HTML vide.
pub struct EmptyHTMLLayout {
body: Node,
}
// -------------- //
// Implémentation // -> Interface
// -------------- //
impl ViewLayoutInterface for EmptyHTMLLayout {
type Metadata = Node;
type Scripts = Node;
type Styles = Node;
type View = Node;
fn new() -> Self
where
Self: Sized,
{
Self {
body: Default::default(),
}
}
fn set_title(&mut self, _: impl ToString) {}
fn set_body(&mut self, body: Self::View) {
self.body = body;
}
fn add_meta(&mut self, _: Self::Metadata) {}
fn add_script(&mut self, _: Self::Scripts) {}
fn add_style(&mut self, _: Self::Styles) {}
fn view(&self) -> Self::View {
html! {
{ unsafe &self.body }
}
}
}