-
Notifications
You must be signed in to change notification settings - Fork 2
Added the features selection to the CLI wizard #265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,6 +1,8 @@ | ||||||||||||||||||||||||||||||
| use anyhow::anyhow; | ||||||||||||||||||||||||||||||
| use anyhow::Result; | ||||||||||||||||||||||||||||||
| use dialoguer::FolderSelect; | ||||||||||||||||||||||||||||||
| use idf_im_lib::idf_features::get_requirements_json_url; | ||||||||||||||||||||||||||||||
| use idf_im_lib::idf_features::RequirementsMetadata; | ||||||||||||||||||||||||||||||
| use idf_im_lib::idf_tools::ToolsFile; | ||||||||||||||||||||||||||||||
| use idf_im_lib::offline_installer::copy_idf_from_offline_archive; | ||||||||||||||||||||||||||||||
| use idf_im_lib::offline_installer::install_prerequisites_offline; | ||||||||||||||||||||||||||||||
|
|
@@ -328,7 +330,7 @@ async fn download_and_extract_tools( | |||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| pub async fn run_wizzard_run(mut config: Settings) -> Result<(), String> { | ||||||||||||||||||||||||||||||
| debug!( | ||||||||||||||||||||||||||||||
| info!( | ||||||||||||||||||||||||||||||
| "{}", | ||||||||||||||||||||||||||||||
| t!( | ||||||||||||||||||||||||||||||
| "wizard.debug.config_entering", | ||||||||||||||||||||||||||||||
|
|
@@ -413,6 +415,37 @@ pub async fn run_wizzard_run(mut config: Settings) -> Result<(), String> { | |||||||||||||||||||||||||||||
| config.idf_path = Some(paths.idf_path.clone()); | ||||||||||||||||||||||||||||||
| idf_im_lib::add_path_to_path(paths.idf_path.to_str().unwrap()); | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| let req_url = get_requirements_json_url(config.repo_stub.clone().as_deref(), &idf_version.to_string(), config.idf_mirror.clone().as_deref()); | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| let requirements_files = match RequirementsMetadata::from_url(&req_url) { | ||||||||||||||||||||||||||||||
| Ok(files) => files, | ||||||||||||||||||||||||||||||
| Err(err) => { | ||||||||||||||||||||||||||||||
| warn!("{}: {}. {}", t!("wizard.requirements.read_failure"), err, t!("wizard.features.selection_unavailable")); | ||||||||||||||||||||||||||||||
| return Err(err.to_string()); | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
| }; | ||||||||||||||||||||||||||||||
|
Comment on lines
+420
to
+426
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Suggested change
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| let features = select_features( | ||||||||||||||||||||||||||||||
| &requirements_files, | ||||||||||||||||||||||||||||||
| config.non_interactive.unwrap_or_default(), | ||||||||||||||||||||||||||||||
| true, | ||||||||||||||||||||||||||||||
| )?; | ||||||||||||||||||||||||||||||
| debug!( | ||||||||||||||||||||||||||||||
| "{}: {}", | ||||||||||||||||||||||||||||||
| t!("wizard.features.selected"), | ||||||||||||||||||||||||||||||
| features | ||||||||||||||||||||||||||||||
| .iter() | ||||||||||||||||||||||||||||||
| .map(|f| f.name.clone()) | ||||||||||||||||||||||||||||||
| .collect::<Vec<String>>() | ||||||||||||||||||||||||||||||
| .join(", ") | ||||||||||||||||||||||||||||||
| ); | ||||||||||||||||||||||||||||||
| config.idf_features = Some( | ||||||||||||||||||||||||||||||
| features | ||||||||||||||||||||||||||||||
| .iter() | ||||||||||||||||||||||||||||||
| .map(|f| f.name.clone()) | ||||||||||||||||||||||||||||||
| .collect::<Vec<String>>(), | ||||||||||||||||||||||||||||||
| ); | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| if !using_existing_idf { | ||||||||||||||||||||||||||||||
| // download idf | ||||||||||||||||||||||||||||||
| let download_config = DownloadConfig { | ||||||||||||||||||||||||||||||
|
|
@@ -442,6 +475,10 @@ pub async fn run_wizzard_run(mut config: Settings) -> Result<(), String> { | |||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||
| // IDF features | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| // setup tool directories | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| let tool_download_directory = setup_directory( | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The interactive selection logic in this function is very similar to the logic in
select_features_interactive. To avoid code duplication and improve maintainability, consider extracting the common parts into a private helper function. This helper could handle building theMultiSelectprompt, interacting with the user, and returning the selected features.For example, you could create a function like this:
Both
select_features_interactiveandselect_features_advancedcould then call this helper with the appropriate list of features and prompt message.