use pagetop::prelude::*; use pagetop_minimal::component::*; define_handle!(MODULE_DEMOHOME); define_locale!("src/locales"); include!(concat!(env!("OUT_DIR"), "/homedemo.rs")); pub struct HomeDemo; impl ModuleTrait for HomeDemo { fn handle(&self) -> Handle { MODULE_DEMOHOME } fn name(&self) -> String { l("module_name") } fn description(&self) -> Option { Some(l("module_description")) } fn dependencies(&self) -> Vec { vec![&pagetop_minimal::Minimal] } fn configure_service(&self, cfg: &mut server::web::ServiceConfig) { serve_static_files!(cfg, "/homedemo", bundle_homedemo); cfg.route("/", server::web::get().to(demo)); } } async fn demo(request: server::HttpRequest) -> ResultPage { Page::new(request) .with_title(l("page_title").as_str()) .with_context(ContextOp::AddStyleSheet(StyleSheet::located( "/homedemo/css/styles.css", ))) .with_body_classes(ClassesOp::AddFirst, "default-homepage") .with_this_in("region-content", hello_world()) .with_this_in("region-content", welcome()) .with_this_in("region-content", about_pagetop()) .with_this_in("region-content", promo_pagetop()) .with_this_in("region-content", reporting_issues()) .render() } fn hello_world() -> Container { Container::header().with_id("hello-world").with_component( grid::Row::new() .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "hello-col-text") .with_size(grid::ColumnSize::Is5of12) .with_component( Heading::h1(html! { (l("page_title")) }) .with_display(HeadingDisplay::Medium), ) .with_component( Paragraph::with(html! { (e("hello_intro", &args![ "app" => format!( "{}", &config::SETTINGS.app.name, ) ])) }) .with_display(ParagraphDisplay::Small), ) .with_component(Paragraph::with(html! { (e("hello_powered", &args![ "pagetop" => format!( "{}", "https://pagetop.cillero.es", "PageTop", ) ])) })) .with_component( Anchor::button( "https://github.com/manuelcillero/pagetop", html! { (l("hello_code")) }, ) .with_target(AnchorTarget::Blank) .with_left_icon(Icon::with("git")) .with_classes(ClassesOp::Add, "code-link"), ) .with_component( Anchor::link("#welcome", html! { (l("hello_welcome")) }) .with_left_icon(Icon::with("arrow-down-circle-fill")) .with_classes(ClassesOp::Add, "welcome-link"), ), ) .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "hello-col-image") .with_component(Image::with("/homedemo/images/header.svg")), ), ) } fn welcome() -> Container { Container::section() .with_id("welcome") .with_classes(ClassesOp::Add, "welcome-col-text") .with_component(Heading::h2(html! { (l("welcome_page")) })) .with_component( Heading::h3(html! { (e("welcome_subtitle", &args![ "app" => format!( "{}", &config::SETTINGS.app.name ) ])) }) .with_display(HeadingDisplay::Subtitle), ) .with_component( Paragraph::with(html! { (l("welcome_text1")) }) .with_display(ParagraphDisplay::Small), ) .with_component(Paragraph::with(html! { (l("welcome_text2")) })) } fn about_pagetop() -> Container { Container::new().with_id("pagetop").with_component( grid::Row::new() .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "pagetop-col-image") .with_size(grid::ColumnSize::Is5of12) .with_component(Image::with("/homedemo/images/about.svg")), ) .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "pagetop-col-text") .with_component(Heading::h2(html! { (l("pagetop_title")) })) .with_component( Paragraph::with(html! { (l("pagetop_text1")) }) .with_display(ParagraphDisplay::Small), ) .with_component(Paragraph::with(html! { (l("pagetop_text2")) })) .with_component(Paragraph::with(html! { (e("pagetop_text3", &args![ "pagetop_website" => format!( "{}", "https://docs.rs/pagetop/latest/pagetop", l("pagetop_website"), ) ])) })), ), ) } fn promo_pagetop() -> Container { Container::new().with_id("promo").with_component( grid::Row::new() .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "promo-col-text") .with_component(Heading::h2(html! { (l("pagetop_promo_title")) })) .with_component( Paragraph::with(html! { (e("pagetop_promo_text1", &args![ "pagetop" => format!( "{}", "https://crates.io/crates/pagetop", "PageTop", ) ])) }) .with_display(ParagraphDisplay::Small), ), ) .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "promo-col-image") .with_size(grid::ColumnSize::Is6of12) .with_component(Image::with("/homedemo/images/pagetop.png")), ), ) } fn reporting_issues() -> Container { Container::new().with_id("reporting").with_component( grid::Row::new() .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "reporting-col-image") .with_component(Image::with("/homedemo/images/support.jpg")), ) .with_column( grid::Column::new() .with_classes(ClassesOp::Add, "reporting-col-text") .with_size(grid::ColumnSize::Is6of12) .with_component(Heading::h2(html! { (l("report_problems_title")) })) .with_component( Paragraph::with(html! { (l("report_problems_text1")) }) .with_display(ParagraphDisplay::Small), ) .with_component(Paragraph::with(html! { (l("report_problems_text2")) })), ), ) }