@@ -404,8 +404,9 @@ namespace ts.Completions {
404
404
allSourceFiles : ReadonlyArray < SourceFile > ,
405
405
host : LanguageServiceHost ,
406
406
rulesProvider : formatting . RulesProvider ,
407
+ getCanonicalFileName : GetCanonicalFileName ,
407
408
) : CompletionEntryDetails {
408
- const { name, source } = entryId ;
409
+ const { name } = entryId ;
409
410
// Compute all the completion symbols again.
410
411
const symbolCompletion = getSymbolCompletionFromEntryId ( typeChecker , log , compilerOptions , sourceFile , position , entryId , allSourceFiles ) ;
411
412
switch ( symbolCompletion . type ) {
@@ -424,10 +425,10 @@ namespace ts.Completions {
424
425
}
425
426
case "symbol" : {
426
427
const { symbol, location, symbolToOriginInfoMap } = symbolCompletion ;
427
- const codeActions = getCompletionEntryCodeActions ( symbolToOriginInfoMap , symbol , typeChecker , host , compilerOptions , sourceFile , rulesProvider ) ;
428
+ const { codeActions, sourceDisplay } = getCompletionEntryCodeActionsAndSourceDisplay ( symbolToOriginInfoMap , symbol , typeChecker , host , compilerOptions , sourceFile , rulesProvider , getCanonicalFileName ) ;
428
429
const kindModifiers = SymbolDisplay . getSymbolModifiers ( symbol ) ;
429
430
const { displayParts, documentation, symbolKind, tags } = SymbolDisplay . getSymbolDisplayPartsDocumentationAndSymbolKind ( typeChecker , symbol , sourceFile , location , location , SemanticMeaning . All ) ;
430
- return { name, kindModifiers, kind : symbolKind , displayParts, documentation, tags, codeActions, source : source === undefined ? undefined : [ textPart ( source ) ] } ;
431
+ return { name, kindModifiers, kind : symbolKind , displayParts, documentation, tags, codeActions, source : sourceDisplay } ;
431
432
}
432
433
case "none" : {
433
434
// Didn't find a symbol with this name. See if we can find a keyword instead.
@@ -448,33 +449,37 @@ namespace ts.Completions {
448
449
}
449
450
}
450
451
451
- function getCompletionEntryCodeActions (
452
+ function getCompletionEntryCodeActionsAndSourceDisplay (
452
453
symbolToOriginInfoMap : SymbolOriginInfoMap ,
453
454
symbol : Symbol ,
454
455
checker : TypeChecker ,
455
456
host : LanguageServiceHost ,
456
457
compilerOptions : CompilerOptions ,
457
458
sourceFile : SourceFile ,
458
459
rulesProvider : formatting . RulesProvider ,
459
- ) : CodeAction [ ] | undefined {
460
+ getCanonicalFileName : GetCanonicalFileName ,
461
+ ) : { codeActions : CodeAction [ ] | undefined , sourceDisplay : SymbolDisplayPart [ ] | undefined } {
460
462
const symbolOriginInfo = symbolToOriginInfoMap [ getSymbolId ( symbol ) ] ;
461
463
if ( ! symbolOriginInfo ) {
462
- return undefined ;
464
+ return { codeActions : undefined , sourceDisplay : undefined } ;
463
465
}
464
466
465
467
const { moduleSymbol, isDefaultExport } = symbolOriginInfo ;
466
- return codefix . getCodeActionForImport ( moduleSymbol , {
468
+
469
+ const sourceDisplay = [ textPart ( codefix . getModuleSpecifierForNewImport ( sourceFile , moduleSymbol , compilerOptions , getCanonicalFileName , host ) ) ] ;
470
+ const codeActions = codefix . getCodeActionForImport ( moduleSymbol , {
467
471
host,
468
472
checker,
469
473
newLineCharacter : host . getNewLine ( ) ,
470
474
compilerOptions,
471
475
sourceFile,
472
476
rulesProvider,
473
477
symbolName : getSymbolName ( symbol , symbolOriginInfo , compilerOptions . target ) ,
474
- getCanonicalFileName : createGetCanonicalFileName ( host . useCaseSensitiveFileNames ? host . useCaseSensitiveFileNames ( ) : false ) ,
478
+ getCanonicalFileName,
475
479
symbolToken : undefined ,
476
480
kind : isDefaultExport ? codefix . ImportKind . Default : codefix . ImportKind . Named ,
477
481
} ) ;
482
+ return { sourceDisplay, codeActions } ;
478
483
}
479
484
480
485
export function getCompletionEntrySymbol (
0 commit comments