Skip to content

Commit

Permalink
feat: add cli support to build assets from executable
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmay committed Dec 22, 2024
1 parent 01ebccc commit f7edafa
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
29 changes: 29 additions & 0 deletions packages/cli/src/cli/build_assets.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
use std::{fs::create_dir_all, path::PathBuf};

use crate::{Result, StructuredOutput};
use clap::Parser;
use dioxus_cli_opt::{process_file_to, AssetManifest};

#[derive(Clone, Debug, Parser)]
pub struct BuildAssets {
/// The source executable to build assets for.
pub(crate) executable: PathBuf,

/// The destination directory for the assets
pub(crate) destination: PathBuf,
}

impl BuildAssets {
pub async fn run(self) -> Result<StructuredOutput> {
let mut manifest = AssetManifest::default();
manifest.add_from_object_path(&self.executable)?;

create_dir_all(&self.destination)?;
for (source_path, asset) in manifest.assets.iter() {
let destination_path = self.destination.join(asset.bundled_path());
process_file_to(asset.options(), source_path, &destination_path)?;
}

Ok(StructuredOutput::Success)
}
}
6 changes: 6 additions & 0 deletions packages/cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pub(crate) mod autoformat;
pub(crate) mod build;
pub(crate) mod build_assets;
pub(crate) mod bundle;
pub(crate) mod check;
pub(crate) mod clean;
Expand Down Expand Up @@ -95,6 +96,10 @@ pub(crate) enum Commands {
#[clap(subcommand)]
#[clap(name = "config")]
Config(config::Config),

/// Build the assets for a specific target.
#[clap(name = "build_assets")]
BuildAssets(build_assets::BuildAssets),
}

impl Display for Commands {
Expand All @@ -112,6 +117,7 @@ impl Display for Commands {
Commands::Bundle(_) => write!(f, "bundle"),
Commands::Run(_) => write!(f, "run"),
Commands::Doctor(_) => write!(f, "doctor"),
Commands::BuildAssets(_) => write!(f, "build_assets"),
}
}
}
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ async fn main() {
Commands::Bundle(opts) => opts.bundle().await,
Commands::Run(opts) => opts.run().await,
Commands::Doctor(opts) => opts.run().await,
Commands::BuildAssets(opts) => opts.run().await,
};

// Provide a structured output for third party tools that can consume the output of the CLI
Expand Down

0 comments on commit f7edafa

Please sign in to comment.