♻️ (bootsier): Reorganiza activos estáticos
Compila SCSS, copia JS y fuentes desde `assets/` con prefijo bootsier.
This commit is contained in:
parent
dbf0894894
commit
d495c05b96
2 changed files with 84 additions and 14 deletions
|
|
@ -1,20 +1,85 @@
|
||||||
use pagetop_build::StaticFilesBundle;
|
//! Script de compilacion de activos estaticos.
|
||||||
|
//!
|
||||||
|
//! Genera el directorio `static/` a partir de `assets/` y embebe su contenido en el binario:
|
||||||
|
//!
|
||||||
|
//! - `static/css/` - CSS compilado a partir de los archivos SCSS de `assets/`.
|
||||||
|
//! - `static/js/` - JS copiado desde `assets/`, renombrando AdminLTE a `bootsier.min.js`.
|
||||||
|
//! - `static/fonts/` - Fuentes copiadas desde `assets/`.
|
||||||
|
//!
|
||||||
|
//! Los archivos `.map` se copian a `static/js/` para uso en desarrollo pero no se incluyen en el
|
||||||
|
//! binario embebido.
|
||||||
|
|
||||||
|
use pagetop_build::{StaticFilesBundle, compile_scss, copy_file, copy_file_replacing, minify_js};
|
||||||
|
|
||||||
use std::env;
|
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
fn main() -> std::io::Result<()> {
|
fn main() -> std::io::Result<()> {
|
||||||
StaticFilesBundle::from_scss("./static/scss/bootsier.scss", "bootstrap.min.css")
|
// Regenera `static/` desde cero sólo si hay cambios en `assets/`.
|
||||||
.with_name("bootsier_bs")
|
println!("cargo:rerun-if-changed=assets");
|
||||||
|
let _ = std::fs::remove_dir_all("static");
|
||||||
|
|
||||||
|
// CSS: Bootstrap 5.3.8 + AdminLTE 4.0.0 + Bootstrap Icons 1.13.1.
|
||||||
|
compile_scss("assets/bootsier.scss", "static/css/bootsier.min.css")?;
|
||||||
|
|
||||||
|
// JS: Bootstrap bundle.
|
||||||
|
copy_file(
|
||||||
|
"assets/bootstrap-5.3.8/js/bootstrap.bundle.min.js",
|
||||||
|
"static/js/bootsier.bundle.min.js",
|
||||||
|
)?;
|
||||||
|
copy_file(
|
||||||
|
"assets/bootstrap-5.3.8/js/bootstrap.bundle.min.js.map",
|
||||||
|
"static/js/bootsier.bundle.min.js.map",
|
||||||
|
)?;
|
||||||
|
// JS: AdminLTE renombrado a bootsier.extended.min.js.
|
||||||
|
copy_file_replacing(
|
||||||
|
"assets/adminlte-4.0.0/js/adminlte.min.js",
|
||||||
|
"static/js/bootsier.extended.min.js",
|
||||||
|
&[("adminlte.min.js.map", "bootsier.extended.min.js.map")],
|
||||||
|
)?;
|
||||||
|
copy_file(
|
||||||
|
"assets/adminlte-4.0.0/js/adminlte.min.js.map",
|
||||||
|
"static/js/bootsier.extended.min.js.map",
|
||||||
|
)?;
|
||||||
|
// JS: shell de Bootsier.
|
||||||
|
minify_js(
|
||||||
|
"assets/bootsier.shell.js",
|
||||||
|
"static/js/bootsier.shell.min.js",
|
||||||
|
)?;
|
||||||
|
|
||||||
|
// Fuentes: Bootstrap Icons.
|
||||||
|
copy_file(
|
||||||
|
"assets/bootstrap-icons-1.13.1/fonts/bootstrap-icons.woff2",
|
||||||
|
"static/fonts/bootsier.icons.woff2",
|
||||||
|
)?;
|
||||||
|
copy_file(
|
||||||
|
"assets/bootstrap-icons-1.13.1/fonts/bootstrap-icons.woff",
|
||||||
|
"static/fonts/bootsier.icons.woff",
|
||||||
|
)?;
|
||||||
|
// Fuentes: Source Sans 3 (SIL OFL 1.1).
|
||||||
|
copy_file(
|
||||||
|
"assets/adminlte-4.0.0/fonts/SourceSans3VF-Upright.otf.woff2",
|
||||||
|
"static/fonts/bootsier.font.woff2",
|
||||||
|
)?;
|
||||||
|
copy_file(
|
||||||
|
"assets/adminlte-4.0.0/fonts/SourceSans3VF-Italic.otf.woff2",
|
||||||
|
"static/fonts/bootsier.font.italic.woff2",
|
||||||
|
)?;
|
||||||
|
|
||||||
|
// Preparación de los paquetes para embeber en el binario.
|
||||||
|
StaticFilesBundle::from_dir("./static/css", None)
|
||||||
|
.with_name("bootsier_css")
|
||||||
.build()?;
|
.build()?;
|
||||||
StaticFilesBundle::from_dir("./static/js", Some(bootstrap_js_files))
|
|
||||||
|
StaticFilesBundle::from_dir("./static/js", Some(only_js_files))
|
||||||
.with_name("bootsier_js")
|
.with_name("bootsier_js")
|
||||||
|
.build()?;
|
||||||
|
|
||||||
|
StaticFilesBundle::from_dir("./static/fonts", None)
|
||||||
|
.with_name("bootsier_fonts")
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bootstrap_js_files(path: &Path) -> bool {
|
// Los archivos .map no se embeben en el binario; solo se sirven desde disco en desarrollo.
|
||||||
let bootstrap_js = "bootstrap.bundle.min.js";
|
fn only_js_files(path: &Path) -> bool {
|
||||||
// No filtra durante el desarrollo, solo en la compilación "release".
|
path.extension().map_or(false, |ext| ext == "js")
|
||||||
env::var("PROFILE").unwrap_or_else(|_| "release".to_string()) != "release"
|
|
||||||
|| path.file_name().is_some_and(|f| f == bootstrap_js)
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -157,14 +157,19 @@ impl Theme for Bootsier {
|
||||||
|
|
||||||
fn before_render_page_body(&self, page: &mut Page) {
|
fn before_render_page_body(&self, page: &mut Page) {
|
||||||
page.alter_assets(AssetsOp::AddStyleSheet(
|
page.alter_assets(AssetsOp::AddStyleSheet(
|
||||||
StyleSheet::from("/bootsier/bs/bootstrap.min.css")
|
StyleSheet::from("/bootsier/css/bootsier.min.css")
|
||||||
|
.with_version(ADMINLTE_VERSION)
|
||||||
|
.with_weight(-90),
|
||||||
|
))
|
||||||
|
.alter_assets(AssetsOp::AddJavaScript(
|
||||||
|
JavaScript::defer("/bootsier/js/bootsier.bundle.min.js")
|
||||||
.with_version(BOOTSTRAP_VERSION)
|
.with_version(BOOTSTRAP_VERSION)
|
||||||
.with_weight(-90),
|
.with_weight(-90),
|
||||||
))
|
))
|
||||||
.alter_assets(AssetsOp::AddJavaScript(
|
.alter_assets(AssetsOp::AddJavaScript(
|
||||||
JavaScript::defer("/bootsier/js/bootstrap.bundle.min.js")
|
JavaScript::defer("/bootsier/js/bootsier.extended.min.js")
|
||||||
.with_version(BOOTSTRAP_VERSION)
|
.with_version(ADMINLTE_VERSION)
|
||||||
.with_weight(-90),
|
.with_weight(-89),
|
||||||
))
|
))
|
||||||
.alter_child_in(
|
.alter_child_in(
|
||||||
&DefaultRegion::Footer,
|
&DefaultRegion::Footer,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue