1
Fork 0

Compare commits

...

4 Commits

Author SHA1 Message Date
Bauke c8c9d7c507
Use chars for constant patterns. 2023-01-09 16:22:51 +01:00
Bauke 78187bbe07
Use the correct name for minify-html. 2023-01-09 16:21:04 +01:00
Bauke 6e1a953d63
Fix linting issues. 2023-01-09 16:09:00 +01:00
Bauke 774e1411bb
Add HTML minification. 2023-01-09 15:43:05 +01:00
13 changed files with 67 additions and 28 deletions

View File

@ -17,6 +17,7 @@ path = "source/main.rs"
askama = "0.11.1" askama = "0.11.1"
color-eyre = "0.6.2" color-eyre = "0.6.2"
comrak = "0.15.0" comrak = "0.15.0"
minify-html = "0.10.7"
rsass = "0.23.4" rsass = "0.23.4"
toml-frontmatter = "0.1.0" toml-frontmatter = "0.1.0"

View File

@ -1,4 +1,6 @@
window.addEventListener('DOMContentLoaded', async () => { /* global document window */
window.addEventListener("DOMContentLoaded", async () => {
const loop = async () => { const loop = async () => {
const listen = await getCurrentListen(); const listen = await getCurrentListen();
if (listen === undefined) { if (listen === undefined) {
@ -26,11 +28,14 @@ async function getCoverArt(listen) {
return; return;
} }
const result = await window.fetch(`https://coverartarchive.org/release/${releaseMbid}`, { const result = await window.fetch(
headers: { `https://coverartarchive.org/release/${releaseMbid}`,
Accept: 'application/json', {
headers: {
Accept: "application/json",
},
}, },
}); );
if (!result.ok) { if (!result.ok) {
return; return;
} }
@ -41,11 +46,15 @@ async function getCoverArt(listen) {
} }
const thumbnails = data.images[0].thumbnails; const thumbnails = data.images[0].thumbnails;
return thumbnails.small ?? thumbnails['250'] ?? thumbnails['500'] ?? undefined; return (
thumbnails.small ?? thumbnails["250"] ?? thumbnails["500"] ?? undefined
);
} }
async function getCurrentListen() { async function getCurrentListen() {
const result = await window.fetch('https://api.listenbrainz.org/1/user/BaukeXYZ/playing-now'); const result = await window.fetch(
"https://api.listenbrainz.org/1/user/BaukeXYZ/playing-now",
);
if (!result.ok) { if (!result.ok) {
console.warn(result.status); console.warn(result.status);
return; return;
@ -64,16 +73,16 @@ function insertHtml(listen, image) {
return; return;
} }
const existing = document.querySelector('.listenbrainz') ?? undefined; const existing = document.querySelector(".listenbrainz") ?? undefined;
if (existing !== undefined) { if (existing !== undefined) {
existing.remove(); existing.remove();
} }
const text = `${listen.track_metadata.artist_name} - ${listen.track_metadata.track_name}`; const text = `${listen.track_metadata.artist_name} - ${listen.track_metadata.track_name}`;
const alt = image === undefined ? 'ListenBrainz Logo' : `${text} Cover Art`; const alt = image === undefined ? "ListenBrainz Logo" : `${text} Cover Art`;
image = image ?? 'https://listenbrainz.org/static/img/logo_big.svg'; image = image ?? "https://listenbrainz.org/static/img/logo_big.svg";
image = image.startsWith('http://') ? 'https' + image.slice(4) : image; image = image.startsWith("http://") ? "https" + image.slice(4) : image;
const listenHtml = ` const listenHtml = `
<p class="listenbrainz"> <p class="listenbrainz">
@ -84,5 +93,7 @@ function insertHtml(listen, image) {
</a> </a>
</p>`; </p>`;
document.querySelector('.page-header').insertAdjacentHTML('beforeend', listenHtml); document
.querySelector(".page-header")
.insertAdjacentHTML("beforeend", listenHtml);
} }

View File

@ -6,6 +6,7 @@ use std::{
use color_eyre::{install, Result}; use color_eyre::{install, Result};
mod copy; mod copy;
mod minify;
mod scss; mod scss;
mod templates; mod templates;
mod video; mod video;
@ -29,7 +30,7 @@ fn main() -> Result<()> {
fn build_userstyles(build_dir: &Path) -> Result<()> { fn build_userstyles(build_dir: &Path) -> Result<()> {
for target in userstyles::ALL_USERSTYLES { for target in userstyles::ALL_USERSTYLES {
let style = userstyles::Userstyle::load(target)?; let style = userstyles::Userstyle::load(target)?;
let style_name = style.metadata.name.to_lowercase().replace(" ", "-"); let style_name = style.metadata.name.to_lowercase().replace(' ', "-");
let style_dir = build_dir.join("userstyles"); let style_dir = build_dir.join("userstyles");
fs::create_dir_all(&style_dir)?; fs::create_dir_all(&style_dir)?;

22
source/minify.rs Normal file
View File

@ -0,0 +1,22 @@
use color_eyre::Result;
/**
Minify HTML using [`minify-html`].
*/
pub fn html(data: String) -> Result<String> {
let minify_config = minify_html::Cfg {
do_not_minify_doctype: true,
ensure_spec_compliant_unquoted_attribute_values: true,
keep_closing_tags: true,
keep_comments: false,
keep_html_and_head_opening_tags: true,
keep_spaces_between_attributes: true,
minify_css: false,
minify_js: false,
remove_bangs: false,
remove_processing_instructions: false,
};
let minified_data = minify_html::minify(&data.into_bytes(), &minify_config);
String::from_utf8(minified_data).map_err(Into::into)
}

View File

@ -1,4 +1,4 @@
@use 'mixins'; @use "mixins";
.listenbrainz { .listenbrainz {
align-items: center; align-items: center;

View File

@ -1,4 +1,4 @@
@use 'mixins'; @use "mixins";
.page-footer { .page-footer {
@include mixins.responsive-container; @include mixins.responsive-container;

View File

@ -1,4 +1,4 @@
@use 'mixins'; @use "mixins";
.page-header { .page-header {
--anchor-color: #000; --anchor-color: #000;

View File

@ -1,4 +1,4 @@
@use 'mixins'; @use "mixins";
.page-main { .page-main {
a { a {
@ -14,7 +14,7 @@
} }
&.driftingnebula { &.driftingnebula {
background: url('/assets/driftingnebula 2022-03-09.jpeg'); background: url("/assets/driftingnebula 2022-03-09.jpeg");
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -24,7 +24,7 @@
} }
&.holllo { &.holllo {
background: url('/assets/holllo-mark-square-pattern.png'); background: url("/assets/holllo-mark-square-pattern.png");
background-color: #1f1731; background-color: #1f1731;
background-repeat: repeat; background-repeat: repeat;
background-size: 48px; background-size: 48px;

View File

@ -1,4 +1,4 @@
@use 'reset'; @use "reset";
html { html {
font-size: 62.5%; font-size: 62.5%;
@ -43,7 +43,7 @@ button {
margin-top: 2rem; margin-top: 2rem;
} }
@use 'components/page-footer'; @use "components/page-footer";
@use 'components/page-header'; @use "components/page-header";
@use 'components/page-main'; @use "components/page-main";
@use 'components/listenbrainz'; @use "components/listenbrainz";

View File

@ -1 +1 @@
@use '../../node_modules/modern-normalize/modern-normalize.css'; @use "../../node_modules/modern-normalize/modern-normalize.css";

View File

@ -21,7 +21,7 @@ impl Index {
page_title: "Bauke".to_string(), page_title: "Bauke".to_string(),
}; };
write(destination, template.render()?)?; write(destination, crate::minify::html(template.render()?)?)?;
Ok(()) Ok(())
} }

View File

@ -25,7 +25,7 @@ Turn a timestamp with format `mm:ss` into its total seconds.
- `01:30` -> 90 seconds - `01:30` -> 90 seconds
*/ */
pub fn timestamp_to_seconds(timestamp: &str) -> askama::Result<i32> { pub fn timestamp_to_seconds(timestamp: &str) -> askama::Result<i32> {
let mut split = timestamp.split(":"); let mut split = timestamp.split(':');
let minutes = split.next().map(str::parse::<i32>).unwrap().unwrap(); let minutes = split.next().map(str::parse::<i32>).unwrap().unwrap();
let seconds = split.next().map(str::parse::<i32>).unwrap().unwrap(); let seconds = split.next().map(str::parse::<i32>).unwrap().unwrap();
Ok(minutes * 60 + seconds) Ok(minutes * 60 + seconds)

View File

@ -68,7 +68,11 @@ pub fn write_all(public_dir: &Path) -> Result<()> {
speedrun: video_data.speedrun, speedrun: video_data.speedrun,
video_id: video_data.id, video_id: video_data.id,
}; };
fs::write(video_dir.join("index.html"), template.render()?)?;
fs::write(
video_dir.join("index.html"),
crate::minify::html(template.render()?)?,
)?;
} }
Ok(()) Ok(())