more small things

This commit is contained in:
insects 2025-02-05 19:21:00 +01:00
parent 1c86bf326f
commit 84d95fde3f
3 changed files with 7 additions and 12 deletions

View file

@ -122,7 +122,7 @@ impl<'a> CombinedFish<'a> {
let now = clock::get_current_eorzea_date();
let first_window = self.windows.first();
self.is_up = if let Some(window) = first_window {
window.start_time < now && (window.start_time + window.duration) > now
(window.start_time < now) && ((window.start_time + window.duration) > now)
} else {
false
};
@ -380,11 +380,6 @@ impl<'a> CombinedFish<'a> {
idx_date += Duration::hours(8);
}
}
if self.meta.name_en == "The Drowned Sniper" {
dbg!(&results[1]);
dbg!(clock::to_earth_time(results[1].start_time));
}
results
}
}

View file

@ -29,11 +29,7 @@ pub fn main_page(state: State<Arc<AppState>>) -> Markup {
.cmp(&afish.is_up)
.then(bfish.is_always_up.cmp(&afish.is_always_up))
.then(bfish.rarity.total_cmp(&afish.rarity).reverse())
// if (afish.is_up || afish.is_always_up) && !(bfish.is_up && bfish.is_always_up) {
// Ordering::Less
// } else {
// Ordering::Greater
// }
.then(bfish.meta.name_en.cmp(&afish.meta.name_en))
});
layout(html! {
h1 { "Hello! Current ET: " (clock::get_current_eorzea_date().format("%H:%M")) }
@ -42,7 +38,7 @@ pub fn main_page(state: State<Arc<AppState>>) -> Markup {
.title {
h3 { (fish.meta.name_en) }
.subtitle {
(fish.entry.patch)
"Patch " (fish.entry.patch)
}
}
.meta {

View file

@ -26,6 +26,10 @@ section {
color: gray;
}
.meta {
align-self: center;
}
section.up {
background-color: greenyellow;
}