Skip to content

Commit

Permalink
feat: commit code
Browse files Browse the repository at this point in the history
  • Loading branch information
mrxiaozhuox committed Aug 26, 2022
1 parent 062d0ea commit 6cce4b9
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/cli/mod.rs
Expand Up @@ -4,7 +4,7 @@ pub mod clean;
pub mod config;
pub mod create;
pub mod serve;
pub mod tool;
pub mod plugin;
pub mod translate;

use crate::{
Expand Down Expand Up @@ -52,9 +52,9 @@ pub enum Commands {
/// Dioxus config file controls.
#[clap(subcommand)]
Config(config::Config),
/// Install & Manage tools for Dioxus-cli.
#[clap(subcommand)]
Tool(tool::Tool),
/// Manage plugins for dioxus cli
Plugin(plugin::Plugin),
}

impl Commands {
Expand All @@ -66,7 +66,7 @@ impl Commands {
Commands::Create(_) => "create",
Commands::Clean(_) => "clean",
Commands::Config(_) => "config",
Commands::Tool(_) => "tool",
Commands::Plugin(_) => "plugin",
}.to_string()
}
}
67 changes: 67 additions & 0 deletions src/cli/plugin/mod.rs
@@ -0,0 +1,67 @@
use crate::tools;

use super::*;

/// Build the Rust WASM app and all of its assets.
#[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 tools::tool_list() {
if tools::Tool::from_str(item).unwrap().is_installed() {
println!("- {item} [installed]");
} else {
println!("- {item}");
}
}
}
Plugin::AppPath {} => {
if let Some(v) = tools::tools_path().to_str() {
println!("{}", v);
} else {
log::error!("Tools path get failed.");
}
}
Plugin::Add { name } => {
let tool_list = tools::tool_list();

if !tool_list.contains(&name.as_str()) {
log::error!("Tool {name} not found.");
return Ok(());
}
let target_tool = tools::Tool::from_str(&name).unwrap();

if target_tool.is_installed() {
log::warn!("Tool {name} is installed.");
return Ok(());
}

log::info!("Start to download tool package...");
if let Err(e) = target_tool.download_package().await {
log::error!("Tool download failed: {e}");
return Ok(());
}

log::info!("Start to install tool package...");
if let Err(e) = target_tool.install_package().await {
log::error!("Tool install failed: {e}");
return Ok(());
}

log::info!("Tool {name} install successfully!");
}
}
Ok(())
}
}
6 changes: 3 additions & 3 deletions src/main.rs
Expand Up @@ -48,9 +48,9 @@ async fn main() -> Result<()> {
}
}

Commands::Tool(opts) => {
if let Err(e) = opts.tool().await {
log::error!("tool error: {}", e);
Commands::Plugin(opts) => {
if let Err(e) = opts.plugin().await {
log::error!("plugin error: {}", e);
}
}
}
Expand Down
7 changes: 7 additions & 0 deletions src/plugin/interface/mod.rs
Expand Up @@ -17,6 +17,7 @@ pub struct PluginInfo<'lua> {

pub on_init: Option<Function<'lua>>,
pub build: PluginBuildInfo<'lua>,
pub serve: PluginServeInfo<'lua>,
}

impl<'lua> FromLua<'lua> for PluginInfo<'lua> {
Expand All @@ -29,6 +30,7 @@ impl<'lua> FromLua<'lua> for PluginInfo<'lua> {

on_init: None,
build: Default::default(),
serve: Default::default(),
};
if let mlua::Value::Table(tab) = lua_value {
if let Ok(v) = tab.get::<_, String>("name") {
Expand All @@ -51,6 +53,10 @@ impl<'lua> FromLua<'lua> for PluginInfo<'lua> {
if let Ok(v) = tab.get::<_, PluginBuildInfo>("build") {
res.build = v;
}

if let Ok(v) = tab.get::<_, PluginServeInfo>("serve") {
res.serve = v;
}
}

Ok(res)
Expand All @@ -70,6 +76,7 @@ impl<'lua> ToLua<'lua> for PluginInfo<'lua> {
res.set("on_init", e)?;
}
res.set("build", self.build)?;
res.set("serve", self.serve)?;

Ok(mlua::Value::Table(res))
}
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/mod.rs
Expand Up @@ -3,7 +3,7 @@ use std::{
path::PathBuf,
};

use mlua::{AsChunk, Lua, Table, ToLuaMulti};
use mlua::{AsChunk, Lua, Table};
use serde::{Deserialize, Serialize};
use serde_json::json;

Expand Down

0 comments on commit 6cce4b9

Please sign in to comment.