rust/crates/ra_assists/src/assists/split_import.rs

71 lines
1.9 KiB
Rust
Raw Normal View History

use std::iter::successors;
2019-02-03 12:26:35 -06:00
use hir::db::HirDatabase;
use ra_syntax::{ast, AstNode, TextUnit, T};
2019-01-05 04:45:18 -06:00
use crate::{Assist, AssistCtx, AssistId};
2019-01-05 04:45:18 -06:00
2019-10-27 04:22:53 -05:00
// Assist: split_import
//
// Wraps the tail of import into braces.
//
// ```
// use std::<|>collections::HashMap;
// ```
// ->
// ```
// use std::{collections::HashMap};
// ```
pub(crate) fn split_import(ctx: AssistCtx<impl HirDatabase>) -> Option<Assist> {
let colon_colon = ctx.find_token_at_offset(T![::])?;
2019-03-30 05:25:53 -05:00
let path = ast::Path::cast(colon_colon.parent())?;
let top_path = successors(Some(path), |it| it.parent_path()).last()?;
2019-01-05 04:45:18 -06:00
let use_tree = top_path.syntax().ancestors().find_map(ast::UseTree::cast);
if use_tree.is_none() {
return None;
}
2019-07-20 04:58:27 -05:00
let l_curly = colon_colon.text_range().end();
let r_curly = match top_path.syntax().parent().and_then(ast::UseTree::cast) {
2019-07-20 04:58:27 -05:00
Some(tree) => tree.syntax().text_range().end(),
None => top_path.syntax().text_range().end(),
};
2019-01-05 04:45:18 -06:00
2020-01-14 11:32:26 -06:00
ctx.add_assist(AssistId("split_import"), "Split import", |edit| {
2019-07-20 04:58:27 -05:00
edit.target(colon_colon.text_range());
2019-01-05 04:45:18 -06:00
edit.insert(l_curly, "{");
edit.insert(r_curly, "}");
edit.set_cursor(l_curly + TextUnit::of_str("{"));
})
2019-01-05 04:45:18 -06:00
}
#[cfg(test)]
mod tests {
use super::*;
2019-02-08 17:34:05 -06:00
use crate::helpers::{check_assist, check_assist_target};
2019-01-05 04:45:18 -06:00
#[test]
fn test_split_import() {
check_assist(
split_import,
"use crate::<|>db::RootDatabase;",
"use crate::{<|>db::RootDatabase};",
)
}
#[test]
fn split_import_works_with_trees() {
check_assist(
split_import,
2019-10-05 09:48:31 -05:00
"use crate:<|>:db::{RootDatabase, FileSymbol}",
"use crate::{<|>db::{RootDatabase, FileSymbol}}",
)
}
2019-02-08 17:34:05 -06:00
#[test]
fn split_import_target() {
2019-10-05 09:48:31 -05:00
check_assist_target(split_import, "use crate::<|>db::{RootDatabase, FileSymbol}", "::");
2019-02-08 17:34:05 -06:00
}
2019-01-05 04:45:18 -06:00
}