mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 10:03:15 -05:00
158 lines
7.4 KiB
TypeScript
158 lines
7.4 KiB
TypeScript
'use strict';
|
|
import {CancellationToken, CodeLens, CodeLensProvider, commands, DocumentSelector, ExtensionContext, Location, Position, Range, SymbolInformation, SymbolKind, TextDocument, Uri, window} from 'vscode';
|
|
import {BuiltInCommands, Commands, DocumentSchemes, WorkspaceState} from './constants';
|
|
import GitProvider, {IGitBlame, IGitBlameLines, IGitCommit} from './gitProvider';
|
|
import * as moment from 'moment';
|
|
|
|
export class GitRecentChangeCodeLens extends CodeLens {
|
|
constructor(private git: GitProvider, public fileName: string, public symbolKind: SymbolKind, public blameRange: Range, range: Range) {
|
|
super(range);
|
|
}
|
|
|
|
getBlame(): Promise<IGitBlameLines> {
|
|
return this.git.getBlameForRange(this.fileName, this.blameRange);
|
|
}
|
|
}
|
|
|
|
export class GitBlameCodeLens extends CodeLens {
|
|
constructor(private git: GitProvider, public fileName: string, public symbolKind: SymbolKind, public blameRange: Range, range: Range) {
|
|
super(range);
|
|
}
|
|
|
|
getBlame(): Promise<IGitBlameLines> {
|
|
return this.git.getBlameForRange(this.fileName, this.blameRange);
|
|
}
|
|
}
|
|
|
|
// export class GitHistoryCodeLens extends CodeLens {
|
|
// constructor(public repoPath: string, public fileName: string, range: Range) {
|
|
// super(range);
|
|
// }
|
|
// }
|
|
|
|
export default class GitCodeLensProvider implements CodeLensProvider {
|
|
static selector: DocumentSelector = { scheme: DocumentSchemes.File };
|
|
|
|
// private hasGitHistoryExtension: boolean;
|
|
|
|
constructor(context: ExtensionContext, private git: GitProvider) {
|
|
// this.hasGitHistoryExtension = context.workspaceState.get(WorkspaceState.HasGitHistoryExtension, false);
|
|
}
|
|
|
|
provideCodeLenses(document: TextDocument, token: CancellationToken): CodeLens[] | Thenable<CodeLens[]> {
|
|
const fileName = document.fileName;
|
|
const promise = Promise.all([this.git.getBlameForFile(fileName) as Promise<any>, (commands.executeCommand(BuiltInCommands.ExecuteDocumentSymbolProvider, document.uri) as Promise<any>)]);
|
|
|
|
return promise.then(values => {
|
|
const blame = values[0] as IGitBlame;
|
|
if (!blame || !blame.lines.length) return [];
|
|
|
|
const symbols = values[1] as SymbolInformation[];
|
|
const lenses: CodeLens[] = [];
|
|
symbols.forEach(sym => this._provideCodeLens(fileName, document, sym, lenses));
|
|
|
|
// Check if we have a lens for the whole document -- if not add one
|
|
if (!lenses.find(l => l.range.start.line === 0 && l.range.end.line === 0)) {
|
|
const blameRange = document.validateRange(new Range(0, 1000000, 1000000, 1000000));
|
|
lenses.push(new GitRecentChangeCodeLens(this.git, fileName, SymbolKind.File, blameRange, new Range(0, 0, 0, blameRange.start.character)));
|
|
lenses.push(new GitBlameCodeLens(this.git, fileName, SymbolKind.File, blameRange, new Range(0, 1, 0, blameRange.start.character)));
|
|
// if (this.hasGitHistoryExtension) {
|
|
// lenses.push(new GitHistoryCodeLens(this.git.repoPath, fileName, new Range(0, 1, 0, blameRange.start.character)));
|
|
// }
|
|
}
|
|
|
|
return lenses;
|
|
});
|
|
}
|
|
|
|
foo: string; bar: number;
|
|
|
|
private _provideCodeLens(fileName: string, document: TextDocument, symbol: SymbolInformation, lenses: CodeLens[]): void {
|
|
let multiline = false;
|
|
switch (symbol.kind) {
|
|
case SymbolKind.Package:
|
|
case SymbolKind.Module:
|
|
case SymbolKind.Class:
|
|
case SymbolKind.Interface:
|
|
case SymbolKind.Constructor:
|
|
case SymbolKind.Method:
|
|
case SymbolKind.Function:
|
|
case SymbolKind.Enum:
|
|
// HACK for Omnisharp, since it doesn't return full ranges
|
|
multiline = fileName.endsWith('.cs') || (symbol.location.range.end.line - symbol.location.range.start.line) > 1;
|
|
break;
|
|
case SymbolKind.Property:
|
|
multiline = (symbol.location.range.end.line - symbol.location.range.start.line) > 1;
|
|
if (!multiline) return;
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
|
|
const line = document.lineAt(symbol.location.range.start);
|
|
// Make sure there is only 1 lense per line
|
|
if (lenses.length && lenses[lenses.length - 1].range.start.line === line.lineNumber) {
|
|
return;
|
|
}
|
|
|
|
let startChar = line.text.search(`\\b${symbol.name}\\b`); //line.firstNonWhitespaceCharacterIndex;
|
|
if (startChar === -1) {
|
|
startChar = line.firstNonWhitespaceCharacterIndex;
|
|
} else {
|
|
startChar += Math.floor(symbol.name.length / 2);
|
|
}
|
|
|
|
lenses.push(new GitRecentChangeCodeLens(this.git, fileName, symbol.kind, symbol.location.range, line.range.with(new Position(line.range.start.line, startChar))));
|
|
startChar++;
|
|
if (multiline) {
|
|
lenses.push(new GitBlameCodeLens(this.git, fileName, symbol.kind, symbol.location.range, line.range.with(new Position(line.range.start.line, startChar))));
|
|
startChar++;
|
|
}
|
|
// if (this.hasGitHistoryExtension) {
|
|
// lenses.push(new GitHistoryCodeLens(this.git.repoPath, fileName, line.range.with(new Position(line.range.start.line, startChar))));
|
|
// }
|
|
}
|
|
|
|
resolveCodeLens(lens: CodeLens, token: CancellationToken): Thenable<CodeLens> {
|
|
if (lens instanceof GitRecentChangeCodeLens) return this._resolveGitRecentChangeCodeLens(lens, token);
|
|
if (lens instanceof GitBlameCodeLens) return this._resolveGitBlameCodeLens(lens, token);
|
|
// if (lens instanceof GitHistoryCodeLens) return this._resolveGitHistoryCodeLens(lens, token);
|
|
}
|
|
|
|
_resolveGitRecentChangeCodeLens(lens: GitRecentChangeCodeLens, token: CancellationToken): Thenable<CodeLens> {
|
|
return lens.getBlame().then(blame => {
|
|
const recentCommit = blame.commits.values().next().value;
|
|
lens.command = {
|
|
title: `${recentCommit.author}, ${moment(recentCommit.date).fromNow()}`, // - ${SymbolKind[lens.symbolKind]}(${lens.blameRange.start.line + 1}-${lens.blameRange.end.line + 1})`,
|
|
command: Commands.ShowBlameHistory,
|
|
arguments: [Uri.file(lens.fileName), lens.blameRange, lens.range.start]
|
|
};
|
|
return lens;
|
|
});
|
|
}
|
|
|
|
_resolveGitBlameCodeLens(lens: GitBlameCodeLens, token: CancellationToken): Thenable<CodeLens> {
|
|
return lens.getBlame().then(blame => {
|
|
const editor = window.activeTextEditor;
|
|
const activeLine = editor.selection.active.line;
|
|
|
|
const count = blame.authors.size;
|
|
lens.command = {
|
|
title: `${count} ${count > 1 ? 'authors' : 'author'} (${blame.authors.values().next().value.name}${count > 1 ? ' and others' : ''})`,
|
|
command: Commands.ToggleBlame,
|
|
arguments: [Uri.file(lens.fileName), blame.allLines[activeLine].sha]
|
|
};
|
|
return lens;
|
|
});
|
|
}
|
|
|
|
// _resolveGitHistoryCodeLens(lens: GitHistoryCodeLens, token: CancellationToken): Thenable<CodeLens> {
|
|
// // TODO: Play with this more -- get this to open the correct diff to the right place
|
|
// lens.command = {
|
|
// title: `View History`,
|
|
// command: 'git.viewFileHistory', // viewLineHistory
|
|
// arguments: [Uri.file(lens.fileName)]
|
|
// };
|
|
// return Promise.resolve(lens);
|
|
// }
|
|
} |