mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-19 03:21:36 -04:00
* Merge from vscode 37cb23d3dd4f9433d56d4ba5ea3203580719a0bd * fix issues with merges * bump node version in azpipe * replace license headers * remove duplicate launch task * fix build errors * fix build errors * fix tslint issues * working through package and linux build issues * more work * wip * fix packaged builds * working through linux build errors * wip * wip * wip * fix mac and linux file limits * iterate linux pipeline * disable editor typing * revert series to parallel * remove optimize vscode from linux * fix linting issues * revert testing change * add work round for new node * readd packaging for extensions * fix issue with angular not resolving decorator dependencies
85 lines
3.0 KiB
TypeScript
85 lines
3.0 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { Range } from 'vs/editor/common/core/range';
|
|
import { Selection, SelectionDirection } from 'vs/editor/common/core/selection';
|
|
import * as editorCommon from 'vs/editor/common/editorCommon';
|
|
import { ITextModel } from 'vs/editor/common/model';
|
|
|
|
export class CopyLinesCommand implements editorCommon.ICommand {
|
|
|
|
private readonly _selection: Selection;
|
|
private readonly _isCopyingDown: boolean;
|
|
|
|
private _selectionDirection: SelectionDirection;
|
|
private _selectionId: string;
|
|
private _startLineNumberDelta: number;
|
|
private _endLineNumberDelta: number;
|
|
|
|
constructor(selection: Selection, isCopyingDown: boolean) {
|
|
this._selection = selection;
|
|
this._isCopyingDown = isCopyingDown;
|
|
}
|
|
|
|
public getEditOperations(model: ITextModel, builder: editorCommon.IEditOperationBuilder): void {
|
|
let s = this._selection;
|
|
|
|
this._startLineNumberDelta = 0;
|
|
this._endLineNumberDelta = 0;
|
|
if (s.startLineNumber < s.endLineNumber && s.endColumn === 1) {
|
|
this._endLineNumberDelta = 1;
|
|
s = s.setEndPosition(s.endLineNumber - 1, model.getLineMaxColumn(s.endLineNumber - 1));
|
|
}
|
|
|
|
let sourceLines: string[] = [];
|
|
for (let i = s.startLineNumber; i <= s.endLineNumber; i++) {
|
|
sourceLines.push(model.getLineContent(i));
|
|
}
|
|
const sourceText = sourceLines.join('\n');
|
|
|
|
if (sourceText === '') {
|
|
// Duplicating empty line
|
|
if (this._isCopyingDown) {
|
|
this._startLineNumberDelta++;
|
|
this._endLineNumberDelta++;
|
|
}
|
|
}
|
|
|
|
if (!this._isCopyingDown) {
|
|
builder.addEditOperation(new Range(s.endLineNumber, model.getLineMaxColumn(s.endLineNumber), s.endLineNumber, model.getLineMaxColumn(s.endLineNumber)), '\n' + sourceText);
|
|
} else {
|
|
builder.addEditOperation(new Range(s.startLineNumber, 1, s.startLineNumber, 1), sourceText + '\n');
|
|
}
|
|
|
|
this._selectionId = builder.trackSelection(s);
|
|
this._selectionDirection = this._selection.getDirection();
|
|
}
|
|
|
|
public computeCursorState(model: ITextModel, helper: editorCommon.ICursorStateComputerData): Selection {
|
|
let result = helper.getTrackedSelection(this._selectionId);
|
|
|
|
if (this._startLineNumberDelta !== 0 || this._endLineNumberDelta !== 0) {
|
|
let startLineNumber = result.startLineNumber;
|
|
let startColumn = result.startColumn;
|
|
let endLineNumber = result.endLineNumber;
|
|
let endColumn = result.endColumn;
|
|
|
|
if (this._startLineNumberDelta !== 0) {
|
|
startLineNumber = startLineNumber + this._startLineNumberDelta;
|
|
startColumn = 1;
|
|
}
|
|
|
|
if (this._endLineNumberDelta !== 0) {
|
|
endLineNumber = endLineNumber + this._endLineNumberDelta;
|
|
endColumn = 1;
|
|
}
|
|
|
|
result = Selection.createWithDirection(startLineNumber, startColumn, endLineNumber, endColumn, this._selectionDirection);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|