automatic page refresh with htmx
This commit is contained in:
parent
84d95fde3f
commit
5db9687be9
4 changed files with 17 additions and 5 deletions
|
@ -37,7 +37,7 @@ where
|
||||||
|
|
||||||
#[axum::debug_handler]
|
#[axum::debug_handler]
|
||||||
async fn main_handler(state: State<Arc<AppState>>) -> Result<Markup, AppError> {
|
async fn main_handler(state: State<Arc<AppState>>) -> Result<Markup, AppError> {
|
||||||
Ok(templates::main_page(state))
|
Ok(templates::main_page(state, true))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|
|
@ -13,6 +13,7 @@ pub fn layout(content: Markup) -> Markup {
|
||||||
title { "beacon" }
|
title { "beacon" }
|
||||||
meta name="viewport" content="width=device-width";
|
meta name="viewport" content="width=device-width";
|
||||||
link rel="stylesheet" href="/static/style.css";
|
link rel="stylesheet" href="/static/style.css";
|
||||||
|
script src="/static/htmx.js" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
body { (content) }
|
body { (content) }
|
||||||
|
@ -20,7 +21,7 @@ pub fn layout(content: Markup) -> Markup {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn main_page(state: State<Arc<AppState>>) -> Markup {
|
pub fn main_page(state: State<Arc<AppState>>, with_layout: bool) -> Markup {
|
||||||
let meta = state.data.fish_with_meta();
|
let meta = state.data.fish_with_meta();
|
||||||
let mut values: Vec<&CombinedFish> = meta.values().filter(|f| f.entry.big_fish).collect();
|
let mut values: Vec<&CombinedFish> = meta.values().filter(|f| f.entry.big_fish).collect();
|
||||||
values.sort_by(|afish, bfish| {
|
values.sort_by(|afish, bfish| {
|
||||||
|
@ -31,7 +32,7 @@ pub fn main_page(state: State<Arc<AppState>>) -> Markup {
|
||||||
.then(bfish.rarity.total_cmp(&afish.rarity).reverse())
|
.then(bfish.rarity.total_cmp(&afish.rarity).reverse())
|
||||||
.then(bfish.meta.name_en.cmp(&afish.meta.name_en))
|
.then(bfish.meta.name_en.cmp(&afish.meta.name_en))
|
||||||
});
|
});
|
||||||
layout(html! {
|
let template = html! {
|
||||||
h1 { "Hello! Current ET: " (clock::get_current_eorzea_date().format("%H:%M")) }
|
h1 { "Hello! Current ET: " (clock::get_current_eorzea_date().format("%H:%M")) }
|
||||||
@for fish in values {
|
@for fish in values {
|
||||||
section.up[fish.is_up || fish.is_always_up] {
|
section.up[fish.is_up || fish.is_always_up] {
|
||||||
|
@ -57,5 +58,15 @@ pub fn main_page(state: State<Arc<AppState>>) -> Markup {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
};
|
||||||
|
|
||||||
|
if with_layout {
|
||||||
|
layout(html! {
|
||||||
|
main hx-get="/" hx-trigger="every 3s" {
|
||||||
|
(template)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
template
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
1
static/htmx.js
Normal file
1
static/htmx.js
Normal file
File diff suppressed because one or more lines are too long
|
@ -27,7 +27,7 @@ section {
|
||||||
}
|
}
|
||||||
|
|
||||||
.meta {
|
.meta {
|
||||||
align-self: center;
|
text-align: end;
|
||||||
}
|
}
|
||||||
|
|
||||||
section.up {
|
section.up {
|
||||||
|
|
Loading…
Add table
Reference in a new issue