xtask/codegen/
js_lists.rs

1use std::fs;
2
3use anyhow::Result;
4
5const HEADER: &str = r##"
6// DISCLAIMER: All code below this line is generated with `cargo xtask codegen js-list`
7// in the syntastica workspace. Do not edit this code manually!
8/**
9 * A list of all builtin themes.
10 *
11 * @see The {@link BuiltinTheme} type.
12 */
13export const BUILTIN_THEMES = [
14"##;
15
16pub fn write() -> Result<()> {
17    let ts_path = crate::WORKSPACE_DIR.join("syntastica-js/src/index.ts");
18    let mut ts = fs::read_to_string(&ts_path)?;
19
20    if let Some((preserve, _)) = ts.split_once(HEADER) {
21        ts.truncate(preserve.len());
22    }
23    ts += HEADER;
24
25    for theme in super::theme_list::find_all_themes()? {
26        ts += "    '";
27        ts += &theme;
28        ts += "',\n";
29    }
30    ts += "] as const\n";
31
32    fs::write(&ts_path, ts)?;
33
34    Ok(())
35}