-
Notifications
You must be signed in to change notification settings - Fork 29.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hook up prototype paste with imports for JS/TS
For microsoft/TypeScript#57262 but with proposed changes to ts protocol
- Loading branch information
Showing
6 changed files
with
140 additions
and
1 deletion.
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
111 changes: 111 additions & 0 deletions
111
extensions/typescript-language-features/src/languageFeatures/copyPaste.ts
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,111 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
import * as vscode from 'vscode'; | ||
import { DocumentSelector } from '../configuration/documentSelector'; | ||
import * as typeConverters from '../typeConverters'; | ||
import { ClientCapability, ITypeScriptServiceClient } from '../typescriptService'; | ||
import { conditionalRegistration, requireSomeCapability } from './util/dependentRegistration'; | ||
|
||
class CopyMetadata { | ||
constructor( | ||
readonly resource: vscode.Uri, | ||
readonly ranges: readonly vscode.Range[], | ||
) { } | ||
|
||
toJSON() { | ||
return JSON.stringify({ | ||
resource: this.resource.toJSON(), | ||
ranges: this.ranges, | ||
}); | ||
} | ||
|
||
static fromJSON(str: string): CopyMetadata | undefined { | ||
try { | ||
const parsed = JSON.parse(str); | ||
return new CopyMetadata( | ||
vscode.Uri.from(parsed.resource), | ||
parsed.ranges.map((r: any) => new vscode.Range(r[0].line, r[0].character, r[1].line, r[1].character))); | ||
} catch { | ||
// ignore | ||
} | ||
return undefined; | ||
} | ||
} | ||
|
||
class DocumentPasteProvider implements vscode.DocumentPasteEditProvider { | ||
|
||
static readonly metadataMimeType = 'application/vnd.code.jsts.metadata'; | ||
|
||
constructor( | ||
private readonly _client: ITypeScriptServiceClient, | ||
) { } | ||
|
||
prepareDocumentPaste(document: vscode.TextDocument, ranges: readonly vscode.Range[], dataTransfer: vscode.DataTransfer, _token: vscode.CancellationToken) { | ||
dataTransfer.set(DocumentPasteProvider.metadataMimeType, | ||
new vscode.DataTransferItem(new CopyMetadata(document.uri, ranges).toJSON())); | ||
} | ||
|
||
async provideDocumentPasteEdits(document: vscode.TextDocument, ranges: readonly vscode.Range[], dataTransfer: vscode.DataTransfer, token: vscode.CancellationToken): Promise<vscode.DocumentPasteEdit | undefined> { | ||
const file = this._client.toOpenTsFilePath(document); | ||
if (!file) { | ||
return; | ||
} | ||
|
||
const text = await dataTransfer.get('text/plain')?.asString(); | ||
if (!text || token.isCancellationRequested) { | ||
return; | ||
} | ||
|
||
// Get optional metadata | ||
const metadata = await this.extractMetadata(dataTransfer, token); | ||
if (token.isCancellationRequested) { | ||
return; | ||
} | ||
|
||
const copyRange = metadata?.ranges.at(0); | ||
const copyFile = metadata ? this._client.toTsFilePath(metadata.resource) : undefined; | ||
|
||
const response = await this._client.execute('getPostPasteImportFixes', { | ||
file, | ||
pastes: ranges.map(range => ({ text, range: typeConverters.Range.toTextSpan(range) })), | ||
copy: metadata && copyFile && copyRange | ||
? { file: copyFile, ...typeConverters.Range.toTextSpan(copyRange) } | ||
: undefined, | ||
}, token); | ||
if (response.type !== 'response' || !response.body || token.isCancellationRequested) { | ||
return; | ||
} | ||
|
||
const edit = new vscode.DocumentPasteEdit('', vscode.l10n.t("Paste with imports")); | ||
const additionalEdit = new vscode.WorkspaceEdit(); | ||
for (const edit of response.body.edits) { | ||
additionalEdit.set(this._client.toResource(edit.fileName), edit.textChanges.map(typeConverters.TextEdit.fromCodeEdit)); | ||
} | ||
edit.additionalEdit = additionalEdit; | ||
return edit; | ||
} | ||
|
||
private async extractMetadata(dataTransfer: vscode.DataTransfer, token: vscode.CancellationToken): Promise<CopyMetadata | undefined> { | ||
const metadata = await dataTransfer.get(DocumentPasteProvider.metadataMimeType)?.asString(); | ||
if (token.isCancellationRequested) { | ||
return undefined; | ||
} | ||
|
||
return metadata ? CopyMetadata.fromJSON(metadata) : undefined; | ||
} | ||
} | ||
|
||
export function register(selector: DocumentSelector, client: ITypeScriptServiceClient) { | ||
return conditionalRegistration([ | ||
requireSomeCapability(client, ClientCapability.Semantic), | ||
], () => { | ||
return vscode.languages.registerDocumentPasteEditProvider(selector.semantic, new DocumentPasteProvider(client), { | ||
id: 'jsts.pasteWithImports', | ||
copyMimeTypes: [DocumentPasteProvider.metadataMimeType], | ||
pasteMimeTypes: ['text/plain'], | ||
}); | ||
}); | ||
} |
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
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