-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add refactor of extract type (#30562)
* add basically implement * add rename location and add testcase * collection type arguments * disallow infer type * add support for typedef convert * refactor info to make type safe * disallow type pred * avoid unnecessary branch * disallow type query * haha😂 Co-Authored-By: Kingwl <kingwenlu@gmail.com> * Update src/services/refactors/extractType.ts Co-Authored-By: Kingwl <kingwenlu@gmail.com> * Update src/services/refactors/extractType.ts Co-Authored-By: Kingwl <kingwenlu@gmail.com> * add more tests * add template tag support in jsdoc * add support of type parameters constraint * add more tests * merge branch * add more tests * refactor and update function name
- Loading branch information
Showing
68 changed files
with
1,065 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/* @internal */ | ||
namespace ts.refactor { | ||
const refactorName = "Extract type"; | ||
const extractToTypeAlias = "Extract to type alias"; | ||
const extractToTypeDef = "Extract to typedef"; | ||
registerRefactor(refactorName, { | ||
getAvailableActions(context): ReadonlyArray<ApplicableRefactorInfo> { | ||
const info = getRangeToExtract(context); | ||
if (!info) return emptyArray; | ||
|
||
return [{ | ||
name: refactorName, | ||
description: getLocaleSpecificMessage(Diagnostics.Extract_type), | ||
actions: [info.isJS ? { | ||
name: extractToTypeDef, description: getLocaleSpecificMessage(Diagnostics.Extract_to_typedef) | ||
} : { | ||
name: extractToTypeAlias, description: getLocaleSpecificMessage(Diagnostics.Extract_to_type_alias) | ||
}] | ||
}]; | ||
}, | ||
getEditsForAction(context, actionName): RefactorEditInfo { | ||
Debug.assert(actionName === extractToTypeAlias || actionName === extractToTypeDef); | ||
const { file } = context; | ||
const info = Debug.assertDefined(getRangeToExtract(context)); | ||
Debug.assert(actionName === extractToTypeAlias && !info.isJS || actionName === extractToTypeDef && info.isJS); | ||
|
||
const name = getUniqueName("NewType", file); | ||
const edits = textChanges.ChangeTracker.with(context, changes => info.isJS ? | ||
doTypedefChange(changes, file, name, info.firstStatement, info.selection, info.typeParameters) : | ||
doTypeAliasChange(changes, file, name, info.firstStatement, info.selection, info.typeParameters)); | ||
|
||
const renameFilename = file.fileName; | ||
const renameLocation = getRenameLocation(edits, renameFilename, name, /*preferLastLocation*/ false); | ||
return { edits, renameFilename, renameLocation }; | ||
} | ||
}); | ||
|
||
interface Info { isJS: boolean; selection: TypeNode; firstStatement: Statement; typeParameters: ReadonlyArray<TypeParameterDeclaration>; } | ||
|
||
function getRangeToExtract(context: RefactorContext): Info | undefined { | ||
const { file, startPosition } = context; | ||
const isJS = isSourceFileJS(file); | ||
const current = getTokenAtPosition(file, startPosition); | ||
const range = createTextRangeFromSpan(getRefactorContextSpan(context)); | ||
|
||
const selection = findAncestor(current, (node => node.parent && rangeContainsSkipTrivia(range, node, file) && !rangeContainsSkipTrivia(range, node.parent, file))); | ||
if (!selection || !isTypeNode(selection)) return undefined; | ||
|
||
const checker = context.program.getTypeChecker(); | ||
const firstStatement = Debug.assertDefined(isJS ? findAncestor(selection, isStatementAndHasJSDoc) : findAncestor(selection, isStatement)); | ||
const typeParameters = collectTypeParameters(checker, selection, firstStatement, file); | ||
if (!typeParameters) return undefined; | ||
|
||
return { isJS, selection, firstStatement, typeParameters }; | ||
} | ||
|
||
function isStatementAndHasJSDoc(n: Node): n is (Statement & HasJSDoc) { | ||
return isStatement(n) && hasJSDocNodes(n); | ||
} | ||
|
||
function rangeContainsSkipTrivia(r1: TextRange, node: Node, file: SourceFile): boolean { | ||
return rangeContainsStartEnd(r1, skipTrivia(file.text, node.pos), node.end); | ||
} | ||
|
||
function collectTypeParameters(checker: TypeChecker, selection: TypeNode, statement: Statement, file: SourceFile): TypeParameterDeclaration[] | undefined { | ||
const result: TypeParameterDeclaration[] = []; | ||
return visitor(selection) ? undefined : result; | ||
|
||
function visitor(node: Node): true | undefined { | ||
if (isTypeReferenceNode(node)) { | ||
if (isIdentifier(node.typeName)) { | ||
const symbol = checker.resolveName(node.typeName.text, node.typeName, SymbolFlags.TypeParameter, /* excludeGlobals */ true); | ||
if (symbol) { | ||
const declaration = cast(first(symbol.declarations), isTypeParameterDeclaration); | ||
if (rangeContainsSkipTrivia(statement, declaration, file) && !rangeContainsSkipTrivia(selection, declaration, file)) { | ||
result.push(declaration); | ||
} | ||
} | ||
} | ||
} | ||
else if (isInferTypeNode(node)) { | ||
const conditionalTypeNode = findAncestor(node, n => isConditionalTypeNode(n) && rangeContainsSkipTrivia(n.extendsType, node, file)); | ||
if (!conditionalTypeNode || !rangeContainsSkipTrivia(selection, conditionalTypeNode, file)) { | ||
return true; | ||
} | ||
} | ||
else if ((isTypePredicateNode(node) || isThisTypeNode(node))) { | ||
const functionLikeNode = findAncestor(node.parent, isFunctionLike); | ||
if (functionLikeNode && functionLikeNode.type && rangeContainsSkipTrivia(functionLikeNode.type, node, file) && !rangeContainsSkipTrivia(selection, functionLikeNode, file)) { | ||
return true; | ||
} | ||
} | ||
else if (isTypeQueryNode(node)) { | ||
if (isIdentifier(node.exprName)) { | ||
const symbol = checker.resolveName(node.exprName.text, node.exprName, SymbolFlags.Value, /* excludeGlobals */ false); | ||
if (symbol && rangeContainsSkipTrivia(statement, symbol.valueDeclaration, file) && !rangeContainsSkipTrivia(selection, symbol.valueDeclaration, file)) { | ||
return true; | ||
} | ||
} | ||
else { | ||
if (isThisIdentifier(node.exprName.left) && !rangeContainsSkipTrivia(selection, node.parent, file)) { | ||
return true; | ||
} | ||
} | ||
} | ||
return forEachChild(node, visitor); | ||
} | ||
} | ||
|
||
function doTypeAliasChange(changes: textChanges.ChangeTracker, file: SourceFile, name: string, firstStatement: Statement, selection: TypeNode, typeParameters: ReadonlyArray<TypeParameterDeclaration>) { | ||
const newTypeNode = createTypeAliasDeclaration( | ||
/* decorators */ undefined, | ||
/* modifiers */ undefined, | ||
name, | ||
typeParameters.map(id => updateTypeParameterDeclaration(id, id.name, id.constraint, /* defaultType */ undefined)), | ||
selection | ||
); | ||
changes.insertNodeBefore(file, firstStatement, newTypeNode, /* blankLineBetween */ true); | ||
changes.replaceNode(file, selection, createTypeReferenceNode(name, typeParameters.map(id => createTypeReferenceNode(id.name, /* typeArguments */ undefined)))); | ||
} | ||
|
||
function doTypedefChange(changes: textChanges.ChangeTracker, file: SourceFile, name: string, firstStatement: Statement, selection: TypeNode, typeParameters: ReadonlyArray<TypeParameterDeclaration>) { | ||
const node = <JSDocTypedefTag>createNode(SyntaxKind.JSDocTypedefTag); | ||
node.tagName = createIdentifier("typedef"); // TODO: jsdoc factory https://github.com/Microsoft/TypeScript/pull/29539 | ||
node.fullName = createIdentifier(name); | ||
node.name = node.fullName; | ||
node.typeExpression = createJSDocTypeExpression(selection); | ||
|
||
const templates: JSDocTemplateTag[] = []; | ||
forEach(typeParameters, typeParameter => { | ||
const constraint = getEffectiveConstraintOfTypeParameter(typeParameter); | ||
|
||
const template = <JSDocTemplateTag>createNode(SyntaxKind.JSDocTemplateTag); | ||
template.tagName = createIdentifier("template"); | ||
template.constraint = constraint && cast(constraint, isJSDocTypeExpression); | ||
|
||
const parameter = <TypeParameterDeclaration>createNode(SyntaxKind.TypeParameter); | ||
parameter.name = typeParameter.name; | ||
template.typeParameters = createNodeArray([parameter]); | ||
|
||
templates.push(template); | ||
}); | ||
|
||
changes.insertNodeBefore(file, firstStatement, createJSDocComment(/* comment */ undefined, createNodeArray(concatenate<JSDocTag>(templates, [node]))), /* blankLineBetween */ true); | ||
changes.replaceNode(file, selection, createTypeReferenceNode(name, typeParameters.map(id => createTypeReferenceNode(id.name, /* typeArguments */ undefined)))); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// var x: /*a*/{ a?: number, b?: string }/*b*/ = { }; | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = { | ||
a?: number; | ||
b?: string; | ||
}; | ||
var x: NewType = { };`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// function foo(a: number, b?: number, ...c: number[]): /*a*/boolean/*b*/ { | ||
//// return false as boolean | ||
//// } | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = boolean; | ||
function foo(a: number, b?: number, ...c: number[]): NewType { | ||
return false as boolean | ||
}`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// function foo(a: number, b?: number, ...c: number[]): boolean { | ||
//// return false as /*a*/boolean/*b*/ | ||
//// } | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `function foo(a: number, b?: number, ...c: number[]): boolean { | ||
type /*RENAME*/NewType = boolean; | ||
return false as NewType | ||
}`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// interface A<T = /*a*/string/*b*/> { | ||
//// a: boolean | ||
//// b: number | ||
//// c: T | ||
//// } | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = string; | ||
interface A<T = NewType> { | ||
a: boolean | ||
b: number | ||
c: T | ||
}`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// interface A<T = string> { | ||
//// a: /*a*/boolean/*b*/ | ||
//// b: number | ||
//// c: T | ||
//// } | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = boolean; | ||
interface A<T = string> { | ||
a: NewType | ||
b: number | ||
c: T | ||
}`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<T = /*a*/boolean/*b*/> = string | number | T | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = boolean; | ||
type A<T = NewType> = string | number | T`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<T = boolean> = /*a*/string/*b*/ | number | T | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = string; | ||
type A<T = boolean> = NewType | number | T`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// var x: { a?: /*a*/number/*b*/, b?: string } = { }; | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = number; | ||
var x: { a?: NewType, b?: string } = { };`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<T = boolean> = string | number | /*a*/T/*b*/ | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType<T> = T; | ||
type A<T = boolean> = string | number | NewType<T>`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<B, C, D = B> = /*a*/Partial<C | string>/*b*/ & D | C | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType<C> = Partial<C | string>; | ||
type A<B, C, D = B> = NewType<C> & D | C`, | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<B, C, D = B> = /*a*/Partial<C | string | D>/*b*/ & D | C | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType<C, D> = Partial<C | string | D>; | ||
type A<B, C, D = B> = NewType<C, D> & D | C`, | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// var x: /*a*/string/*b*/ = ''; | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType = string; | ||
var x: NewType = '';`, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/// <reference path='fourslash.ts' /> | ||
|
||
//// type A<T, U> = () => <T>(v: /*a*/T/*b*/) => (v: T) => <T>(v: T) => U | ||
|
||
goTo.select("a", "b"); | ||
edit.applyRefactor({ | ||
refactorName: "Extract type", | ||
actionName: "Extract to type alias", | ||
actionDescription: "Extract to type alias", | ||
newContent: `type /*RENAME*/NewType<T> = T; | ||
type A<T, U> = () => <T>(v: NewType<T>) => (v: T) => <T>(v: T) => U`, | ||
}); |
Oops, something went wrong.