microsoft / microsoft/TypeScript
Add quick fix to export unexported members to fix unresolved symbol errors
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.4k
- Merge medio
- 1 d 19 h
- PR fusionados (30 d)
- 117
Descripción
Search Terms
import
export
unexported
symbols
auto import
completion
global
globals
intellisense
Suggestion
tsserver can auto-complete exported symbols from other modules, and add an import statement that imports the symbol you selected.
It should also suggest global symbols from other modules that are not exported, and add the export keyword if the suggestion is selected.
Use Cases
When I write a module I can't predict every use case of it, and I only export the global symbols that I think other modules would need to use. But when I'm working on a different module and I realize I want to use a symbol which is not exported by the other module (or maybe I don't even remember if it is or isn't exported), I would like my editor to export and import it for me instead of me having to find that symbol manually (because even go-to definition won't work) and export it, and then go back and auto-complete to auto-import.
This is also very very very useful when converting a web project to use imports. You can just go over all of the "undeclared symbol" errors and auto-complete to export and import the correct symbol.
Examples
module.ts:
function foo(name = 'World') {
console.log('Hello ' + name);
}
export function bar() {
foo();
}
app.ts:
import { bar } from './module.ts';
bar();
I now want to customize the "hello" message, so I start typing foo and then wait for completion suggestions which include the function foo from module.ts.
After selecting that, the symbol foo is automatically exported and imported for me, and I can use it immediately:
module.ts:
export function foo(name = 'World') {
console.log('Hello ' + name);
}
export function bar() {
foo();
}
app.ts:
import { bar, foo } from './module.ts';
bar();
foo('TypeScript');
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
El issue describe el comportamiento existente de tsserver para la autoimportación y la finalización; comienza rastreando cómo identifica los símbolos exportados. Se considera terminado cuando la finalización puede ofrecer un símbolo global no exportado y la selección actualiza tanto el módulo que lo define con una exportación como el módulo que lo importa con una importación, manteniendo el comportamiento existente.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- javascript, typescript
- Área
- developer-experience, tooling
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100