use super::loader::Loader;
use web_sys::Node;
use yew::virtual_dom::VNode;
use yew::{function_component, html, Html};
#[function_component(App)]
pub fn app() -> Html {
html! {
<>
{ "a client-side tool for merging " }
{ "gpx files" }
>
}
}
#[function_component(Footer)]
fn footer() -> Html {
let notes = Vec::from([
// note 1
"this has only been tested on GPX files produced by \
strava and \
garmin",
// note 2
"all third-party extension info \
\
is stripped",
// note 3
"if the app breaks, try refreshing the page",
"source (public access): git://pingo.thermokar.st/gpx-web-utils",
// note 4
"source (mirror): \
\
https://github.com/thermokarst/gpx-web-utils",
]);
html! {
{ for notes.iter().map(|n| inner_html_enabled_li(n)) }
{ "\u{000A9} matthew ryan dillon, 2021" }
}
}
fn inner_html_enabled_li(data: &str) -> Html {
let li = web_sys::window()
.unwrap()
.document()
.unwrap()
.create_element("li")
.unwrap();
li.set_inner_html(data);
let node = Node::from(li);
VNode::VRef(node)
}