1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::path::Path;

use dprint_core::formatting::*;
use dprint_core::configuration::{resolve_new_line_kind};

use super::parsing::parse;
use super::swc::parse_swc_ast;
use super::configuration::Configuration;

/// Formats a file.
///
/// Returns the file text `Ok(formatted_text)` or an error when it failed to parse.
///
/// # Example
///
/// ```
/// use std::path::PathBuf;
/// use dprint_plugin_typescript::*;
/// use dprint_plugin_typescript::configuration::*;
///
/// // build the configuration once
/// let config = ConfigurationBuilder::new()
///     .line_width(80)
///     .prefer_hanging(true)
///     .prefer_single_line(false)
///     .quote_style(QuoteStyle::PreferSingle)
///     .next_control_flow_position(NextControlFlowPosition::SameLine)
///     .build();
///
/// // now format many files (it is recommended to parallelize this)
/// let files_to_format = vec![(PathBuf::from("path/to/file.ts"), "const  t  =  5 ;")];
/// for (file_path, file_text) in files_to_format.iter() {
///     let result = format_text(file_path, file_text, &config);
///     // save result here...
/// }
/// ```
pub fn format_text(file_path: &Path, file_text: &str, config: &Configuration) -> Result<String, String> {
    if has_ignore_comment(file_text, config) {
        return Ok(String::from(file_text));
    }

    let parsed_source_file = parse_swc_ast(file_path, file_text)?;
    let print_items = parse(&parsed_source_file, config);

    // println!("{}", print_items.get_as_text());

    return Ok(print(print_items, PrintOptions {
        indent_width: config.indent_width,
        max_width: config.line_width,
        use_tabs: config.use_tabs,
        new_line_text: resolve_new_line_kind(file_text, config.new_line_kind),
    }));

    fn has_ignore_comment(file_text: &str, config: &Configuration) -> bool {
        let mut iterator = super::utils::CharIterator::new(file_text.chars());
        iterator.skip_whitespace();
        if iterator.move_next() != Some('/') { return false; }
        match iterator.move_next() {
            Some('/') | Some('*') => {},
            _ => return false,
        }
        iterator.skip_whitespace();
        iterator.check_text(&config.ignore_file_comment_text)
    }
}