mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
fix(lsp): use import map from workspace root (#24246)
Follow up to #24206 which broke deno_std intellisense.
This commit is contained in:
parent
5289c69271
commit
810474d8b7
2 changed files with 158 additions and 89 deletions
|
@ -1132,7 +1132,7 @@ impl ConfigData {
|
||||||
async fn load(
|
async fn load(
|
||||||
config_file_specifier: Option<&ModuleSpecifier>,
|
config_file_specifier: Option<&ModuleSpecifier>,
|
||||||
scope: &ModuleSpecifier,
|
scope: &ModuleSpecifier,
|
||||||
workspace_root: Option<(&ModuleSpecifier, &ConfigData)>,
|
workspace_root: Option<&ConfigData>,
|
||||||
settings: &Settings,
|
settings: &Settings,
|
||||||
file_fetcher: Option<&Arc<FileFetcher>>,
|
file_fetcher: Option<&Arc<FileFetcher>>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
|
@ -1194,7 +1194,7 @@ impl ConfigData {
|
||||||
async fn load_inner(
|
async fn load_inner(
|
||||||
config_file: Option<ConfigFile>,
|
config_file: Option<ConfigFile>,
|
||||||
scope: &ModuleSpecifier,
|
scope: &ModuleSpecifier,
|
||||||
workspace_root: Option<(&ModuleSpecifier, &ConfigData)>,
|
workspace_root: Option<&ConfigData>,
|
||||||
settings: &Settings,
|
settings: &Settings,
|
||||||
file_fetcher: Option<&Arc<FileFetcher>>,
|
file_fetcher: Option<&Arc<FileFetcher>>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
|
@ -1219,7 +1219,7 @@ impl ConfigData {
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut fmt_options = None;
|
let mut fmt_options = None;
|
||||||
if let Some((_, workspace_data)) = workspace_root {
|
if let Some(workspace_data) = workspace_root {
|
||||||
let has_own_fmt_options = config_file
|
let has_own_fmt_options = config_file
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|config_file| config_file.json.fmt.is_some());
|
.is_some_and(|config_file| config_file.json.fmt.is_some());
|
||||||
|
@ -1250,7 +1250,7 @@ impl ConfigData {
|
||||||
});
|
});
|
||||||
|
|
||||||
let mut lint_options_rules = None;
|
let mut lint_options_rules = None;
|
||||||
if let Some((_, workspace_data)) = workspace_root {
|
if let Some(workspace_data) = workspace_root {
|
||||||
let has_own_lint_options = config_file
|
let has_own_lint_options = config_file
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|config_file| config_file.json.lint.is_some());
|
.is_some_and(|config_file| config_file.json.lint.is_some());
|
||||||
|
@ -1406,11 +1406,17 @@ impl ConfigData {
|
||||||
let mut import_map_value = None;
|
let mut import_map_value = None;
|
||||||
let mut import_map_specifier = None;
|
let mut import_map_specifier = None;
|
||||||
let mut import_map_from_settings = false;
|
let mut import_map_from_settings = false;
|
||||||
|
if let Some(workspace_data) = workspace_root {
|
||||||
|
import_map.clone_from(&workspace_data.import_map);
|
||||||
|
import_map_from_settings = workspace_data.import_map_from_settings;
|
||||||
|
} else {
|
||||||
if let Some(config_file) = &config_file {
|
if let Some(config_file) = &config_file {
|
||||||
if config_file.is_an_import_map() {
|
if config_file.is_an_import_map() {
|
||||||
import_map_value = Some(config_file.to_import_map_value_from_imports());
|
import_map_value =
|
||||||
|
Some(config_file.to_import_map_value_from_imports());
|
||||||
import_map_specifier = Some(config_file.specifier.clone());
|
import_map_specifier = Some(config_file.specifier.clone());
|
||||||
} else if let Ok(Some(specifier)) = config_file.to_import_map_specifier()
|
} else if let Ok(Some(specifier)) =
|
||||||
|
config_file.to_import_map_specifier()
|
||||||
{
|
{
|
||||||
import_map_specifier = Some(specifier);
|
import_map_specifier = Some(specifier);
|
||||||
}
|
}
|
||||||
|
@ -1491,7 +1497,7 @@ impl ConfigData {
|
||||||
.join("\n")
|
.join("\n")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
import_map = Some(result.import_map);
|
import_map = Some(Arc::new(result.import_map));
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
lsp_warn!(
|
lsp_warn!(
|
||||||
|
@ -1502,6 +1508,7 @@ impl ConfigData {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let package_config = config_file.as_ref().and_then(|c| {
|
let package_config = config_file.as_ref().and_then(|c| {
|
||||||
Some(LspPackageConfig {
|
Some(LspPackageConfig {
|
||||||
|
@ -1533,7 +1540,7 @@ impl ConfigData {
|
||||||
})
|
})
|
||||||
.unwrap_or_default(),
|
.unwrap_or_default(),
|
||||||
)
|
)
|
||||||
} else if let Some((_, workspace_data)) = workspace_root {
|
} else if let Some(workspace_data) = workspace_root {
|
||||||
workspace_data.workspace_members.clone()
|
workspace_data.workspace_members.clone()
|
||||||
} else if config_file.as_ref().is_some_and(|c| c.json.name.is_some()) {
|
} else if config_file.as_ref().is_some_and(|c| c.json.name.is_some()) {
|
||||||
Arc::new(vec![scope.clone()])
|
Arc::new(vec![scope.clone()])
|
||||||
|
@ -1555,7 +1562,7 @@ impl ConfigData {
|
||||||
lockfile: lockfile.map(Mutex::new).map(Arc::new),
|
lockfile: lockfile.map(Mutex::new).map(Arc::new),
|
||||||
package_json: package_json.map(Arc::new),
|
package_json: package_json.map(Arc::new),
|
||||||
npmrc,
|
npmrc,
|
||||||
import_map: import_map.map(Arc::new),
|
import_map,
|
||||||
import_map_from_settings,
|
import_map_from_settings,
|
||||||
package_config: package_config.map(Arc::new),
|
package_config: package_config.map(Arc::new),
|
||||||
is_workspace_root,
|
is_workspace_root,
|
||||||
|
@ -1740,7 +1747,7 @@ impl ConfigTree {
|
||||||
let member_data = ConfigData::load(
|
let member_data = ConfigData::load(
|
||||||
Some(&config_file_specifier),
|
Some(&config_file_specifier),
|
||||||
member_scope,
|
member_scope,
|
||||||
Some((&scope, &data)),
|
Some(&data),
|
||||||
settings,
|
settings,
|
||||||
Some(file_fetcher),
|
Some(file_fetcher),
|
||||||
)
|
)
|
||||||
|
|
|
@ -12694,6 +12694,68 @@ fn lsp_deno_json_workspace_lint_config() {
|
||||||
client.shutdown();
|
client.shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn lsp_deno_json_workspace_import_map() {
|
||||||
|
let context = TestContextBuilder::new().use_temp_cwd().build();
|
||||||
|
let temp_dir = context.temp_dir();
|
||||||
|
temp_dir.create_dir_all("project1/project2");
|
||||||
|
temp_dir.write(
|
||||||
|
"project1/deno.json",
|
||||||
|
json!({
|
||||||
|
"workspaces": ["project2"],
|
||||||
|
"imports": {
|
||||||
|
"foo": "./foo1.ts",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.to_string(),
|
||||||
|
);
|
||||||
|
temp_dir.write("project1/foo1.ts", "");
|
||||||
|
temp_dir.write(
|
||||||
|
"project1/project2/deno.json",
|
||||||
|
// Should ignore and inherit import map from `project1/deno.json`.
|
||||||
|
json!({
|
||||||
|
"imports": {
|
||||||
|
"foo": "./foo2.ts",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.to_string(),
|
||||||
|
);
|
||||||
|
temp_dir.write("project1/project2/foo2.ts", "");
|
||||||
|
let mut client = context.new_lsp_command().build();
|
||||||
|
client.initialize_default();
|
||||||
|
client.did_open(json!({
|
||||||
|
"textDocument": {
|
||||||
|
"uri": temp_dir.uri().join("project1/project2/file.ts").unwrap(),
|
||||||
|
"languageId": "typescript",
|
||||||
|
"version": 1,
|
||||||
|
"text": "import \"foo\";\n",
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
let res = client.write_request(
|
||||||
|
"textDocument/hover",
|
||||||
|
json!({
|
||||||
|
"textDocument": {
|
||||||
|
"uri": temp_dir.uri().join("project1/project2/file.ts").unwrap(),
|
||||||
|
},
|
||||||
|
"position": { "line": 0, "character": 7 },
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
assert_eq!(
|
||||||
|
res,
|
||||||
|
json!({
|
||||||
|
"contents": {
|
||||||
|
"kind": "markdown",
|
||||||
|
"value": format!("**Resolved Dependency**\n\n**Code**: file​{}\n", temp_dir.uri().join("project1/foo1.ts").unwrap().as_str().trim_start_matches("file")),
|
||||||
|
},
|
||||||
|
"range": {
|
||||||
|
"start": { "line": 0, "character": 7 },
|
||||||
|
"end": { "line": 0, "character": 12 },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn lsp_deno_json_workspace_jsr_resolution() {
|
fn lsp_deno_json_workspace_jsr_resolution() {
|
||||||
let context = TestContextBuilder::new().use_temp_cwd().build();
|
let context = TestContextBuilder::new().use_temp_cwd().build();
|
||||||
|
|
Loading…
Add table
Reference in a new issue