Skip to main content

max / audiofiles

812 B · 18 lines History Blame Raw
1 //! Import/analysis workflow modal screens: configure import, progress, tagging, analysis config,
2 //! analysis progress, tag suggestion review, and error summary.
3
4 mod configure;
5 mod progress;
6 mod summary;
7 mod tagging;
8
9 /// Shared wizard step labels for the import flow. The step rail renders on every
10 /// screen of the flow (including the progress screens) so the "where am I / how
11 /// much is left" cue never vanishes mid-flow (P5).
12 pub(super) const WIZARD_STEPS: &[&str] = &["Configure", "Tag folders", "Analyze", "Review"];
13
14 pub use configure::{draw_configure_analysis, draw_configure_import};
15 pub use progress::{draw_analysis_progress, draw_cleanup_progress, draw_import_progress, draw_operation_cancelled};
16 pub use summary::draw_review_errors;
17 pub use tagging::{draw_review_suggestions, draw_tag_folders};
18