UI pass: nav state, ears, feeds table, font flash, faster navigation
- Issue pages highlight Archive instead of Latest unless the issue is the newest one (IssueView::is_latest), with a router test. - The ears row is empty by default and says "Dashboard" on dashboard pages; "Morning edition" only survives on the empty-state hero. - Run page: the Feeds card table is fixed-layout and truncates long feed names with the full title on hover instead of pushing the entries column out of the card. - Static assets are content-hashed, so serve them immutable for a year; preload both Newsreader faces and use font-display: block so a cache revalidation never paints the fallback serif first. Persisted details state is restored pre-paint from theme.js. - Cross-document view transitions (140 ms fade, masthead held still) and Speculation Rules (prerender reader pages, prefetch dashboard pages on hover) served from /static/speculation.json via the Speculation-Rules header, which the CSP would otherwise block inline. No client router. - Dashboard nav gets the same accent underline as the site nav; 40 px targets for the theme toggle, account link and dashboard nav. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MD4VWGq6mGcd8Bg67qyx9k
This commit is contained in:
@@ -0,0 +1,159 @@
|
|||||||
|
# Task 3 handoff — site shell
|
||||||
|
|
||||||
|
## What changed
|
||||||
|
|
||||||
|
- `src/web/issue.rs`
|
||||||
|
- `IssueView` now records `is_latest`, computed by `issue::load` from
|
||||||
|
`Db::latest_issue_date()`.
|
||||||
|
- The full issue, article, World Briefing, and Behind the paper renderers now
|
||||||
|
select `latest` or `archive` navigation state from that flag.
|
||||||
|
- Added a router test with two issue dates proving that only the newest issue
|
||||||
|
marks Latest `aria-current="page"` and that an older issue marks Archive.
|
||||||
|
- `src/web/public.rs`
|
||||||
|
- Anonymous issue rendering uses the same `IssueView::is_latest` navigation
|
||||||
|
state as signed-in issue rendering.
|
||||||
|
- `src/web/templates/layout.html`
|
||||||
|
- The default ears block is empty except on an admin dashboard route, where it
|
||||||
|
says `Dashboard`. Issue/account/login/archive/error templates retain their
|
||||||
|
explicit ears; the public empty issue retains its own `Morning edition`.
|
||||||
|
- Added the italic Newsreader preload alongside the upright preload.
|
||||||
|
- Named the site header for cross-document view transitions.
|
||||||
|
- Made the ears-row theme and account/sign-in controls at least 40 px tall;
|
||||||
|
the account/sign-in link also has a 40 px minimum width.
|
||||||
|
- Dashboard navigation links now have a 40 × 40 px minimum target and use the same 2 px accent
|
||||||
|
active underline, ink hover, and inherited focus-visible ring as site nav.
|
||||||
|
- `src/web/templates/dashboard/run.html`
|
||||||
|
- The Feeds table no longer uses `.scroll-x`. It is fixed-layout and full
|
||||||
|
width, truncates feed names with the full value in `title`, and reserves a
|
||||||
|
narrow fixed entries column. Timings and Provider usage retain their
|
||||||
|
horizontal-scroll behavior.
|
||||||
|
- `src/web/tailwind.css`
|
||||||
|
- Both Newsreader faces use `font-display: block`.
|
||||||
|
- Added automatic cross-document view transitions with a 140 ms root
|
||||||
|
cross-fade. The named site header does not fade, and reduced-motion disables
|
||||||
|
transition animation.
|
||||||
|
- `.badge`, `.pager`, and `.pagination` use tabular numerals. (`.tile-num`
|
||||||
|
already did; the brief said `.pager` did too, but the code did not, so it was
|
||||||
|
corrected.)
|
||||||
|
- `src/web/static/app.css`
|
||||||
|
- Rebuilt from `tailwind.css` with Tailwind 4.3.3.
|
||||||
|
- `src/web/static/speculation.json`
|
||||||
|
- Added moderate same-origin prerender document rules for `/` and
|
||||||
|
`/issues/*`, and moderate prefetch rules for `/dashboard` and
|
||||||
|
`/dashboard/*`.
|
||||||
|
- Logout, rating, static, and all query-string links are excluded. Excluding
|
||||||
|
every query is deliberately conservative and therefore also excludes any
|
||||||
|
query that could mutate state.
|
||||||
|
- `src/web/mod.rs`
|
||||||
|
- Serves the speculation rules with
|
||||||
|
`application/speculationrules+json` and retains content-hash ETags.
|
||||||
|
- All `/static/*` responses, including 304 responses, now send
|
||||||
|
`Cache-Control: public, max-age=31536000, immutable`.
|
||||||
|
- HTML responses send `Speculation-Rules: "/static/speculation.json"` while
|
||||||
|
retaining their existing public/private/no-store cache behavior.
|
||||||
|
- Added assertions for immutable cache headers, rules MIME type, both font
|
||||||
|
preloads, the HTML speculation header, dashboard ears, and dashboard active
|
||||||
|
underline.
|
||||||
|
- `src/web/static/app.js`
|
||||||
|
- A `[data-refresh]` job page now waits for `prerenderingchange` before
|
||||||
|
scheduling reload, so a prerendered page cannot reload in the background.
|
||||||
|
- `src/web/static/theme.js`
|
||||||
|
- Continues to apply the saved theme and `has-js` in the head before first
|
||||||
|
paint.
|
||||||
|
- A short-lived mutation observer now restores persisted `details[id]` state
|
||||||
|
as the parser creates disclosures, then disconnects at `DOMContentLoaded`.
|
||||||
|
This prevents a cold/delayed `app.js` request from exposing the default
|
||||||
|
disclosure state before restoration; `app.js` still owns toggle persistence.
|
||||||
|
|
||||||
|
## Design and implementation decisions
|
||||||
|
|
||||||
|
- Chose `font-display: block` rather than `optional`. This prevents a visible
|
||||||
|
fallback-to-Newsreader swap and preserves the publication typeface. Preloading
|
||||||
|
both faces plus immutable content-hashed assets limits the block cost to an
|
||||||
|
uncached first visit.
|
||||||
|
- Kept the 140 ms transition restrained and limited to document navigation.
|
||||||
|
The masthead/nav swap immediately instead of fading, so navigation context
|
||||||
|
stays visually anchored.
|
||||||
|
- Added only platform progressive enhancements. There is no fetch/swap router,
|
||||||
|
HTMX, or route/auth change.
|
||||||
|
- Speculation Rules and cross-document view transitions are progressive:
|
||||||
|
Chromium uses them; unsupported browsers ignore them and retain normal
|
||||||
|
navigation.
|
||||||
|
|
||||||
|
## Flash reproduction and visual verification
|
||||||
|
|
||||||
|
The requested dev server could not start inside this sandbox:
|
||||||
|
|
||||||
|
```text
|
||||||
|
$ DAILY_EPUB_SERVER__BIND=127.0.0.1:3603 cargo run -- --config ./dev/config.toml serve
|
||||||
|
Error: could not bind 127.0.0.1:3603: Operation not permitted (os error 1)
|
||||||
|
```
|
||||||
|
|
||||||
|
Therefore the throttled Playwright before/after capture and the requested light,
|
||||||
|
dark, desktop, and 390 px screenshots could not be produced. The code audit
|
||||||
|
found that theme and mobile TOC state were already applied by `theme.js` before
|
||||||
|
paint. Persisted `details` state has now also moved into that pre-paint path.
|
||||||
|
The other visible-swap candidate was Newsreader's `font-display: swap`; the
|
||||||
|
preload/cache/block changes address that path.
|
||||||
|
|
||||||
|
The requested curl calls likewise could not connect:
|
||||||
|
|
||||||
|
```text
|
||||||
|
$ curl -sS -D - -o /dev/null http://127.0.0.1:3603/
|
||||||
|
curl: (7) Failed to connect to 127.0.0.1 port 3603 after 0 ms: Couldn't connect to server
|
||||||
|
|
||||||
|
$ curl -sS -D - -o /dev/null http://127.0.0.1:3603/static/app.css
|
||||||
|
curl: (7) Failed to connect to 127.0.0.1 port 3603 after 0 ms: Couldn't connect to server
|
||||||
|
```
|
||||||
|
|
||||||
|
Router tests verify the material headers that those calls should show:
|
||||||
|
|
||||||
|
```text
|
||||||
|
GET /
|
||||||
|
content-type: text/html; charset=utf-8
|
||||||
|
cache-control: public, max-age=300
|
||||||
|
speculation-rules: "/static/speculation.json"
|
||||||
|
vary: Cookie
|
||||||
|
|
||||||
|
GET /static/app.css
|
||||||
|
content-type: text/css; charset=utf-8
|
||||||
|
cache-control: public, max-age=31536000, immutable
|
||||||
|
etag: "0b00513092d50175d3615cfd6cdfc5fed6e416f2aea118c3b0f0110a66089036"
|
||||||
|
```
|
||||||
|
|
||||||
|
Signed-in issue responses remain `private, no-store`; dashboard responses
|
||||||
|
remain `no-store`.
|
||||||
|
|
||||||
|
## Verification
|
||||||
|
|
||||||
|
- `cargo fmt -- --check` — passed.
|
||||||
|
- `cargo clippy --all-targets -- -D warnings` — passed.
|
||||||
|
- `npm run css:check` — passed with no diff using the repository's pinned
|
||||||
|
Tailwind 4.3.3 binary. (`npm ci` could not finish under the restricted npm
|
||||||
|
environment, so the already-installed sibling-worktree binary was placed on
|
||||||
|
`PATH`; that worktree was only read, never modified.)
|
||||||
|
- `python3 -m json.tool src/web/static/speculation.json` — passed.
|
||||||
|
- `node --check src/web/static/app.js` and `node --check
|
||||||
|
src/web/static/theme.js` — passed.
|
||||||
|
- `cargo test --lib web::` — 84 passed, 0 failed.
|
||||||
|
- Dedicated newest/archive navigation test — passed.
|
||||||
|
- Dedicated dashboard settings shell/ears/active-nav test — passed.
|
||||||
|
- `cargo test` — 432 library tests passed; 13 tests failed solely because their
|
||||||
|
mock HTTP servers could not bind loopback (`Operation not permitted`). Ten are
|
||||||
|
the sandbox failures named in the shared brief; three newer OpenAI mock-server
|
||||||
|
tests fail at the same listener helper for the same reason.
|
||||||
|
- `cargo test --lib` with those exact 13 bind-dependent tests skipped — 432
|
||||||
|
passed, 0 failed, 13 filtered out.
|
||||||
|
- Non-server integration tests (`config_check`, `e2e_pipeline`, `m2_pipeline`,
|
||||||
|
`m3_curation`, `m4_epub`) — 25 passed, 0 failed.
|
||||||
|
- `cargo test --doc` — passed (0 doctests).
|
||||||
|
- `git diff --check` — passed.
|
||||||
|
|
||||||
|
## Left open
|
||||||
|
|
||||||
|
- Run the four requested screenshot sets and throttled first-frame comparison
|
||||||
|
outside the sandbox, where port 3603 can bind. This is also the remaining
|
||||||
|
browser-level validation for view-transition behavior and Chrome's
|
||||||
|
Speculation Rules panel.
|
||||||
|
- `tests/m7_server.rs` was not run because it is explicitly excluded in this
|
||||||
|
loopback-restricted sandbox.
|
||||||
+94
-4
@@ -35,6 +35,7 @@ pub struct IssueView {
|
|||||||
pub downloads: Vec<Download>,
|
pub downloads: Vec<Download>,
|
||||||
pub from_json: bool,
|
pub from_json: bool,
|
||||||
pub world_html: Option<String>,
|
pub world_html: Option<String>,
|
||||||
|
pub is_latest: bool,
|
||||||
has_behind: bool,
|
has_behind: bool,
|
||||||
legacy_counts: Option<LegacyColophonCounts>,
|
legacy_counts: Option<LegacyColophonCounts>,
|
||||||
}
|
}
|
||||||
@@ -80,6 +81,7 @@ pub async fn load(
|
|||||||
let Some(row) = db.issue_by_date(date).await? else {
|
let Some(row) = db.issue_by_date(date).await? else {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
};
|
};
|
||||||
|
let is_latest = db.latest_issue_date().await? == Some(date);
|
||||||
let legacy = if row.issue_json.is_none() {
|
let legacy = if row.issue_json.is_none() {
|
||||||
Some(load_legacy_facts(db, date, row.report_json.as_deref()).await?)
|
Some(load_legacy_facts(db, date, row.report_json.as_deref()).await?)
|
||||||
} else {
|
} else {
|
||||||
@@ -273,6 +275,7 @@ pub async fn load(
|
|||||||
downloads,
|
downloads,
|
||||||
from_json,
|
from_json,
|
||||||
world_html,
|
world_html,
|
||||||
|
is_latest,
|
||||||
has_behind: from_json || legacy.as_ref().is_some_and(|facts| facts.has_source),
|
has_behind: from_json || legacy.as_ref().is_some_and(|facts| facts.has_source),
|
||||||
legacy_counts: legacy.map(|facts| LegacyColophonCounts {
|
legacy_counts: legacy.map(|facts| LegacyColophonCounts {
|
||||||
entries_fetched: facts.entries_fetched,
|
entries_fetched: facts.entries_fetched,
|
||||||
@@ -955,7 +958,8 @@ pub async fn render_full(
|
|||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
let colophon = colophon_view(&view.issue, view.legacy_counts.as_ref());
|
let colophon = colophon_view(&view.issue, view.legacy_counts.as_ref());
|
||||||
let mut page = Page::new(format!("Issue {date}"), Some(viewer), "latest");
|
let active_nav = if view.is_latest { "latest" } else { "archive" };
|
||||||
|
let mut page = Page::new(format!("Issue {date}"), Some(viewer), active_nav);
|
||||||
page.flash = take_flash(session).await?;
|
page.flash = take_flash(session).await?;
|
||||||
Ok(Html(IssueFullTemplate {
|
Ok(Html(IssueFullTemplate {
|
||||||
page,
|
page,
|
||||||
@@ -1023,7 +1027,8 @@ pub async fn article(
|
|||||||
href: article_href(date, next.article.id),
|
href: article_href(date, next.article.id),
|
||||||
});
|
});
|
||||||
let article = &pick.article;
|
let article = &pick.article;
|
||||||
let mut page = Page::new(article.title.clone(), Some(viewer.clone()), "latest");
|
let active_nav = if view.is_latest { "latest" } else { "archive" };
|
||||||
|
let mut page = Page::new(article.title.clone(), Some(viewer.clone()), active_nav);
|
||||||
page.flash = take_flash(&session).await?;
|
page.flash = take_flash(&session).await?;
|
||||||
Ok(Html(ArticleTemplate {
|
Ok(Html(ArticleTemplate {
|
||||||
page,
|
page,
|
||||||
@@ -1089,7 +1094,8 @@ pub async fn world(
|
|||||||
} else {
|
} else {
|
||||||
return Err(WebError::NotFound);
|
return Err(WebError::NotFound);
|
||||||
};
|
};
|
||||||
let mut page = Page::new("World Briefing", Some(viewer), "latest");
|
let active_nav = if view.is_latest { "latest" } else { "archive" };
|
||||||
|
let mut page = Page::new("World Briefing", Some(viewer), active_nav);
|
||||||
page.flash = take_flash(&session).await?;
|
page.flash = take_flash(&session).await?;
|
||||||
Ok(Html(WorldTemplate {
|
Ok(Html(WorldTemplate {
|
||||||
page,
|
page,
|
||||||
@@ -1122,7 +1128,8 @@ pub async fn behind(
|
|||||||
}
|
}
|
||||||
let toc = issue_toc(&view, TocPosition::Behind);
|
let toc = issue_toc(&view, TocPosition::Behind);
|
||||||
let behind = &view.issue.behind;
|
let behind = &view.issue.behind;
|
||||||
let mut page = Page::new("Behind the paper", Some(viewer), "latest");
|
let active_nav = if view.is_latest { "latest" } else { "archive" };
|
||||||
|
let mut page = Page::new("Behind the paper", Some(viewer), active_nav);
|
||||||
page.flash = take_flash(&session).await?;
|
page.flash = take_flash(&session).await?;
|
||||||
Ok(Html(BehindTemplate {
|
Ok(Html(BehindTemplate {
|
||||||
page,
|
page,
|
||||||
@@ -1536,6 +1543,89 @@ mod tests {
|
|||||||
assert!(loaded.issue.editorial.front_page_html.contains("coffee"));
|
assert!(loaded.issue.editorial.front_page_html.contains("coffee"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn issue_navigation_marks_only_the_newest_issue_as_latest() {
|
||||||
|
let (_dir, db, source) = seeded_issue(true).await;
|
||||||
|
let old_date = source.meta.date;
|
||||||
|
let latest_date: Date = "2026-08-16".parse().unwrap();
|
||||||
|
let mut latest = source.clone();
|
||||||
|
latest.meta.date = latest_date;
|
||||||
|
latest.meta.issue_number += 1;
|
||||||
|
latest.meta.display_date = display_date(latest_date);
|
||||||
|
latest.lineup.date = latest_date;
|
||||||
|
if let Some(world) = &mut latest.world_briefing {
|
||||||
|
world.date = latest_date;
|
||||||
|
}
|
||||||
|
let latest_json = serde_json::to_string(&latest).unwrap();
|
||||||
|
db.upsert_issue(
|
||||||
|
latest_date,
|
||||||
|
latest.meta.issue_number,
|
||||||
|
latest.meta.generated_at,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
Some(&latest.editorial.front_page_html),
|
||||||
|
None,
|
||||||
|
Some(&latest_json),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
db.replace_issue_articles(latest_date, &latest.lineup.picks)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let old_view = load(&db, &crate::config::Config::default(), old_date)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.unwrap();
|
||||||
|
let latest_view = load(&db, &crate::config::Config::default(), latest_date)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.unwrap();
|
||||||
|
assert!(!old_view.is_latest);
|
||||||
|
assert!(latest_view.is_latest);
|
||||||
|
|
||||||
|
let app = crate::server::router(crate::server::AppState::new(
|
||||||
|
db,
|
||||||
|
crate::config::Config::default(),
|
||||||
|
None,
|
||||||
|
));
|
||||||
|
let old = app
|
||||||
|
.clone()
|
||||||
|
.oneshot(
|
||||||
|
Request::builder()
|
||||||
|
.uri(format!("/issues/{old_date}"))
|
||||||
|
.body(Body::empty())
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(old.status(), StatusCode::OK);
|
||||||
|
let old = response_text(old).await;
|
||||||
|
assert!(
|
||||||
|
old.contains("href=\"/issues\" aria-current=\"page\">Archive</a>"),
|
||||||
|
"{old}"
|
||||||
|
);
|
||||||
|
assert!(!old.contains("href=\"/\" aria-current=\"page\">Latest</a>"));
|
||||||
|
|
||||||
|
let latest = app
|
||||||
|
.oneshot(
|
||||||
|
Request::builder()
|
||||||
|
.uri(format!("/issues/{latest_date}"))
|
||||||
|
.body(Body::empty())
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(latest.status(), StatusCode::OK);
|
||||||
|
let latest = response_text(latest).await;
|
||||||
|
assert!(
|
||||||
|
latest.contains("href=\"/\" aria-current=\"page\">Latest</a>"),
|
||||||
|
"{latest}"
|
||||||
|
);
|
||||||
|
assert!(!latest.contains("href=\"/issues\" aria-current=\"page\">Archive</a>"));
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn public_issue_archive_feed_robots_and_reports_are_served() {
|
async fn public_issue_archive_feed_robots_and_reports_are_served() {
|
||||||
let (_dir, db, source) = seeded_issue(true).await;
|
let (_dir, db, source) = seeded_issue(true).await;
|
||||||
|
|||||||
+81
-4
@@ -206,7 +206,7 @@ pub struct Page {
|
|||||||
pub version: &'static str,
|
pub version: &'static str,
|
||||||
/// Cache-busting token for `/static/*.css|js` URLs: a content hash, so
|
/// Cache-busting token for `/static/*.css|js` URLs: a content hash, so
|
||||||
/// any stylesheet or script change reaches browsers that cached the
|
/// any stylesheet or script change reaches browsers that cached the
|
||||||
/// previous build (they are served with a one-day `max-age`).
|
/// previous build (they are served with an immutable one-year `max-age`).
|
||||||
pub asset_version: &'static str,
|
pub asset_version: &'static str,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -236,6 +236,22 @@ impl Page {
|
|||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|viewer| viewer.role == users::Role::Admin)
|
.is_some_and(|viewer| viewer.role == users::Role::Admin)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn is_dashboard(&self) -> bool {
|
||||||
|
self.is_admin()
|
||||||
|
&& matches!(
|
||||||
|
self.active_nav.as_str(),
|
||||||
|
"dashboard"
|
||||||
|
| "runs"
|
||||||
|
| "articles"
|
||||||
|
| "ratings"
|
||||||
|
| "profile"
|
||||||
|
| "stats"
|
||||||
|
| "jobs"
|
||||||
|
| "settings"
|
||||||
|
| "users"
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn take_flash(session: &Session) -> Result<Option<Flash>, WebError> {
|
pub async fn take_flash(session: &Session) -> Result<Option<Flash>, WebError> {
|
||||||
@@ -415,6 +431,10 @@ pub async fn security_headers(request: Request, next: Next) -> Response {
|
|||||||
.is_some_and(|value| value.starts_with("text/html"))
|
.is_some_and(|value| value.starts_with("text/html"))
|
||||||
{
|
{
|
||||||
headers.append(header::VARY, HeaderValue::from_static("Cookie"));
|
headers.append(header::VARY, HeaderValue::from_static("Cookie"));
|
||||||
|
headers.insert(
|
||||||
|
header::HeaderName::from_static("speculation-rules"),
|
||||||
|
HeaderValue::from_static("\"/static/speculation.json\""),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
response
|
response
|
||||||
}
|
}
|
||||||
@@ -529,6 +549,10 @@ async fn static_asset(
|
|||||||
"application/javascript; charset=utf-8",
|
"application/javascript; charset=utf-8",
|
||||||
include_str!("static/theme.js").as_bytes(),
|
include_str!("static/theme.js").as_bytes(),
|
||||||
),
|
),
|
||||||
|
"speculation.json" => (
|
||||||
|
"application/speculationrules+json",
|
||||||
|
include_str!("static/speculation.json").as_bytes(),
|
||||||
|
),
|
||||||
"favicon.svg" => (
|
"favicon.svg" => (
|
||||||
"image/svg+xml",
|
"image/svg+xml",
|
||||||
include_str!("static/favicon.svg").as_bytes(),
|
include_str!("static/favicon.svg").as_bytes(),
|
||||||
@@ -553,7 +577,10 @@ async fn static_asset(
|
|||||||
StatusCode::NOT_MODIFIED,
|
StatusCode::NOT_MODIFIED,
|
||||||
[
|
[
|
||||||
(header::ETAG, etag),
|
(header::ETAG, etag),
|
||||||
(header::CACHE_CONTROL, "public, max-age=86400".into()),
|
(
|
||||||
|
header::CACHE_CONTROL,
|
||||||
|
"public, max-age=31536000, immutable".into(),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
.into_response();
|
.into_response();
|
||||||
@@ -562,7 +589,10 @@ async fn static_asset(
|
|||||||
StatusCode::OK,
|
StatusCode::OK,
|
||||||
[
|
[
|
||||||
(header::CONTENT_TYPE, asset.0.to_string()),
|
(header::CONTENT_TYPE, asset.0.to_string()),
|
||||||
(header::CACHE_CONTROL, "public, max-age=86400".into()),
|
(
|
||||||
|
header::CACHE_CONTROL,
|
||||||
|
"public, max-age=31536000, immutable".into(),
|
||||||
|
),
|
||||||
(header::ETAG, etag),
|
(header::ETAG, etag),
|
||||||
],
|
],
|
||||||
asset.1,
|
asset.1,
|
||||||
@@ -653,6 +683,10 @@ mod tests {
|
|||||||
anonymous.headers().get(header::CACHE_CONTROL).unwrap(),
|
anonymous.headers().get(header::CACHE_CONTROL).unwrap(),
|
||||||
"public, max-age=300"
|
"public, max-age=300"
|
||||||
);
|
);
|
||||||
|
assert_eq!(
|
||||||
|
anonymous.headers().get("speculation-rules").unwrap(),
|
||||||
|
"\"/static/speculation.json\""
|
||||||
|
);
|
||||||
|
|
||||||
let response = app
|
let response = app
|
||||||
.clone()
|
.clone()
|
||||||
@@ -792,6 +826,27 @@ mod tests {
|
|||||||
allowed.headers().get(header::CACHE_CONTROL).unwrap(),
|
allowed.headers().get(header::CACHE_CONTROL).unwrap(),
|
||||||
"no-store"
|
"no-store"
|
||||||
);
|
);
|
||||||
|
let settings = app
|
||||||
|
.clone()
|
||||||
|
.oneshot(
|
||||||
|
Request::builder()
|
||||||
|
.uri("/dashboard/settings")
|
||||||
|
.header(header::COOKIE, &admin)
|
||||||
|
.body(Body::empty())
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(settings.status(), StatusCode::OK);
|
||||||
|
let settings = response_text(settings).await;
|
||||||
|
assert!(settings.contains("<span>Dashboard</span>"), "{settings}");
|
||||||
|
assert!(!settings.contains("Morning edition"), "{settings}");
|
||||||
|
assert!(
|
||||||
|
settings.contains(
|
||||||
|
"border-accent text-ink\" href=\"/dashboard/settings\" aria-current=\"page\""
|
||||||
|
),
|
||||||
|
"{settings}"
|
||||||
|
);
|
||||||
let allowed_rate = app
|
let allowed_rate = app
|
||||||
.oneshot(
|
.oneshot(
|
||||||
Request::builder()
|
Request::builder()
|
||||||
@@ -1025,6 +1080,8 @@ mod tests {
|
|||||||
let expected = format!("/static/app.css?v={}", ASSET_VERSION.as_str());
|
let expected = format!("/static/app.css?v={}", ASSET_VERSION.as_str());
|
||||||
assert!(html.contains(&expected), "{html}");
|
assert!(html.contains(&expected), "{html}");
|
||||||
assert!(!html.contains(&format!("/static/app.css?v={}", crate::VERSION)));
|
assert!(!html.contains(&format!("/static/app.css?v={}", crate::VERSION)));
|
||||||
|
assert!(html.contains("rel=\"preload\" href=\"/static/Newsreader.woff2\""));
|
||||||
|
assert!(html.contains("rel=\"preload\" href=\"/static/Newsreader-italic.woff2\""));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
@@ -1044,10 +1101,11 @@ mod tests {
|
|||||||
assert_eq!(first.status(), StatusCode::OK);
|
assert_eq!(first.status(), StatusCode::OK);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
first.headers().get(header::CACHE_CONTROL).unwrap(),
|
first.headers().get(header::CACHE_CONTROL).unwrap(),
|
||||||
"public, max-age=86400"
|
"public, max-age=31536000, immutable"
|
||||||
);
|
);
|
||||||
let etag = first.headers().get(header::ETAG).unwrap().clone();
|
let etag = first.headers().get(header::ETAG).unwrap().clone();
|
||||||
let cached = app
|
let cached = app
|
||||||
|
.clone()
|
||||||
.oneshot(
|
.oneshot(
|
||||||
Request::builder()
|
Request::builder()
|
||||||
.uri("/static/app.css")
|
.uri("/static/app.css")
|
||||||
@@ -1058,6 +1116,25 @@ mod tests {
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert_eq!(cached.status(), StatusCode::NOT_MODIFIED);
|
assert_eq!(cached.status(), StatusCode::NOT_MODIFIED);
|
||||||
|
assert_eq!(
|
||||||
|
cached.headers().get(header::CACHE_CONTROL).unwrap(),
|
||||||
|
"public, max-age=31536000, immutable"
|
||||||
|
);
|
||||||
|
|
||||||
|
let rules = app
|
||||||
|
.oneshot(
|
||||||
|
Request::builder()
|
||||||
|
.uri("/static/speculation.json")
|
||||||
|
.body(Body::empty())
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(rules.status(), StatusCode::OK);
|
||||||
|
assert_eq!(
|
||||||
|
rules.headers().get(header::CONTENT_TYPE).unwrap(),
|
||||||
|
"application/speculationrules+json"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
|
|||||||
+2
-1
@@ -219,8 +219,9 @@ pub async fn show_issue(
|
|||||||
let response = issue::render_full(&state, view, viewer, &session).await?;
|
let response = issue::render_full(&state, view, viewer, &session).await?;
|
||||||
return Ok(public_cache(response, &headers));
|
return Ok(public_cache(response, &headers));
|
||||||
}
|
}
|
||||||
|
let active_nav = if view.is_latest { "latest" } else { "archive" };
|
||||||
let response = Html(IssuePublicTemplate {
|
let response = Html(IssuePublicTemplate {
|
||||||
page: Page::new(format!("Issue {date}"), None, "latest"),
|
page: Page::new(format!("Issue {date}"), None, active_nav),
|
||||||
issue: PublicIssue::from(&view.issue),
|
issue: PublicIssue::from(&view.issue),
|
||||||
downloads: Vec::new(),
|
downloads: Vec::new(),
|
||||||
empty: false,
|
empty: false,
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -109,7 +109,13 @@ document.addEventListener("click", (event) => {
|
|||||||
/* step 6: reload a job page every N seconds while its job is requested/running */
|
/* step 6: reload a job page every N seconds while its job is requested/running */
|
||||||
document.querySelectorAll("[data-refresh]").forEach((element) => {
|
document.querySelectorAll("[data-refresh]").forEach((element) => {
|
||||||
const seconds = Number(element.dataset.refresh);
|
const seconds = Number(element.dataset.refresh);
|
||||||
if (seconds > 0) setTimeout(() => window.location.reload(), seconds * 1000);
|
if (seconds <= 0) return;
|
||||||
|
const schedule = () => setTimeout(() => window.location.reload(), seconds * 1000);
|
||||||
|
if (document.prerendering) {
|
||||||
|
document.addEventListener("prerenderingchange", schedule, { once: true });
|
||||||
|
} else {
|
||||||
|
schedule();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
/* step 4: table-of-contents panel (below `lg`) and reading-progress bar */
|
/* step 4: table-of-contents panel (below `lg`) and reading-progress bar */
|
||||||
const tocPanel = document.querySelector("[data-toc-panel]");
|
const tocPanel = document.querySelector("[data-toc-panel]");
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"prerender": [
|
||||||
|
{
|
||||||
|
"source": "document",
|
||||||
|
"where": {
|
||||||
|
"and": [
|
||||||
|
{ "href_matches": ["/", "/issues/*"] },
|
||||||
|
{ "not": { "href_matches": ["/logout", "/rate", "/static/*", "/*\\?*"] } }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"eagerness": "moderate"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"prefetch": [
|
||||||
|
{
|
||||||
|
"source": "document",
|
||||||
|
"where": {
|
||||||
|
"and": [
|
||||||
|
{ "href_matches": ["/dashboard", "/dashboard/*"] },
|
||||||
|
{ "not": { "href_matches": ["/logout", "/rate", "/static/*", "/*\\?*"] } }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"eagerness": "moderate"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -9,4 +9,23 @@
|
|||||||
} catch (_) {
|
} catch (_) {
|
||||||
document.documentElement.removeAttribute("data-theme");
|
document.documentElement.removeAttribute("data-theme");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Restore persisted disclosures as the parser creates them. This head script
|
||||||
|
// runs before paint, so a cold app.js request cannot expose the server-default
|
||||||
|
// open state and then shift the dashboard when the script finally arrives.
|
||||||
|
const restoreDetails = (root) => {
|
||||||
|
const details = [];
|
||||||
|
if (root.nodeType === Node.ELEMENT_NODE && root.matches("details[id]")) details.push(root);
|
||||||
|
root.querySelectorAll?.("details[id]").forEach((element) => details.push(element));
|
||||||
|
details.forEach((element) => {
|
||||||
|
try {
|
||||||
|
element.open = localStorage.getItem("details:" + element.id) === "open";
|
||||||
|
} catch (_) {}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const detailsObserver = new MutationObserver((records) => {
|
||||||
|
records.forEach((record) => record.addedNodes.forEach(restoreDetails));
|
||||||
|
});
|
||||||
|
detailsObserver.observe(document.documentElement, { childList: true, subtree: true });
|
||||||
|
document.addEventListener("DOMContentLoaded", () => detailsObserver.disconnect(), { once: true });
|
||||||
})();
|
})();
|
||||||
|
|||||||
+38
-5
@@ -9,7 +9,7 @@
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 200 800;
|
font-weight: 200 800;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
font-display: swap;
|
font-display: block;
|
||||||
src: url("/static/Newsreader.woff2") format("woff2");
|
src: url("/static/Newsreader.woff2") format("woff2");
|
||||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||||
}
|
}
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: 200 800;
|
font-weight: 200 800;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
font-display: swap;
|
font-display: block;
|
||||||
src: url("/static/Newsreader-italic.woff2") format("woff2");
|
src: url("/static/Newsreader-italic.woff2") format("woff2");
|
||||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||||
}
|
}
|
||||||
@@ -82,6 +82,39 @@
|
|||||||
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; transition-duration:0.01ms !important; } }
|
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; transition-duration:0.01ms !important; } }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@view-transition {
|
||||||
|
navigation: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-header {
|
||||||
|
view-transition-name: site-header;
|
||||||
|
}
|
||||||
|
|
||||||
|
::view-transition-old(root),
|
||||||
|
::view-transition-new(root) {
|
||||||
|
animation-duration: 140ms;
|
||||||
|
animation-timing-function: ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
::view-transition-group(site-header),
|
||||||
|
::view-transition-new(site-header) {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::view-transition-old(site-header) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
::view-transition-group(site-header),
|
||||||
|
::view-transition-old(root),
|
||||||
|
::view-transition-new(root),
|
||||||
|
::view-transition-old(site-header),
|
||||||
|
::view-transition-new(site-header) {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@layer components {
|
@layer components {
|
||||||
/* ---------- shared controls ---------- */
|
/* ---------- shared controls ---------- */
|
||||||
@@ -91,7 +124,7 @@
|
|||||||
.btn:disabled, .btn-primary:disabled, .btn-danger:disabled { @apply cursor-not-allowed border-rule bg-paper-2 text-muted hover:bg-paper-2 hover:text-muted; }
|
.btn:disabled, .btn-primary:disabled, .btn-danger:disabled { @apply cursor-not-allowed border-rule bg-paper-2 text-muted hover:bg-paper-2 hover:text-muted; }
|
||||||
.btn-danger, button.danger { @apply inline-flex min-h-9 items-center justify-center rounded-sm border border-down bg-transparent px-2.5 py-1 font-sans text-sm font-medium text-down transition-colors duration-150 hover:bg-down hover:text-paper; }
|
.btn-danger, button.danger { @apply inline-flex min-h-9 items-center justify-center rounded-sm border border-down bg-transparent px-2.5 py-1 font-sans text-sm font-medium text-down transition-colors duration-150 hover:bg-down hover:text-paper; }
|
||||||
|
|
||||||
.badge { @apply inline-flex items-center whitespace-nowrap rounded-full px-2 py-0.5 font-sans text-xs font-medium leading-5; color:var(--ink-2); background:color-mix(in oklab, var(--ink) 8%, transparent); }
|
.badge { @apply inline-flex items-center whitespace-nowrap rounded-full px-2 py-0.5 font-sans text-xs font-medium leading-5 tabular-nums; color:var(--ink-2); background:color-mix(in oklab, var(--ink) 8%, transparent); }
|
||||||
.badge.selected, .badge.loved, .badge.ok { color:var(--loved); background:color-mix(in oklab, var(--loved) 14%, transparent); }
|
.badge.selected, .badge.loved, .badge.ok { color:var(--loved); background:color-mix(in oklab, var(--loved) 14%, transparent); }
|
||||||
.badge.good, .badge.assessed, .badge.triaged, .badge.degraded { color:var(--good); background:color-mix(in oklab, var(--good) 14%, transparent); }
|
.badge.good, .badge.assessed, .badge.triaged, .badge.degraded { color:var(--good); background:color-mix(in oklab, var(--good) 14%, transparent); }
|
||||||
.badge.down, .badge.excluded, .badge.failed, .badge.dry_run { color:var(--down); background:color-mix(in oklab, var(--down) 14%, transparent); }
|
.badge.down, .badge.excluded, .badge.failed, .badge.dry_run { color:var(--down); background:color-mix(in oklab, var(--down) 14%, transparent); }
|
||||||
@@ -182,14 +215,14 @@
|
|||||||
.form-inline label { @apply flex items-center gap-2 text-sm; }
|
.form-inline label { @apply flex items-center gap-2 text-sm; }
|
||||||
.table-filter { @apply my-2 w-80 max-w-full font-sans text-sm; }
|
.table-filter { @apply my-2 w-80 max-w-full font-sans text-sm; }
|
||||||
|
|
||||||
.pager { @apply flex flex-wrap items-center justify-between gap-x-6 gap-y-2 py-1 font-sans text-sm text-muted; }
|
.pager { @apply flex flex-wrap items-center justify-between gap-x-6 gap-y-2 py-1 font-sans text-sm tabular-nums text-muted; }
|
||||||
.pager a { @apply text-ink no-underline hover:text-accent; }
|
.pager a { @apply text-ink no-underline hover:text-accent; }
|
||||||
.run-nav { @apply flex flex-wrap items-center justify-between gap-x-6 gap-y-2 font-sans text-sm; }
|
.run-nav { @apply flex flex-wrap items-center justify-between gap-x-6 gap-y-2 font-sans text-sm; }
|
||||||
.run-nav a { @apply text-ink no-underline hover:text-accent; }
|
.run-nav a { @apply text-ink no-underline hover:text-accent; }
|
||||||
.tabs { @apply flex flex-wrap items-center gap-x-6 border-b border-rule font-sans text-[0.72rem] font-medium uppercase tracking-[0.12em]; }
|
.tabs { @apply flex flex-wrap items-center gap-x-6 border-b border-rule font-sans text-[0.72rem] font-medium uppercase tracking-[0.12em]; }
|
||||||
.tabs a { @apply -mb-px flex min-h-10 items-center border-b-2 border-transparent text-muted no-underline hover:text-ink; }
|
.tabs a { @apply -mb-px flex min-h-10 items-center border-b-2 border-transparent text-muted no-underline hover:text-ink; }
|
||||||
.tabs a.active { @apply border-accent text-ink; }
|
.tabs a.active { @apply border-accent text-ink; }
|
||||||
.pagination { @apply font-sans text-sm text-muted; }
|
.pagination { @apply font-sans text-sm tabular-nums text-muted; }
|
||||||
|
|
||||||
tr.superseded > td { @apply text-muted; }
|
tr.superseded > td { @apply text-muted; }
|
||||||
tr.superseded a { @apply text-muted; }
|
tr.superseded a { @apply text-muted; }
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
<section class="card"><h2>Timings</h2><div class="scroll-x"><table><thead><tr><th>stage</th><th class="num">seconds</th></tr></thead><tbody>{% for line in timings %}<tr><td>{{ line.stage }}</td><td class="num">{{ line.seconds }}</td></tr>{% endfor %}<tr><th>total</th><th class="num">{{ timings_total }}</th></tr></tbody></table></div></section>
|
<section class="card"><h2>Timings</h2><div class="scroll-x"><table><thead><tr><th>stage</th><th class="num">seconds</th></tr></thead><tbody>{% for line in timings %}<tr><td>{{ line.stage }}</td><td class="num">{{ line.seconds }}</td></tr>{% endfor %}<tr><th>total</th><th class="num">{{ timings_total }}</th></tr></tbody></table></div></section>
|
||||||
<section class="card"><h2>Provider usage</h2><div class="scroll-x"><table><thead><tr><th>provider</th><th class="num">in</th><th class="num">cached</th><th class="num">cache write</th><th class="num">out</th><th class="num">cost</th></tr></thead><tbody>{% for line in providers %}<tr><td>{{ line.provider }}</td><td class="num">{{ line.input }}</td><td class="num">{{ line.cached }}</td><td class="num">{{ line.cache_write }}</td><td class="num">{{ line.output }}</td><td class="num">{{ line.cost }}</td></tr>{% endfor %}</tbody></table></div></section>
|
<section class="card"><h2>Provider usage</h2><div class="scroll-x"><table><thead><tr><th>provider</th><th class="num">in</th><th class="num">cached</th><th class="num">cache write</th><th class="num">out</th><th class="num">cost</th></tr></thead><tbody>{% for line in providers %}<tr><td>{{ line.provider }}</td><td class="num">{{ line.input }}</td><td class="num">{{ line.cached }}</td><td class="num">{{ line.cache_write }}</td><td class="num">{{ line.output }}</td><td class="num">{{ line.cost }}</td></tr>{% endfor %}</tbody></table></div></section>
|
||||||
<section class="card" id="warnings"><h2>Warnings</h2>{% if warnings.is_empty() %}<p class="muted">None.</p>{% else %}<ul class="list-disc pl-5 text-warn">{% for warning in warnings %}<li>{{ warning }}</li>{% endfor %}</ul>{% endif %}</section>
|
<section class="card" id="warnings"><h2>Warnings</h2>{% if warnings.is_empty() %}<p class="muted">None.</p>{% else %}<ul class="list-disc pl-5 text-warn">{% for warning in warnings %}<li>{{ warning }}</li>{% endfor %}</ul>{% endif %}</section>
|
||||||
<section class="card"><h2>Feeds (top {{ feeds.len() }})</h2><div class="scroll-x"><table><thead><tr><th>feed</th><th class="num">entries</th></tr></thead><tbody>{% for line in feeds %}<tr><td>{{ line.name }}</td><td class="num">{{ line.count }}</td></tr>{% endfor %}</tbody></table></div></section>
|
<section class="card"><h2>Feeds (top {{ feeds.len() }})</h2><div><table class="table-fixed"><thead><tr><th>feed</th><th class="num w-20">entries</th></tr></thead><tbody>{% for line in feeds %}<tr><td class="truncate" title="{{ line.name }}">{{ line.name }}</td><td class="num w-20">{{ line.count }}</td></tr>{% endfor %}</tbody></table></div></section>
|
||||||
</div>{% else %}<p class="muted text-sm">This run has no stored report; only the funnel and candidates are available.</p>{% endif %}
|
</div>{% else %}<p class="muted text-sm">This run has no stored report; only the funnel and candidates are available.</p>{% endif %}
|
||||||
|
|
||||||
<h2>Config diff</h2>
|
<h2>Config diff</h2>
|
||||||
|
|||||||
@@ -6,15 +6,16 @@
|
|||||||
<title>{{ page.title }} · The Daily EPUB</title>
|
<title>{{ page.title }} · The Daily EPUB</title>
|
||||||
<script src="/static/theme.js?v={{ page.asset_version }}"></script>
|
<script src="/static/theme.js?v={{ page.asset_version }}"></script>
|
||||||
<link rel="preload" href="/static/Newsreader.woff2" as="font" type="font/woff2" crossorigin>
|
<link rel="preload" href="/static/Newsreader.woff2" as="font" type="font/woff2" crossorigin>
|
||||||
|
<link rel="preload" href="/static/Newsreader-italic.woff2" as="font" type="font/woff2" crossorigin>
|
||||||
<link rel="stylesheet" href="/static/app.css?v={{ page.asset_version }}">
|
<link rel="stylesheet" href="/static/app.css?v={{ page.asset_version }}">
|
||||||
<link rel="alternate" type="application/atom+xml" title="The Daily EPUB" href="/feed.xml">
|
<link rel="alternate" type="application/atom+xml" title="The Daily EPUB" href="/feed.xml">
|
||||||
<link rel="icon" href="/static/favicon.svg">
|
<link rel="icon" href="/static/favicon.svg">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<a class="fixed left-3 top-3 z-50 -translate-y-20 bg-ink px-3 py-2 font-sans text-sm text-paper no-underline focus:translate-y-0" href="#content">Skip to content</a>
|
<a class="fixed left-3 top-3 z-50 -translate-y-20 bg-ink px-3 py-2 font-sans text-sm text-paper no-underline focus:translate-y-0" href="#content">Skip to content</a>
|
||||||
<header class="mx-auto max-w-7xl px-4 pt-4 sm:px-6 sm:pt-6">
|
<header class="site-header mx-auto max-w-7xl px-4 pt-4 sm:px-6 sm:pt-6">
|
||||||
<div class="mb-2 flex min-h-8 flex-nowrap items-center justify-between gap-2 border-b border-rule pb-2 font-sans text-[0.72rem] uppercase tracking-[0.12em] text-muted sm:gap-4">
|
<div class="mb-2 flex min-h-8 flex-nowrap items-center justify-between gap-2 border-b border-rule pb-2 font-sans text-[0.72rem] uppercase tracking-[0.12em] text-muted sm:gap-4">
|
||||||
<div class="min-w-0 truncate whitespace-nowrap">{% block ears %}<span>Morning edition</span>{% endblock %}</div>
|
<div class="min-w-0 truncate whitespace-nowrap">{% block ears %}{% if page.is_dashboard() %}<span>Dashboard</span>{% endif %}{% endblock %}</div>
|
||||||
<div class="flex shrink-0 items-center gap-2 whitespace-nowrap normal-case tracking-normal sm:gap-3">
|
<div class="flex shrink-0 items-center gap-2 whitespace-nowrap normal-case tracking-normal sm:gap-3">
|
||||||
<button class="flex min-h-10 shrink-0 items-center gap-1.5 whitespace-nowrap border-0 bg-transparent px-1.5 py-1 text-xs text-muted hover:text-ink" type="button" data-theme-toggle aria-label="Theme: system">
|
<button class="flex min-h-10 shrink-0 items-center gap-1.5 whitespace-nowrap border-0 bg-transparent px-1.5 py-1 text-xs text-muted hover:text-ink" type="button" data-theme-toggle aria-label="Theme: system">
|
||||||
<svg data-theme-icon="system" aria-hidden="true" viewBox="0 0 24 24" class="h-4 w-4 fill-none stroke-current" stroke-width="1.75"><path d="M4 5.5h16v11H4zM9 20h6M12 16.5V20"/></svg>
|
<svg data-theme-icon="system" aria-hidden="true" viewBox="0 0 24 24" class="h-4 w-4 fill-none stroke-current" stroke-width="1.75"><path d="M4 5.5h16v11H4zM9 20h6M12 16.5V20"/></svg>
|
||||||
@@ -22,7 +23,7 @@
|
|||||||
<svg data-theme-icon="dark" aria-hidden="true" viewBox="0 0 24 24" class="h-4 w-4 fill-none stroke-current" stroke-width="1.75" hidden><path d="M20 15.1A8.5 8.5 0 0 1 8.9 4a8.5 8.5 0 1 0 11.1 11.1Z"/></svg>
|
<svg data-theme-icon="dark" aria-hidden="true" viewBox="0 0 24 24" class="h-4 w-4 fill-none stroke-current" stroke-width="1.75" hidden><path d="M20 15.1A8.5 8.5 0 0 1 8.9 4a8.5 8.5 0 1 0 11.1 11.1Z"/></svg>
|
||||||
<span data-theme-label>System</span>
|
<span data-theme-label>System</span>
|
||||||
</button>
|
</button>
|
||||||
{% match page.viewer %}{% when Some with (viewer) %}<a class="max-w-32 shrink-0 truncate whitespace-nowrap text-ink no-underline hover:text-accent" href="/account">{{ viewer.username }}</a>{% when None %}<a class="shrink-0 whitespace-nowrap text-ink no-underline hover:text-accent" href="/login">Sign in</a>{% endmatch %}
|
{% match page.viewer %}{% when Some with (viewer) %}<a class="flex min-h-10 min-w-10 max-w-32 shrink-0 items-center justify-center truncate whitespace-nowrap px-1.5 text-ink no-underline hover:text-accent" href="/account">{{ viewer.username }}</a>{% when None %}<a class="flex min-h-10 min-w-10 shrink-0 items-center justify-center whitespace-nowrap px-1.5 text-ink no-underline hover:text-accent" href="/login">Sign in</a>{% endmatch %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="border-b-[3px] border-double border-ink py-3 text-center sm:py-4"><a class="font-serif text-3xl font-semibold leading-none tracking-[-0.02em] text-ink no-underline hover:text-ink sm:text-5xl" href="/">The Daily EPUB</a></div>
|
<div class="border-b-[3px] border-double border-ink py-3 text-center sm:py-4"><a class="font-serif text-3xl font-semibold leading-none tracking-[-0.02em] text-ink no-underline hover:text-ink sm:text-5xl" href="/">The Daily EPUB</a></div>
|
||||||
@@ -32,16 +33,16 @@
|
|||||||
<a class="flex min-h-11 items-center border-b-2 border-transparent text-muted no-underline hover:text-ink" href="/feed.xml">Feed</a>
|
<a class="flex min-h-11 items-center border-b-2 border-transparent text-muted no-underline hover:text-ink" href="/feed.xml">Feed</a>
|
||||||
{% match page.viewer %}{% when Some with (_) %}<a class="flex min-h-11 items-center border-b-2 {% if page.active_nav == "account" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %} no-underline hover:text-ink" href="/account"{% if page.active_nav == "account" %} aria-current="page"{% endif %}>Account</a>{% when None %}<a class="flex min-h-11 items-center border-b-2 {% if page.active_nav == "login" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %} no-underline hover:text-ink" href="/login"{% if page.active_nav == "login" %} aria-current="page"{% endif %}>Sign in</a>{% endmatch %}
|
{% match page.viewer %}{% when Some with (_) %}<a class="flex min-h-11 items-center border-b-2 {% if page.active_nav == "account" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %} no-underline hover:text-ink" href="/account"{% if page.active_nav == "account" %} aria-current="page"{% endif %}>Account</a>{% when None %}<a class="flex min-h-11 items-center border-b-2 {% if page.active_nav == "login" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %} no-underline hover:text-ink" href="/login"{% if page.active_nav == "login" %} aria-current="page"{% endif %}>Sign in</a>{% endmatch %}
|
||||||
</nav>
|
</nav>
|
||||||
{% if page.is_admin() %}<nav class="flex flex-wrap items-center justify-center gap-x-4 border-b border-rule py-1 font-sans text-[0.68rem] uppercase tracking-[0.1em]" aria-label="Dashboard">
|
{% if page.is_admin() %}<nav class="flex flex-wrap items-center justify-center gap-x-4 gap-y-1 border-b border-rule font-sans text-[0.68rem] uppercase tracking-[0.1em]" aria-label="Dashboard">
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "dashboard" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard"{% if page.active_nav == "dashboard" %} aria-current="page"{% endif %}>Overview</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "dashboard" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard"{% if page.active_nav == "dashboard" %} aria-current="page"{% endif %}>Overview</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "runs" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/runs"{% if page.active_nav == "runs" %} aria-current="page"{% endif %}>Runs</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "runs" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/runs"{% if page.active_nav == "runs" %} aria-current="page"{% endif %}>Runs</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "articles" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/articles"{% if page.active_nav == "articles" %} aria-current="page"{% endif %}>Articles</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "articles" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/articles"{% if page.active_nav == "articles" %} aria-current="page"{% endif %}>Articles</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "ratings" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/ratings"{% if page.active_nav == "ratings" %} aria-current="page"{% endif %}>Ratings</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "ratings" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/ratings"{% if page.active_nav == "ratings" %} aria-current="page"{% endif %}>Ratings</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "profile" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/profile"{% if page.active_nav == "profile" %} aria-current="page"{% endif %}>Profile</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "profile" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/profile"{% if page.active_nav == "profile" %} aria-current="page"{% endif %}>Profile</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "stats" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/stats"{% if page.active_nav == "stats" %} aria-current="page"{% endif %}>Stats</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "stats" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/stats"{% if page.active_nav == "stats" %} aria-current="page"{% endif %}>Stats</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "jobs" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/jobs"{% if page.active_nav == "jobs" %} aria-current="page"{% endif %}>Jobs</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "jobs" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/jobs"{% if page.active_nav == "jobs" %} aria-current="page"{% endif %}>Jobs</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "settings" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/settings"{% if page.active_nav == "settings" %} aria-current="page"{% endif %}>Settings</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "settings" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/settings"{% if page.active_nav == "settings" %} aria-current="page"{% endif %}>Settings</a>
|
||||||
<a class="py-2 no-underline {% if page.active_nav == "users" %}text-accent{% else %}text-muted{% endif %}" href="/dashboard/users"{% if page.active_nav == "users" %} aria-current="page"{% endif %}>Users</a>
|
<a class="flex min-h-10 min-w-10 items-center justify-center border-b-2 no-underline hover:text-ink {% if page.active_nav == "users" %}border-accent text-ink{% else %}border-transparent text-muted{% endif %}" href="/dashboard/users"{% if page.active_nav == "users" %} aria-current="page"{% endif %}>Users</a>
|
||||||
</nav>{% endif %}
|
</nav>{% endif %}
|
||||||
</header>
|
</header>
|
||||||
{% match page.flash %}{% when Some with (flash) %}<div class="mx-auto max-w-7xl px-4 sm:px-6"><div class="flash {{ flash.kind }}" role="status">{{ flash.text }}</div></div>{% when None %}{% endmatch %}
|
{% match page.flash %}{% when Some with (flash) %}<div class="mx-auto max-w-7xl px-4 sm:px-6"><div class="flash {{ flash.kind }}" role="status">{{ flash.text }}</div></div>{% when None %}{% endmatch %}
|
||||||
|
|||||||
Reference in New Issue
Block a user