dioxus-cli 0.5.7

CLI tool for developing, testing, and publishing Dioxus apps
Documentation
#![cfg(feature = "plugin")]

use super::*;

/// Manage plugins for dioxus cli
#[derive(Clone, Debug, Deserialize, Subcommand)]
#[clap(name = "plugin")]
pub enum Plugin {
    /// Return all dioxus-cli support tools.
    List {},
    /// Get default app install path.
    AppPath {},
    /// Install a new tool.
    Add { name: String },
}

impl Plugin {
    pub async fn plugin(self) -> Result<()> {
        match self {
            Plugin::List {} => {
                for item in crate::plugin::PluginManager::plugin_list() {
                    println!("- {item}");
                }
            }
            Plugin::AppPath {} => {
                let plugin_dir = crate::plugin::PluginManager::init_plugin_dir();
                if let Some(v) = plugin_dir.to_str() {
                    println!("{}", v);
                } else {
                    tracing::error!("Plugin path get failed.");
                }
            }
            Plugin::Add { name: _ } => {
                tracing::info!("You can use `dx plugin app-path` to get Installation position");
            }
        }
        Ok(())
    }
}