display time until opening/closing
This commit is contained in:
parent
3c935a1be3
commit
e04a98a7fd
5 changed files with 60 additions and 5 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -132,6 +132,7 @@ dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"axum",
|
"axum",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
"chrono-humanize",
|
||||||
"maud",
|
"maud",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
@ -187,6 +188,15 @@ dependencies = [
|
||||||
"windows-targets",
|
"windows-targets",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "chrono-humanize"
|
||||||
|
version = "0.2.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "799627e6b4d27827a814e837b9d8a504832086081806d45b1afa34dc982b023b"
|
||||||
|
dependencies = [
|
||||||
|
"chrono",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "core-foundation-sys"
|
name = "core-foundation-sys"
|
||||||
version = "0.8.7"
|
version = "0.8.7"
|
||||||
|
|
|
@ -7,6 +7,7 @@ edition = "2021"
|
||||||
anyhow = "1.0.95"
|
anyhow = "1.0.95"
|
||||||
axum = { version = "0.8.1", features = ["macros"] }
|
axum = { version = "0.8.1", features = ["macros"] }
|
||||||
chrono = "0.4.39"
|
chrono = "0.4.39"
|
||||||
|
chrono-humanize = "0.2.3"
|
||||||
maud = { version = "0.27.0", features = ["axum"] }
|
maud = { version = "0.27.0", features = ["axum"] }
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
serde_json = "1.0.138"
|
serde_json = "1.0.138"
|
||||||
|
|
15
src/data.rs
15
src/data.rs
|
@ -1,7 +1,9 @@
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use chrono::{DateTime, Datelike, Duration, Timelike, Utc};
|
use chrono::{DateTime, Datelike, Duration, Timelike, Utc};
|
||||||
|
use chrono_humanize::HumanTime;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use serde_json::map::Entry;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
clock,
|
clock,
|
||||||
|
@ -104,6 +106,19 @@ pub struct Window {
|
||||||
pub duration: Duration,
|
pub duration: Duration,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Window {
|
||||||
|
pub fn display_end_time(&self) -> String {
|
||||||
|
let end_date = self.start_time + self.duration;
|
||||||
|
let human_date = HumanTime::from(clock::to_earth_time(end_date));
|
||||||
|
format!("{}", human_date)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn display_start_time(&self) -> String {
|
||||||
|
let human_date = HumanTime::from(clock::to_earth_time(self.start_time));
|
||||||
|
format!("{}", human_date)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[allow(clippy::needless_lifetimes)]
|
#[allow(clippy::needless_lifetimes)]
|
||||||
impl<'a> CombinedFish<'a> {
|
impl<'a> CombinedFish<'a> {
|
||||||
/// Fills in the rest of the struct.
|
/// Fills in the rest of the struct.
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
use std::sync::Arc;
|
use std::{cmp::Ordering, sync::Arc};
|
||||||
|
|
||||||
use axum::extract::State;
|
use axum::extract::State;
|
||||||
|
use chrono::Duration;
|
||||||
use maud::{html, Markup, DOCTYPE};
|
use maud::{html, Markup, DOCTYPE};
|
||||||
|
|
||||||
use crate::{clock, data::CombinedFish, AppState};
|
use crate::{clock, data::CombinedFish, AppState};
|
||||||
|
@ -35,13 +36,22 @@ pub fn main_page(state: State<Arc<AppState>>, with_layout: bool) -> Markup {
|
||||||
let template = 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].alwaysup[fish.is_always_up] {
|
||||||
.title {
|
.title {
|
||||||
h3 { (fish.meta.name_en) }
|
h3 { (fish.meta.name_en) }
|
||||||
.subtitle {
|
.subtitle {
|
||||||
"Patch " (fish.entry.patch)
|
"Patch " (fish.entry.patch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.when {
|
||||||
|
@if let Some(window) = fish.windows.first() {
|
||||||
|
@if fish.is_up || fish.is_always_up {
|
||||||
|
"closes " (window.display_end_time())
|
||||||
|
} @else {
|
||||||
|
"opens " (window.display_start_time())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.meta {
|
.meta {
|
||||||
@if fish.entry.start_hour.is_some() && fish.entry.end_hour.is_some() {
|
@if fish.entry.start_hour.is_some() && fish.entry.end_hour.is_some() {
|
||||||
div {
|
div {
|
||||||
|
|
|
@ -5,10 +5,10 @@ body {
|
||||||
|
|
||||||
section {
|
section {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
display: flex;
|
display: grid;
|
||||||
align-items: center;
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
justify-content: space-between;
|
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
@ -30,6 +30,25 @@ section {
|
||||||
text-align: end;
|
text-align: end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.when {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
section.up {
|
section.up {
|
||||||
background-color: greenyellow;
|
background-color: greenyellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section.alwaysup {
|
||||||
|
background-color: #c6ff6e;
|
||||||
|
background-image: linear-gradient(
|
||||||
|
45deg,
|
||||||
|
greenyellow 25%,
|
||||||
|
transparent 25%,
|
||||||
|
transparent 50%,
|
||||||
|
greenyellow 50%,
|
||||||
|
greenyellow 75%,
|
||||||
|
transparent 75%,
|
||||||
|
transparent
|
||||||
|
);
|
||||||
|
background-size: 50px 50px;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue