makeover_build/lib.rs
1//! Build-script support for the make-family design system.
2//!
3//! <!-- wiki: makeover-geometry -->
4//!
5//! Every consumer materialises the same generated files from a `build.rs`, and
6//! until now every consumer wrote that code itself. GoingsOn and Balanced
7//! Breakfast grew byte-identical copies of the theme materialiser during the
8//! makeover-geometry adoption, and the layout stylesheet would have been the
9//! third and fourth copies. This is that code, once.
10//!
11//! # The geometry emitter, and why it took a decision to land
12//!
13//! [`geometry_css`] was deliberately absent at first. GoingsOn and Balanced
14//! Breakfast did not agree on it: GO scoped the touch preset to a
15//! `ui-mode-mobile` class set by a bootstrap script, BB hung it off
16//! `@media (hover: none)`, and audiofiles had no switch at all. Extracting it
17//! then would have meant picking one of those policies by accident, inside a
18//! shared crate, without anyone deciding.
19//!
20//! Density selection was settled instead -- touch is a capability, so it hangs
21//! off `(hover: none), (pointer: coarse)` and never off a user-agent string or
22//! a breakpoint -- and the emitter followed. Recording an agreement rather than
23//! manufacturing one is the whole point, and it is why the order was that way
24//! round.
25//!
26//! # Why these files are generated rather than checked in
27//!
28//! Tauri's resource globs are read by its CLI against the crate directory, so
29//! they cannot point into a registry checkout or `OUT_DIR`. Materialising into
30//! the crate keeps the source crate authoritative without vendoring a second
31//! copy that drifts. Every path written here is expected to be gitignored.
32//!
33//! # The other half: what is checked rather than written
34//!
35//! A consumer's frontend is not all generated. The stylesheet and the scripts
36//! are hand-written and state some of the same facts the generated files ask
37//! the crates for, so they can drift where a generated file cannot. [`drift`]
38//! holds the checks that keep them honest, and they are assertions rather than
39//! substitutions on purpose: a file that has to be generated to be correct
40//! stops being readable on its own.
41
42#![forbid(unsafe_code)]
43
44pub mod drift;
45
46use std::path::Path;
47
48pub use drift::{
49 check_breakpoints, check_breakpoints_files, check_touch_density, check_vocabulary,
50 check_vocabulary_files, check_vocabulary_use,
51};
52
53/// Re-exported so a consumer's `build.rs` needs one dependency rather than
54/// three. Nothing here wraps it; the emitter's options are the emitter's.
55pub use makeover_webview::Emit;
56
57/// The filenames [`typography_css`]'s `@font-face` rules fetch.
58///
59/// Re-exported for the same reason as [`Emit`], and load-bearing for a further
60/// one: the consumer's own build script writes those two files, so the emitter
61/// and the writer have to agree on the name. Through this they agree on a
62/// constant rather than on a string typed in two repositories.
63pub use makeover::{WEBFONT_MONO_FILE, WEBFONT_SANS_FILE};
64
65/// Layer 0 of the font model, re-exported for the same one-dependency reason.
66///
67/// A build script composing an override needs all four names and has no other
68/// reason to depend on `makeover` directly.
69pub use makeover::{FontFace, FontOverride, FontSlot, Typography};
70
71/// Write the themes `makeover` ships into `dir`, as `<id>.toml`.
72///
73/// Clears stale `.toml` files first, so a theme removed or renamed upstream
74/// does not linger in the bundle from an earlier build. That detail is the
75/// reason this is worth sharing rather than retyping: it is easy to omit and
76/// its absence shows up as a theme that will not go away.
77///
78/// # Panics
79///
80/// If the directory cannot be created, read, or written. A build script has
81/// nowhere useful to return an error to, and a half-materialised theme set is
82/// worse than a failed build.
83pub fn themes(dir: impl AsRef<Path>) {
84 let dir = dir.as_ref();
85 std::fs::create_dir_all(dir).expect("create themes dir");
86
87 for entry in std::fs::read_dir(dir).expect("read themes dir").flatten() {
88 let path = entry.path();
89 if path.extension().is_some_and(|e| e == "toml") {
90 std::fs::remove_file(&path).expect("remove stale theme");
91 }
92 }
93
94 for (id, source) in makeover::embedded_themes() {
95 std::fs::write(dir.join(format!("{id}.toml")), source).expect("write theme");
96 }
97}
98
99/// Write `makeover-webview`'s component stylesheet to `path`.
100///
101/// Baked at build time rather than applied from JS the way the intent layer
102/// is, because composition never changes at runtime: no theme may reach it, so
103/// there is nothing to re-apply and no second pass over `:root` to pay for on
104/// load.
105///
106/// # Panics
107///
108/// If the file cannot be written.
109pub fn layout_css(path: impl AsRef<Path>, opts: &makeover_webview::Emit) {
110 std::fs::write(path, makeover_webview::stylesheet(opts)).expect("write layout css");
111}
112
113/// Write `makeover-geometry`'s spacing layer, with its canonical density
114/// selection, to `path`.
115///
116/// The policy is the crate's, not this one's: touch hangs off
117/// `(hover: none), (pointer: coarse)` because density is a capability rather
118/// than a device or a width, and `explicit_touch` names a selector an app sets
119/// when the user has chosen. See [`makeover_geometry::density_css`]. All this
120/// adds is the generated-file banner and the write.
121///
122/// Both spacing axes land here, in the order the crate defines them.
123/// [`makeover_geometry::size_class_css`] follows the density block because it
124/// is the narrower claim: density says what is pointing at the screen, size
125/// class says how much screen there is, and on a compact window the two shells
126/// tighten regardless of which density selected them. Shipped in
127/// makeover-geometry 0.7.0 and emitted by nobody until 2026-08-10, which meant
128/// the axis existed in the crate and reached no stylesheet.
129///
130/// # Panics
131///
132/// If the file cannot be written.
133pub fn geometry_css(path: impl AsRef<Path>, explicit_touch: Option<&str>) {
134 let mut css = String::from(
135 "/* Generated by makeover-build from makeover-geometry. Do not edit.\n \
136 Spacing is named by relationship, not by size. Touch density is a\n \
137 capability question: a narrow desktop window still has a pointer, a\n \
138 full-width tablet still has a finger. Window width is the separate\n \
139 question below it: on a compact window the two shells tighten. */\n",
140 );
141 css.push_str(&makeover_geometry::density_css(explicit_touch));
142 css.push('\n');
143 css.push_str(&makeover_geometry::size_class_css());
144 std::fs::write(path, css).expect("write geometry css");
145}
146
147/// Write the house typography layer to `path`: the two `@font-face` rules and
148/// the two tokens they back.
149///
150/// `font_url` is the directory the consumer serves its fonts from, without a
151/// trailing slash — `/static/fonts` on the MNW server, `fonts` for a Tauri
152/// frontend loading relative to its index.
153///
154/// Generated rather than hand-written for the same reason the spacing layer is:
155/// the facts are the crates' and stating them per app is how three apps came to
156/// hold three different answers to `--font-mono`. It is a separate file from
157/// the layout stylesheet because `@font-face` rules take no part in the
158/// cascade and a consumer may need to load them ahead of a layer order it
159/// declares elsewhere.
160///
161/// # The consumer still has to put the faces there
162///
163/// This writes the CSS that fetches `QuasiMono.woff2` and `QuasiBody.woff2`; it
164/// does not write the fonts. It cannot: they are cut by `quasi-type`, which is
165/// `publish = false`, and this crate is on crates.io. A consumer takes
166/// quasi-type as a git dependency in its own `build.rs` and calls
167/// `quasi_type::cut`, the way `shop-font` does, writing each slot's woff2 under
168/// [`makeover::WEBFONT_MONO_FILE`] and [`makeover::WEBFONT_SANS_FILE`].
169///
170/// # Panics
171///
172/// If the file cannot be written.
173pub fn typography_css(path: impl AsRef<Path>, font_url: &str) {
174 typography_css_from(path, &makeover::Typography::house(font_url));
175}
176
177/// [`typography_css`], for a product that overrides a slot.
178///
179/// Layer 0 of the font model. A product with a brand face declares it here,
180/// once, and the generated sheet carries both the `@font-face` and the token —
181/// which is what replaces the hand-maintained `@font-face` block plus a
182/// `--font-heading` nothing else in the tree knew about:
183///
184/// ```no_run
185/// use makeover_build::{FontFace, FontOverride, FontSlot, Typography};
186///
187/// makeover_build::typography_css_from(
188/// "static/typography.css",
189/// &Typography::house("/static/fonts").with_override(
190/// FontOverride::new(FontSlot::Display, "\"Young Serif\", serif")
191/// .with_face(FontFace::new("Young Serif", ["ysrf.woff2", "ysrf.ttf"])),
192/// ),
193/// );
194/// ```
195///
196/// The product still ships the face itself, exactly as it does for the house
197/// two: this writes the CSS that fetches it and cannot produce a font.
198///
199/// # Panics
200///
201/// If the file cannot be written.
202pub fn typography_css_from(path: impl AsRef<Path>, typography: &makeover::Typography) {
203 let mut css = String::from(
204 "/* Generated by makeover-build from makeover. Do not edit.\n \
205 Two needs, two names, then a system generic. The faces are cut by\n \
206 quasi-type from Atkinson Hyperlegible plus the house glyph set, and\n \
207 both are variable over wght 200-800 in one file, which is why the\n \
208 @font-face rules name the range. The mono face opens at ExtraLight.\n \
209 A third token here is this product's own brand face, declared as an\n \
210 override in its build script. */\n\n",
211 );
212 css.push_str(&typography.css());
213 std::fs::write(path, css).expect("write typography css");
214}
215
216/// All the generated files at the layout every Tauri consumer already uses:
217/// `themes/` beside the manifest, and
218/// `frontend/css/{geometry,layout,typography}.css` under it.
219///
220/// Pass `env!("CARGO_MANIFEST_DIR")`. Consumers that want different paths call
221/// [`themes`], [`layout_css`] and [`typography_css`] directly.
222///
223/// The font URL is `fonts`, relative to the frontend's index — the one layout
224/// a Tauri app has, since its frontend is served from its own directory.
225///
226/// # Panics
227///
228/// If any file cannot be written.
229pub fn tauri_frontend(
230 manifest_dir: impl AsRef<Path>,
231 opts: &makeover_webview::Emit,
232 explicit_touch: Option<&str>,
233) {
234 tauri_frontend_with(
235 manifest_dir,
236 opts,
237 explicit_touch,
238 &makeover::Typography::house("../fonts"),
239 );
240}
241
242/// [`tauri_frontend`], for a product that overrides a font slot.
243///
244/// Separate rather than a fourth parameter on `tauri_frontend` so the three
245/// consumers already calling it do not have to move: goingson is held at an
246/// older `makeover` by a theming decision unrelated to fonts, and a signature
247/// change here would make a font feature it cannot take into a build break it
248/// cannot avoid.
249///
250/// The base URL is the caller's: pass `Typography::house("../fonts")` unless
251/// the app serves fonts from somewhere other than the one layout a Tauri
252/// frontend has.
253///
254/// # Panics
255///
256/// If any file cannot be written.
257pub fn tauri_frontend_with(
258 manifest_dir: impl AsRef<Path>,
259 opts: &makeover_webview::Emit,
260 explicit_touch: Option<&str>,
261 typography: &makeover::Typography,
262) {
263 let root = manifest_dir.as_ref();
264 let css = root.join("frontend").join("css");
265 themes(root.join("themes"));
266 geometry_css(css.join("geometry.css"), explicit_touch);
267 layout_css(css.join("layout.css"), opts);
268 typography_css_from(css.join("typography.css"), typography);
269}
270
271#[cfg(test)]
272mod tests {
273 use super::*;
274
275 /// A scratch directory keyed by process id, so a parallel test run does
276 /// not collide. No timestamp: the pid is enough and is deterministic
277 /// within a run.
278 fn scratch(name: &str) -> std::path::PathBuf {
279 let dir =
280 std::env::temp_dir().join(format!("makeover-build-{}-{name}", std::process::id()));
281 let _ = std::fs::remove_dir_all(&dir);
282 std::fs::create_dir_all(&dir).expect("create scratch");
283 dir
284 }
285
286 #[test]
287 fn themes_are_written_one_file_per_id() {
288 let dir = scratch("themes");
289 themes(&dir);
290 let count = std::fs::read_dir(&dir).unwrap().count();
291 assert_eq!(count, makeover::embedded_themes().count());
292 assert!(count > 0, "makeover ships no themes?");
293 }
294
295 #[test]
296 fn a_theme_removed_upstream_does_not_linger() {
297 // The detail that makes this worth sharing rather than retyping.
298 let dir = scratch("stale");
299 std::fs::write(dir.join("gone-upstream.toml"), "# stale").unwrap();
300 themes(&dir);
301 assert!(!dir.join("gone-upstream.toml").exists());
302 }
303
304 #[test]
305 fn a_non_theme_file_is_left_alone() {
306 // Only .toml is cleared, so a README or a .gitignore in the bundle
307 // directory survives a rebuild.
308 let dir = scratch("keep");
309 std::fs::write(dir.join("README.md"), "not a theme").unwrap();
310 themes(&dir);
311 assert!(dir.join("README.md").exists());
312 }
313
314 #[test]
315 fn the_stylesheet_lands_and_names_no_colour() {
316 let dir = scratch("css");
317 let path = dir.join("layout.css");
318 layout_css(&path, &makeover_webview::Emit::default());
319 let css = std::fs::read_to_string(&path).unwrap();
320 assert!(css.contains("--bevel-raised"));
321 assert!(
322 !css.contains('#'),
323 "a colour literal reached a build output"
324 );
325 }
326
327 #[test]
328 fn the_typography_file_declares_the_faces_before_the_tokens_that_name_them() {
329 // The vocabulary itself is tested in makeover. What is this crate's
330 // job is that both halves reach one file, in an order that works: a
331 // `@font-face` may follow its use in the cascade, but reading the file
332 // is how anyone finds out a face is fetched at all.
333 let dir = scratch("typography");
334 let path = dir.join("typography.css");
335 typography_css(&path, "/static/fonts");
336 let css = std::fs::read_to_string(&path).unwrap();
337
338 assert!(css.starts_with("/* Generated by makeover-build"));
339 assert!(
340 css.find("@font-face").unwrap() < css.find(":root").unwrap(),
341 "the tokens come first, so the file reads as a stack with no ground"
342 );
343 assert!(css.contains("url(\"/static/fonts/QuasiMono.woff2\")"));
344 assert!(css.contains("--font-sans: \"Quasi Body\", sans-serif;"));
345
346 // Not a cascade layer. `@font-face` takes no part in the cascade and a
347 // consumer may need these rules ahead of a layer order it declares
348 // elsewhere, so wrapping this file in one would be a silent trap.
349 assert!(!css.contains("@layer"));
350 }
351
352 #[test]
353 fn an_overridden_slot_reaches_the_same_file_as_the_house_two() {
354 // Layer 0's whole point: the brand face stops being a hand-maintained
355 // `@font-face` in the app's own stylesheet and becomes a line in the
356 // generated one, beside the slots it sits next to.
357 let dir = scratch("typography-override");
358 let path = dir.join("typography.css");
359 typography_css_from(
360 &path,
361 &Typography::house("/static/fonts").with_override(
362 FontOverride::new(FontSlot::Display, "\"Young Serif\", serif")
363 .with_face(FontFace::new("Young Serif", ["ysrf.woff2", "ysrf.ttf"])),
364 ),
365 );
366 let css = std::fs::read_to_string(&path).unwrap();
367
368 // `@font-face {`, not `@font-face`: the header comment names the
369 // at-rule too, and counting that would make this pass for the wrong
370 // reason the day the comment is reworded.
371 assert_eq!(css.matches("@font-face {").count(), 3);
372 assert!(css.contains("--font-display: \"Young Serif\", serif;"));
373 assert!(css.contains("--font-mono: \"Quasi Mono\", monospace;"));
374 assert!(css.contains("url(\"/static/fonts/ysrf.ttf\") format(\"truetype\")"));
375 assert!(!css.contains("@layer"));
376 }
377
378 #[test]
379 fn the_default_tauri_layout_is_the_house_layer_and_nothing_else() {
380 // `tauri_frontend` delegating through `tauri_frontend_with` must not
381 // change a byte for the three consumers already calling it.
382 let dir = scratch("tauri-default");
383 let plain = dir.join("plain.css");
384 let house = dir.join("house.css");
385 typography_css(&plain, "../fonts");
386 typography_css_from(&house, &Typography::house("../fonts"));
387 assert_eq!(
388 std::fs::read_to_string(&plain).unwrap(),
389 std::fs::read_to_string(&house).unwrap()
390 );
391 }
392
393 #[test]
394 fn the_geometry_file_carries_the_crates_policy_and_a_banner() {
395 // The policy itself is tested in makeover-geometry. What is this
396 // crate's job is that the banner is there and the policy reached the
397 // file at all.
398 let dir = scratch("geometry");
399 let path = dir.join("geometry.css");
400 geometry_css(&path, Some(".ui-mode-mobile"));
401 let css = std::fs::read_to_string(&path).unwrap();
402 assert!(css.starts_with("/* Generated by makeover-build"));
403 assert!(css.contains("@media (hover: none), (pointer: coarse)"));
404 assert!(css.contains(".ui-mode-mobile"));
405 // The width axis rides along, and only the shells are in it: a gap
406 // between two controls in a width query is the bug size_class_css
407 // exists to keep out.
408 assert!(css.contains("--gap-pane"), "no compact shell override");
409 let compact = css
410 .split("@media (max-width")
411 .nth(1)
412 .expect("compact block");
413 assert!(
414 !compact.contains("--gap-peer"),
415 "a control gap crept into a width query"
416 );
417 }
418
419 #[test]
420 fn the_tauri_layout_puts_all_three_where_the_apps_look() {
421 let root = scratch("tauri");
422 std::fs::create_dir_all(root.join("frontend").join("css")).unwrap();
423 tauri_frontend(&root, &makeover_webview::Emit::default(), None);
424 assert!(
425 root.join("frontend")
426 .join("css")
427 .join("geometry.css")
428 .exists()
429 );
430 assert!(
431 root.join("frontend")
432 .join("css")
433 .join("layout.css")
434 .exists()
435 );
436 assert!(root.join("themes").is_dir());
437 }
438}