-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dart): support dart format (#49)
- Loading branch information
Showing
9 changed files
with
144 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
use super::execute_command; | ||
|
||
#[inline] | ||
pub fn format_using_dart_format( | ||
snippet_path: &std::path::Path, | ||
) -> std::io::Result<(bool, Option<String>)> { | ||
let mut cmd = std::process::Command::new("dart"); | ||
|
||
cmd.arg("format").arg(snippet_path); | ||
|
||
execute_command(&mut cmd, snippet_path) | ||
} | ||
|
||
#[cfg(test)] | ||
mod test_dart_format { | ||
use crate::{formatters::setup_snippet, languages::Language}; | ||
|
||
#[test] | ||
fn it_should_format_dart() { | ||
let input = "class Adder { int add(int a, int b) { return a + b; } } "; | ||
|
||
let expected_output = "class Adder { | ||
int add(int a, int b) { | ||
return a + b; | ||
} | ||
} | ||
"; | ||
|
||
let snippet = setup_snippet(input, Language::Dart.to_file_ext()) | ||
.expect("it to create a snippet file"); | ||
|
||
let output = super::format_using_dart_format(snippet.path()) | ||
.expect("it to be successful") | ||
.1 | ||
.expect("it to be some"); | ||
|
||
assert_eq!(expected_output, output); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
use schemars::JsonSchema; | ||
|
||
use crate::{config::default_enabled, formatters::dart_format::format_using_dart_format}; | ||
|
||
use super::LanguageFormatter; | ||
|
||
#[derive(Debug, Default, serde::Serialize, serde::Deserialize, JsonSchema)] | ||
pub enum DartFormatter { | ||
#[default] | ||
#[serde(rename = "dart_format")] | ||
DartFormat, | ||
} | ||
|
||
#[derive(Debug, serde::Serialize, serde::Deserialize, JsonSchema)] | ||
pub struct Dart { | ||
#[serde(default = "default_enabled")] | ||
pub enabled: bool, | ||
#[serde(default)] | ||
pub formatter: DartFormatter, | ||
} | ||
|
||
impl Default for Dart { | ||
#[inline] | ||
fn default() -> Self { | ||
Self { | ||
enabled: true, | ||
formatter: DartFormatter::default(), | ||
} | ||
} | ||
} | ||
|
||
impl LanguageFormatter for Dart { | ||
#[inline] | ||
fn format(&self, snippet_path: &std::path::Path) -> std::io::Result<Option<String>> { | ||
if !self.enabled { | ||
return Ok(None); | ||
} | ||
|
||
match self.formatter { | ||
DartFormatter::DartFormat => format_using_dart_format(snippet_path).map(|res| res.1), | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
```dart | ||
class Adder {int add(int a, int b) {return a + b;}} | ||
``` |