microsoft / microsoft/TypeScript
Add quick fix to export unexported members to fix unresolved symbol errors
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.3k
- Merge medio
- 2g 4h
- PR unite (30g)
- 132
Descrizione
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.
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
La issue descrive il comportamento esistente di tsserver per l’auto-import e il completamento; inizia tracciando il modo in cui identifica i simboli esportati. Il lavoro è completato quando il completamento può offrire un simbolo globale non esportato e la selezione aggiorna sia il modulo che lo definisce con un export sia il modulo che lo importa con un import, mantenendo il comportamento esistente.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript, typescript
- Ambito
- developer-experience, tooling
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100